[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / newtonsoft.json / 10.0.1 / lib / net45 / Newtonsoft.Json.xml
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Newtonsoft.Json</name>
5     </assembly>
6     <members>
7         <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8             <summary>
9             Represents a BSON Oid (object id).
10             </summary>
11         </member>
12         <member name="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.DiscriminatedUnionConverter">
531             <summary>
532             Converts a F# discriminated union type to and from JSON.
533             </summary>
534         </member>
535         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.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.DiscriminatedUnionConverter.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.DiscriminatedUnionConverter.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.EntityKeyMemberConverter">
563             <summary>
564             Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
565             </summary>
566         </member>
567         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
568             <summary>
569             Writes the JSON representation of the object.
570             </summary>
571             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
572             <param name="value">The value.</param>
573             <param name="serializer">The calling serializer.</param>
574         </member>
575         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
576             <summary>
577             Reads the JSON representation of the object.
578             </summary>
579             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
580             <param name="objectType">Type of the object.</param>
581             <param name="existingValue">The existing value of object being read.</param>
582             <param name="serializer">The calling serializer.</param>
583             <returns>The object value.</returns>
584         </member>
585         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
586             <summary>
587             Determines whether this instance can convert the specified object type.
588             </summary>
589             <param name="objectType">Type of the object.</param>
590             <returns>
591                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
592             </returns>
593         </member>
594         <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
595             <summary>
596             Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON.
597             </summary>
598         </member>
599         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
600             <summary>
601             Writes the JSON representation of the object.
602             </summary>
603             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
604             <param name="value">The value.</param>
605             <param name="serializer">The calling serializer.</param>
606         </member>
607         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
608             <summary>
609             Reads the JSON representation of the object.
610             </summary>
611             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
612             <param name="objectType">Type of the object.</param>
613             <param name="existingValue">The existing value of object being read.</param>
614             <param name="serializer">The calling serializer.</param>
615             <returns>The object value.</returns>
616         </member>
617         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
618             <summary>
619             Determines whether this instance can convert the specified object type.
620             </summary>
621             <param name="objectType">Type of the object.</param>
622             <returns>
623                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
624             </returns>
625         </member>
626         <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
627             <summary>
628             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
629             </summary>
630             <value>
631                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
632             </value>
633         </member>
634         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
635             <summary>
636             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
637             </summary>
638         </member>
639         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
640             <summary>
641             Gets or sets the date time styles used when converting a date to and from JSON.
642             </summary>
643             <value>The date time styles used when converting a date to and from JSON.</value>
644         </member>
645         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
646             <summary>
647             Gets or sets the date time format used when converting a date to and from JSON.
648             </summary>
649             <value>The date time format used when converting a date to and from JSON.</value>
650         </member>
651         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
652             <summary>
653             Gets or sets the culture used when converting a date to and from JSON.
654             </summary>
655             <value>The culture used when converting a date to and from JSON.</value>
656         </member>
657         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
658             <summary>
659             Writes the JSON representation of the object.
660             </summary>
661             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
662             <param name="value">The value.</param>
663             <param name="serializer">The calling serializer.</param>
664         </member>
665         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
666             <summary>
667             Reads the JSON representation of the object.
668             </summary>
669             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
670             <param name="objectType">Type of the object.</param>
671             <param name="existingValue">The existing value of object being read.</param>
672             <param name="serializer">The calling serializer.</param>
673             <returns>The object value.</returns>
674         </member>
675         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
676             <summary>
677             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>).
678             </summary>
679         </member>
680         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
681             <summary>
682             Writes the JSON representation of the object.
683             </summary>
684             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
685             <param name="value">The value.</param>
686             <param name="serializer">The calling serializer.</param>
687         </member>
688         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
689             <summary>
690             Reads the JSON representation of the object.
691             </summary>
692             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
693             <param name="objectType">Type of the object.</param>
694             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
695             <param name="serializer">The calling serializer.</param>
696             <returns>The object value.</returns>
697         </member>
698         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
699             <summary>
700             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
701             </summary>
702         </member>
703         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
704             <summary>
705             Writes the JSON representation of the object.
706             </summary>
707             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
708             <param name="value">The value.</param>
709             <param name="serializer">The calling serializer.</param>
710         </member>
711         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
712             <summary>
713             Reads the JSON representation of the object.
714             </summary>
715             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
716             <param name="objectType">Type of the object.</param>
717             <param name="existingValue">The existing value of object being read.</param>
718             <param name="serializer">The calling serializer.</param>
719             <returns>The object value.</returns>
720         </member>
721         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
722             <summary>
723             Determines whether this instance can convert the specified object type.
724             </summary>
725             <param name="objectType">Type of the object.</param>
726             <returns>
727                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
728             </returns>
729         </member>
730         <member name="T:Newtonsoft.Json.Converters.RegexConverter">
731             <summary>
732             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
733             </summary>
734         </member>
735         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
736             <summary>
737             Writes the JSON representation of the object.
738             </summary>
739             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
740             <param name="value">The value.</param>
741             <param name="serializer">The calling serializer.</param>
742         </member>
743         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
744             <summary>
745             Reads the JSON representation of the object.
746             </summary>
747             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
748             <param name="objectType">Type of the object.</param>
749             <param name="existingValue">The existing value of object being read.</param>
750             <param name="serializer">The calling serializer.</param>
751             <returns>The object value.</returns>
752         </member>
753         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
754             <summary>
755             Determines whether this instance can convert the specified object type.
756             </summary>
757             <param name="objectType">Type of the object.</param>
758             <returns>
759                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
760             </returns>
761         </member>
762         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
763             <summary>
764             Converts an <see cref="T:System.Enum"/> to and from its name string value.
765             </summary>
766         </member>
767         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
768             <summary>
769             Gets or sets a value indicating whether the written enum text should be camel case.
770             </summary>
771             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
772         </member>
773         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
774             <summary>
775             Gets or sets a value indicating whether integer values are allowed when deserializing.
776             </summary>
777             <value><c>true</c> if integers are allowed when deserializing; otherwise, <c>false</c>.</value>
778         </member>
779         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
780             <summary>
781             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
782             </summary>
783         </member>
784         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Boolean)">
785             <summary>
786             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
787             </summary>
788             <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param>
789         </member>
790         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
791             <summary>
792             Writes the JSON representation of the object.
793             </summary>
794             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
795             <param name="value">The value.</param>
796             <param name="serializer">The calling serializer.</param>
797         </member>
798         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
799             <summary>
800             Reads the JSON representation of the object.
801             </summary>
802             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
803             <param name="objectType">Type of the object.</param>
804             <param name="existingValue">The existing value of object being read.</param>
805             <param name="serializer">The calling serializer.</param>
806             <returns>The object value.</returns>
807         </member>
808         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
809             <summary>
810             Determines whether this instance can convert the specified object type.
811             </summary>
812             <param name="objectType">Type of the object.</param>
813             <returns>
814             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
815             </returns>
816         </member>
817         <member name="T:Newtonsoft.Json.Converters.VersionConverter">
818             <summary>
819             Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
820             </summary>
821         </member>
822         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
823             <summary>
824             Writes the JSON representation of the object.
825             </summary>
826             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
827             <param name="value">The value.</param>
828             <param name="serializer">The calling serializer.</param>
829         </member>
830         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
831             <summary>
832             Reads the JSON representation of the object.
833             </summary>
834             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
835             <param name="objectType">Type of the object.</param>
836             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
837             <param name="serializer">The calling serializer.</param>
838             <returns>The object value.</returns>
839         </member>
840         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
841             <summary>
842             Determines whether this instance can convert the specified object type.
843             </summary>
844             <param name="objectType">Type of the object.</param>
845             <returns>
846                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
847             </returns>
848         </member>
849         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
850             <summary>
851             Converts XML to and from JSON.
852             </summary>
853         </member>
854         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
855             <summary>
856             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
857             </summary>
858             <value>The name of the deserialized root element.</value>
859         </member>
860         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
861             <summary>
862             Gets or sets a flag to indicate whether to write the Json.NET array attribute.
863             This attribute helps preserve arrays when converting the written XML back to JSON.
864             </summary>
865             <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
866         </member>
867         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
868             <summary>
869             Gets or sets a value indicating whether to write the root JSON object.
870             </summary>
871             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
872         </member>
873         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
874             <summary>
875             Writes the JSON representation of the object.
876             </summary>
877             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
878             <param name="serializer">The calling serializer.</param>
879             <param name="value">The value.</param>
880         </member>
881         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
882             <summary>
883             Reads the JSON representation of the object.
884             </summary>
885             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
886             <param name="objectType">Type of the object.</param>
887             <param name="existingValue">The existing value of object being read.</param>
888             <param name="serializer">The calling serializer.</param>
889             <returns>The object value.</returns>
890         </member>
891         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
892             <summary>
893             Checks if the <paramref name="attributeName"/> is a namespace attribute.
894             </summary>
895             <param name="attributeName">Attribute name to test.</param>
896             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
897             <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns>
898         </member>
899         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
900             <summary>
901             Determines whether this instance can convert the specified value type.
902             </summary>
903             <param name="valueType">Type of the value.</param>
904             <returns>
905                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
906             </returns>
907         </member>
908         <member name="T:Newtonsoft.Json.FloatParseHandling">
909             <summary>
910             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
911             </summary>
912         </member>
913         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
914             <summary>
915             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
916             </summary>
917         </member>
918         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
919             <summary>
920             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
921             </summary>
922         </member>
923         <member name="T:Newtonsoft.Json.DateFormatHandling">
924             <summary>
925             Specifies how dates are formatted when writing JSON text.
926             </summary>
927         </member>
928         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
929             <summary>
930             Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
931             </summary>
932         </member>
933         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
934             <summary>
935             Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
936             </summary>
937         </member>
938         <member name="T:Newtonsoft.Json.DateParseHandling">
939             <summary>
940             Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text.
941             </summary>
942         </member>
943         <member name="F:Newtonsoft.Json.DateParseHandling.None">
944             <summary>
945             Date formatted strings are not parsed to a date type and are read as strings.
946             </summary>
947         </member>
948         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
949             <summary>
950             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"/>.
951             </summary>
952         </member>
953         <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
954             <summary>
955             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"/>.
956             </summary>
957         </member>
958         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
959             <summary>
960             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
961             </summary>
962         </member>
963         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
964             <summary>
965             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.
966             </summary>
967         </member>
968         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
969             <summary>
970             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
971             </summary>
972         </member>
973         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
974             <summary>
975             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
976             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
977             </summary>
978         </member>
979         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
980             <summary>
981             Time zone information should be preserved when converting.
982             </summary>
983         </member>
984         <member name="T:Newtonsoft.Json.DefaultValueHandling">
985             <summary>
986             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
987             </summary>
988             <example>
989               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
990               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
991             </example>
992         </member>
993         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
994             <summary>
995             Include members where the member value is the same as the member's default value when serializing objects.
996             Included members are written to JSON. Has no effect when deserializing.
997             </summary>
998         </member>
999         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
1000             <summary>
1001             Ignore members where the member value is the same as the member's default value when serializing objects
1002             so that it is not written to JSON.
1003             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
1004             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
1005             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
1006             </summary>
1007         </member>
1008         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
1009             <summary>
1010             Members with a default value but no JSON will be set to their default value when deserializing.
1011             </summary>
1012         </member>
1013         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
1014             <summary>
1015             Ignore members where the member value is the same as the member's default value when serializing objects
1016             and set members to their default value when deserializing.
1017             </summary>
1018         </member>
1019         <member name="T:Newtonsoft.Json.FloatFormatHandling">
1020             <summary>
1021             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1022             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1023             </summary>
1024         </member>
1025         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1026             <summary>
1027             Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
1028             </summary>
1029         </member>
1030         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1031             <summary>
1032             Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>.
1033             Note that this will produce non-valid JSON.
1034             </summary>
1035         </member>
1036         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1037             <summary>
1038             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.
1039             </summary>
1040         </member>
1041         <member name="T:Newtonsoft.Json.Formatting">
1042             <summary>
1043             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1044             </summary>
1045         </member>
1046         <member name="F:Newtonsoft.Json.Formatting.None">
1047             <summary>
1048             No special formatting is applied. This is the default.
1049             </summary>
1050         </member>
1051         <member name="F:Newtonsoft.Json.Formatting.Indented">
1052             <summary>
1053             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.
1054             </summary>
1055         </member>
1056         <member name="T:Newtonsoft.Json.IArrayPool`1">
1057             <summary>
1058             Provides an interface for using pooled arrays.
1059             </summary>
1060             <typeparam name="T">The array type content.</typeparam>
1061         </member>
1062         <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
1063             <summary>
1064             Rent an array from the pool. This array must be returned when it is no longer needed.
1065             </summary>
1066             <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param>
1067             <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns>
1068         </member>
1069         <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
1070             <summary>
1071             Return an array to the pool.
1072             </summary>
1073             <param name="array">The array that is being returned.</param>
1074         </member>
1075         <member name="T:Newtonsoft.Json.IJsonLineInfo">
1076             <summary>
1077             Provides an interface to enable a class to return line and position information.
1078             </summary>
1079         </member>
1080         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1081             <summary>
1082             Gets a value indicating whether the class can return line information.
1083             </summary>
1084             <returns>
1085                 <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>.
1086             </returns>
1087         </member>
1088         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1089             <summary>
1090             Gets the current line number.
1091             </summary>
1092             <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>
1093         </member>
1094         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1095             <summary>
1096             Gets the current line position.
1097             </summary>
1098             <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>
1099         </member>
1100         <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1101             <summary>
1102             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1103             </summary>
1104         </member>
1105         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1106             <summary>
1107             Gets or sets a value indicating whether null items are allowed in the collection.
1108             </summary>
1109             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1110         </member>
1111         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1112             <summary>
1113             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1114             </summary>
1115         </member>
1116         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1117             <summary>
1118             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items.
1119             </summary>
1120             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1121         </member>
1122         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1123             <summary>
1124             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1125             </summary>
1126             <param name="id">The container Id.</param>
1127         </member>
1128         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1129             <summary>
1130             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1131             </summary>
1132         </member>
1133         <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1134             <summary>
1135             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1136             </summary>
1137         </member>
1138         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1139             <summary>
1140             Gets or sets the id.
1141             </summary>
1142             <value>The id.</value>
1143         </member>
1144         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1145             <summary>
1146             Gets or sets the title.
1147             </summary>
1148             <value>The title.</value>
1149         </member>
1150         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1151             <summary>
1152             Gets or sets the description.
1153             </summary>
1154             <value>The description.</value>
1155         </member>
1156         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1157             <summary>
1158             Gets or sets the collection's items converter.
1159             </summary>
1160             <value>The collection's items converter.</value>
1161         </member>
1162         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1163             <summary>
1164             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"/>.
1165             If <c>null</c>, the default constructor is used.
1166             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1167             order, and type of these parameters.
1168             </summary>
1169             <example>
1170             <code>
1171             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1172             </code>
1173             </example>
1174         </member>
1175         <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
1176             <summary>
1177             Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1178             </summary>
1179             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1180         </member>
1181         <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
1182             <summary>
1183             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"/>.
1184             If <c>null</c>, the default constructor is used.
1185             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,
1186             order, and type of these parameters.
1187             </summary>
1188             <example>
1189             <code>
1190             [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1191             </code>
1192             </example>
1193         </member>
1194         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1195             <summary>
1196             Gets or sets a value that indicates whether to preserve object references.
1197             </summary>
1198             <value>
1199                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1200             </value>
1201         </member>
1202         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1203             <summary>
1204             Gets or sets a value that indicates whether to preserve collection's items references.
1205             </summary>
1206             <value>
1207                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1208             </value>
1209         </member>
1210         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1211             <summary>
1212             Gets or sets the reference loop handling used when serializing the collection's items.
1213             </summary>
1214             <value>The reference loop handling.</value>
1215         </member>
1216         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1217             <summary>
1218             Gets or sets the type name handling used when serializing the collection's items.
1219             </summary>
1220             <value>The type name handling.</value>
1221         </member>
1222         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1223             <summary>
1224             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1225             </summary>
1226         </member>
1227         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1228             <summary>
1229             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1230             </summary>
1231             <param name="id">The container Id.</param>
1232         </member>
1233         <member name="T:Newtonsoft.Json.JsonConvert">
1234             <summary>
1235             Provides methods for converting between .NET types and JSON types.
1236             </summary>
1237             <example>
1238               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
1239             </example>
1240         </member>
1241         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
1242             <summary>
1243             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1244             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
1245             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"/>.
1246             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
1247             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
1248             </summary>
1249         </member>
1250         <member name="F:Newtonsoft.Json.JsonConvert.True">
1251             <summary>
1252             Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
1253             </summary>
1254         </member>
1255         <member name="F:Newtonsoft.Json.JsonConvert.False">
1256             <summary>
1257             Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
1258             </summary>
1259         </member>
1260         <member name="F:Newtonsoft.Json.JsonConvert.Null">
1261             <summary>
1262             Represents JavaScript's <c>null</c> as a string. This field is read-only.
1263             </summary>
1264         </member>
1265         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
1266             <summary>
1267             Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
1268             </summary>
1269         </member>
1270         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
1271             <summary>
1272             Represents JavaScript's positive infinity as a string. This field is read-only.
1273             </summary>
1274         </member>
1275         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
1276             <summary>
1277             Represents JavaScript's negative infinity as a string. This field is read-only.
1278             </summary>
1279         </member>
1280         <member name="F:Newtonsoft.Json.JsonConvert.NaN">
1281             <summary>
1282             Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
1283             </summary>
1284         </member>
1285         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
1286             <summary>
1287             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
1288             </summary>
1289             <param name="value">The value to convert.</param>
1290             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1291         </member>
1292         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
1293             <summary>
1294             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1295             </summary>
1296             <param name="value">The value to convert.</param>
1297             <param name="format">The format the date will be converted to.</param>
1298             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
1299             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1300         </member>
1301         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
1302             <summary>
1303             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
1304             </summary>
1305             <param name="value">The value to convert.</param>
1306             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1307         </member>
1308         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
1309             <summary>
1310             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1311             </summary>
1312             <param name="value">The value to convert.</param>
1313             <param name="format">The format the date will be converted to.</param>
1314             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1315         </member>
1316         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
1317             <summary>
1318             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
1319             </summary>
1320             <param name="value">The value to convert.</param>
1321             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
1322         </member>
1323         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
1324             <summary>
1325             Converts the <see cref="T:System.Char"/> to its JSON string representation.
1326             </summary>
1327             <param name="value">The value to convert.</param>
1328             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
1329         </member>
1330         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
1331             <summary>
1332             Converts the <see cref="T:System.Enum"/> to its JSON string representation.
1333             </summary>
1334             <param name="value">The value to convert.</param>
1335             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
1336         </member>
1337         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
1338             <summary>
1339             Converts the <see cref="T:System.Int32"/> to its JSON string representation.
1340             </summary>
1341             <param name="value">The value to convert.</param>
1342             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
1343         </member>
1344         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
1345             <summary>
1346             Converts the <see cref="T:System.Int16"/> to its JSON string representation.
1347             </summary>
1348             <param name="value">The value to convert.</param>
1349             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
1350         </member>
1351         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
1352             <summary>
1353             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
1354             </summary>
1355             <param name="value">The value to convert.</param>
1356             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
1357         </member>
1358         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
1359             <summary>
1360             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
1361             </summary>
1362             <param name="value">The value to convert.</param>
1363             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
1364         </member>
1365         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
1366             <summary>
1367             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
1368             </summary>
1369             <param name="value">The value to convert.</param>
1370             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
1371         </member>
1372         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
1373             <summary>
1374             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
1375             </summary>
1376             <param name="value">The value to convert.</param>
1377             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
1378         </member>
1379         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
1380             <summary>
1381             Converts the <see cref="T:System.Single"/> to its JSON string representation.
1382             </summary>
1383             <param name="value">The value to convert.</param>
1384             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
1385         </member>
1386         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
1387             <summary>
1388             Converts the <see cref="T:System.Double"/> to its JSON string representation.
1389             </summary>
1390             <param name="value">The value to convert.</param>
1391             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
1392         </member>
1393         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
1394             <summary>
1395             Converts the <see cref="T:System.Byte"/> to its JSON string representation.
1396             </summary>
1397             <param name="value">The value to convert.</param>
1398             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
1399         </member>
1400         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
1401             <summary>
1402             Converts the <see cref="T:System.SByte"/> to its JSON string representation.
1403             </summary>
1404             <param name="value">The value to convert.</param>
1405             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1406         </member>
1407         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
1408             <summary>
1409             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
1410             </summary>
1411             <param name="value">The value to convert.</param>
1412             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1413         </member>
1414         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
1415             <summary>
1416             Converts the <see cref="T:System.Guid"/> to its JSON string representation.
1417             </summary>
1418             <param name="value">The value to convert.</param>
1419             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
1420         </member>
1421         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
1422             <summary>
1423             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
1424             </summary>
1425             <param name="value">The value to convert.</param>
1426             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
1427         </member>
1428         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
1429             <summary>
1430             Converts the <see cref="T:System.Uri"/> to its JSON string representation.
1431             </summary>
1432             <param name="value">The value to convert.</param>
1433             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
1434         </member>
1435         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
1436             <summary>
1437             Converts the <see cref="T:System.String"/> to its JSON string representation.
1438             </summary>
1439             <param name="value">The value to convert.</param>
1440             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1441         </member>
1442         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
1443             <summary>
1444             Converts the <see cref="T:System.String"/> to its JSON string representation.
1445             </summary>
1446             <param name="value">The value to convert.</param>
1447             <param name="delimiter">The string delimiter character.</param>
1448             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1449         </member>
1450         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
1451             <summary>
1452             Converts the <see cref="T:System.String"/> to its JSON string representation.
1453             </summary>
1454             <param name="value">The value to convert.</param>
1455             <param name="delimiter">The string delimiter character.</param>
1456             <param name="stringEscapeHandling">The string escape handling.</param>
1457             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1458         </member>
1459         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
1460             <summary>
1461             Converts the <see cref="T:System.Object"/> to its JSON string representation.
1462             </summary>
1463             <param name="value">The value to convert.</param>
1464             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
1465         </member>
1466         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
1467             <summary>
1468             Serializes the specified object to a JSON string.
1469             </summary>
1470             <param name="value">The object to serialize.</param>
1471             <returns>A JSON string representation of the object.</returns>
1472         </member>
1473         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
1474             <summary>
1475             Serializes the specified object to a JSON string using formatting.
1476             </summary>
1477             <param name="value">The object to serialize.</param>
1478             <param name="formatting">Indicates how the output should be formatted.</param>
1479             <returns>
1480             A JSON string representation of the object.
1481             </returns>
1482         </member>
1483         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
1484             <summary>
1485             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1486             </summary>
1487             <param name="value">The object to serialize.</param>
1488             <param name="converters">A collection of converters used while serializing.</param>
1489             <returns>A JSON string representation of the object.</returns>
1490         </member>
1491         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
1492             <summary>
1493             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1494             </summary>
1495             <param name="value">The object to serialize.</param>
1496             <param name="formatting">Indicates how the output should be formatted.</param>
1497             <param name="converters">A collection of converters used while serializing.</param>
1498             <returns>A JSON string representation of the object.</returns>
1499         </member>
1500         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1501             <summary>
1502             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1503             </summary>
1504             <param name="value">The object to serialize.</param>
1505             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1506             If this is <c>null</c>, default serialization settings will be used.</param>
1507             <returns>
1508             A JSON string representation of the object.
1509             </returns>
1510         </member>
1511         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1512             <summary>
1513             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1514             </summary>
1515             <param name="value">The object to serialize.</param>
1516             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1517             If this is <c>null</c>, default serialization settings will be used.</param>
1518             <param name="type">
1519             The type of the value being serialized.
1520             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.
1521             Specifying the type is optional.
1522             </param>
1523             <returns>
1524             A JSON string representation of the object.
1525             </returns>
1526         </member>
1527         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1528             <summary>
1529             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1530             </summary>
1531             <param name="value">The object to serialize.</param>
1532             <param name="formatting">Indicates how the output should be formatted.</param>
1533             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1534             If this is <c>null</c>, default serialization settings will be used.</param>
1535             <returns>
1536             A JSON string representation of the object.
1537             </returns>
1538         </member>
1539         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1540             <summary>
1541             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1542             </summary>
1543             <param name="value">The object to serialize.</param>
1544             <param name="formatting">Indicates how the output should be formatted.</param>
1545             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1546             If this is <c>null</c>, default serialization settings will be used.</param>
1547             <param name="type">
1548             The type of the value being serialized.
1549             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.
1550             Specifying the type is optional.
1551             </param>
1552             <returns>
1553             A JSON string representation of the object.
1554             </returns>
1555         </member>
1556         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
1557             <summary>
1558             Deserializes the JSON to a .NET object.
1559             </summary>
1560             <param name="value">The JSON to deserialize.</param>
1561             <returns>The deserialized object from the JSON string.</returns>
1562         </member>
1563         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1564             <summary>
1565             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1566             </summary>
1567             <param name="value">The JSON to deserialize.</param>
1568             <param name="settings">
1569             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1570             If this is <c>null</c>, default serialization settings will be used.
1571             </param>
1572             <returns>The deserialized object from the JSON string.</returns>
1573         </member>
1574         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
1575             <summary>
1576             Deserializes the JSON to the specified .NET type.
1577             </summary>
1578             <param name="value">The JSON to deserialize.</param>
1579             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
1580             <returns>The deserialized object from the JSON string.</returns>
1581         </member>
1582         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
1583             <summary>
1584             Deserializes the JSON to the specified .NET type.
1585             </summary>
1586             <typeparam name="T">The type of the object to deserialize to.</typeparam>
1587             <param name="value">The JSON to deserialize.</param>
1588             <returns>The deserialized object from the JSON string.</returns>
1589         </member>
1590         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
1591             <summary>
1592             Deserializes the JSON to the given anonymous type.
1593             </summary>
1594             <typeparam name="T">
1595             The anonymous type to deserialize to. This can't be specified
1596             traditionally and must be inferred from the anonymous type passed
1597             as a parameter.
1598             </typeparam>
1599             <param name="value">The JSON to deserialize.</param>
1600             <param name="anonymousTypeObject">The anonymous type object.</param>
1601             <returns>The deserialized anonymous type from the JSON string.</returns>
1602         </member>
1603         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
1604             <summary>
1605             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1606             </summary>
1607             <typeparam name="T">
1608             The anonymous type to deserialize to. This can't be specified
1609             traditionally and must be inferred from the anonymous type passed
1610             as a parameter.
1611             </typeparam>
1612             <param name="value">The JSON to deserialize.</param>
1613             <param name="anonymousTypeObject">The anonymous type object.</param>
1614             <param name="settings">
1615             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1616             If this is <c>null</c>, default serialization settings will be used.
1617             </param>
1618             <returns>The deserialized anonymous type from the JSON string.</returns>
1619         </member>
1620         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
1621             <summary>
1622             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1623             </summary>
1624             <typeparam name="T">The type of the object to deserialize to.</typeparam>
1625             <param name="value">The JSON to deserialize.</param>
1626             <param name="converters">Converters to use while deserializing.</param>
1627             <returns>The deserialized object from the JSON string.</returns>
1628         </member>
1629         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1630             <summary>
1631             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1632             </summary>
1633             <typeparam name="T">The type of the object to deserialize to.</typeparam>
1634             <param name="value">The object to deserialize.</param>
1635             <param name="settings">
1636             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1637             If this is <c>null</c>, default serialization settings will be used.
1638             </param>
1639             <returns>The deserialized object from the JSON string.</returns>
1640         </member>
1641         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
1642             <summary>
1643             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1644             </summary>
1645             <param name="value">The JSON to deserialize.</param>
1646             <param name="type">The type of the object to deserialize.</param>
1647             <param name="converters">Converters to use while deserializing.</param>
1648             <returns>The deserialized object from the JSON string.</returns>
1649         </member>
1650         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1651             <summary>
1652             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1653             </summary>
1654             <param name="value">The JSON to deserialize.</param>
1655             <param name="type">The type of the object to deserialize to.</param>
1656             <param name="settings">
1657             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1658             If this is <c>null</c>, default serialization settings will be used.
1659             </param>
1660             <returns>The deserialized object from the JSON string.</returns>
1661         </member>
1662         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
1663             <summary>
1664             Populates the object with values from the JSON string.
1665             </summary>
1666             <param name="value">The JSON to populate values from.</param>
1667             <param name="target">The target object to populate values onto.</param>
1668         </member>
1669         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1670             <summary>
1671             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1672             </summary>
1673             <param name="value">The JSON to populate values from.</param>
1674             <param name="target">The target object to populate values onto.</param>
1675             <param name="settings">
1676             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1677             If this is <c>null</c>, default serialization settings will be used.
1678             </param>
1679         </member>
1680         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
1681             <summary>
1682             Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string.
1683             </summary>
1684             <param name="node">The node to serialize.</param>
1685             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1686         </member>
1687         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
1688             <summary>
1689             Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting.
1690             </summary>
1691             <param name="node">The node to serialize.</param>
1692             <param name="formatting">Indicates how the output should be formatted.</param>
1693             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1694         </member>
1695         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
1696             <summary>
1697             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>.
1698             </summary>
1699             <param name="node">The node to serialize.</param>
1700             <param name="formatting">Indicates how the output should be formatted.</param>
1701             <param name="omitRootObject">Omits writing the root object.</param>
1702             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1703         </member>
1704         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
1705             <summary>
1706             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string.
1707             </summary>
1708             <param name="value">The JSON string.</param>
1709             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1710         </member>
1711         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
1712             <summary>
1713             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1714             </summary>
1715             <param name="value">The JSON string.</param>
1716             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1717             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1718         </member>
1719         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
1720             <summary>
1721             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1722             and writes a Json.NET array attribute for collections.
1723             </summary>
1724             <param name="value">The JSON string.</param>
1725             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1726             <param name="writeArrayAttribute">
1727             A flag to indicate whether to write the Json.NET array attribute.
1728             This attribute helps preserve arrays when converting the written XML back to JSON.
1729             </param>
1730             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1731         </member>
1732         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
1733             <summary>
1734             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
1735             </summary>
1736             <param name="node">The node to convert to JSON.</param>
1737             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1738         </member>
1739         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
1740             <summary>
1741             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
1742             </summary>
1743             <param name="node">The node to convert to JSON.</param>
1744             <param name="formatting">Indicates how the output should be formatted.</param>
1745             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1746         </member>
1747         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
1748             <summary>
1749             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>.
1750             </summary>
1751             <param name="node">The node to serialize.</param>
1752             <param name="formatting">Indicates how the output should be formatted.</param>
1753             <param name="omitRootObject">Omits writing the root object.</param>
1754             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1755         </member>
1756         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
1757             <summary>
1758             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
1759             </summary>
1760             <param name="value">The JSON string.</param>
1761             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1762         </member>
1763         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
1764             <summary>
1765             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1766             </summary>
1767             <param name="value">The JSON string.</param>
1768             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1769             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1770         </member>
1771         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
1772             <summary>
1773             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1774             and writes a Json.NET array attribute for collections.
1775             </summary>
1776             <param name="value">The JSON string.</param>
1777             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1778             <param name="writeArrayAttribute">
1779             A flag to indicate whether to write the Json.NET array attribute.
1780             This attribute helps preserve arrays when converting the written XML back to JSON.
1781             </param>
1782             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1783         </member>
1784         <member name="T:Newtonsoft.Json.JsonConverter">
1785             <summary>
1786             Converts an object to and from JSON.
1787             </summary>
1788         </member>
1789         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1790             <summary>
1791             Writes the JSON representation of the object.
1792             </summary>
1793             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1794             <param name="value">The value.</param>
1795             <param name="serializer">The calling serializer.</param>
1796         </member>
1797         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1798             <summary>
1799             Reads the JSON representation of the object.
1800             </summary>
1801             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1802             <param name="objectType">Type of the object.</param>
1803             <param name="existingValue">The existing value of object being read.</param>
1804             <param name="serializer">The calling serializer.</param>
1805             <returns>The object value.</returns>
1806         </member>
1807         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1808             <summary>
1809             Determines whether this instance can convert the specified object type.
1810             </summary>
1811             <param name="objectType">Type of the object.</param>
1812             <returns>
1813                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1814             </returns>
1815         </member>
1816         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1817             <summary>
1818             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1819             </summary>
1820             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1821         </member>
1822         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1823             <summary>
1824             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1825             </summary>
1826             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1827         </member>
1828         <member name="T:Newtonsoft.Json.JsonConverterAttribute">
1829             <summary>
1830             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
1831             </summary>
1832         </member>
1833         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
1834             <summary>
1835             Gets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1836             </summary>
1837             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
1838         </member>
1839         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
1840             <summary>
1841             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"/>.
1842             If <c>null</c>, the default constructor is used.
1843             </summary>
1844         </member>
1845         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
1846             <summary>
1847             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
1848             </summary>
1849             <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
1850         </member>
1851         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
1852             <summary>
1853             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
1854             </summary>
1855             <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
1856             <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/>. Can be <c>null</c>.</param>
1857         </member>
1858         <member name="T:Newtonsoft.Json.JsonConverterCollection">
1859             <summary>
1860             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1861             </summary>
1862         </member>
1863         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
1864             <summary>
1865             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1866             </summary>
1867         </member>
1868         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
1869             <summary>
1870             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
1871             </summary>
1872         </member>
1873         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
1874             <summary>
1875             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
1876             </summary>
1877             <param name="id">The container Id.</param>
1878         </member>
1879         <member name="T:Newtonsoft.Json.JsonException">
1880             <summary>
1881             The exception thrown when an error occurs during JSON serialization or deserialization.
1882             </summary>
1883         </member>
1884         <member name="M:Newtonsoft.Json.JsonException.#ctor">
1885             <summary>
1886             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1887             </summary>
1888         </member>
1889         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1890             <summary>
1891             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1892             with a specified error message.
1893             </summary>
1894             <param name="message">The error message that explains the reason for the exception.</param>
1895         </member>
1896         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1897             <summary>
1898             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1899             with a specified error message and a reference to the inner exception that is the cause of this exception.
1900             </summary>
1901             <param name="message">The error message that explains the reason for the exception.</param>
1902             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
1903         </member>
1904         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1905             <summary>
1906             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1907             and write values during serialization.
1908             </summary>
1909         </member>
1910         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1911             <summary>
1912             Gets or sets a value that indicates whether to write extension data when serializing the object.
1913             </summary>
1914             <value>
1915                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1916             </value>
1917         </member>
1918         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1919             <summary>
1920             Gets or sets a value that indicates whether to read extension data when deserializing the object.
1921             </summary>
1922             <value>
1923                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1924             </value>
1925         </member>
1926         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1927             <summary>
1928             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1929             </summary>
1930         </member>
1931         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
1932             <summary>
1933             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
1934             </summary>
1935         </member>
1936         <member name="T:Newtonsoft.Json.JsonObjectAttribute">
1937             <summary>
1938             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1939             </summary>
1940         </member>
1941         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
1942             <summary>
1943             Gets or sets the member serialization.
1944             </summary>
1945             <value>The member serialization.</value>
1946         </member>
1947         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
1948             <summary>
1949             Gets or sets a value that indicates whether the object's properties are required.
1950             </summary>
1951             <value>
1952                 A value indicating whether the object's properties are required.
1953             </value>
1954         </member>
1955         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
1956             <summary>
1957             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
1958             </summary>
1959         </member>
1960         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
1961             <summary>
1962             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
1963             </summary>
1964             <param name="memberSerialization">The member serialization.</param>
1965         </member>
1966         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
1967             <summary>
1968             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
1969             </summary>
1970             <param name="id">The container Id.</param>
1971         </member>
1972         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
1973             <summary>
1974             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
1975             </summary>
1976         </member>
1977         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
1978             <summary>
1979             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> used when serializing the property's collection items.
1980             </summary>
1981             <value>The collection's items <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
1982         </member>
1983         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
1984             <summary>
1985             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType"/>.
1986             If <c>null</c>, the default constructor is used.
1987             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1988             order, and type of these parameters.
1989             </summary>
1990             <example>
1991             <code>
1992             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1993             </code>
1994             </example>
1995         </member>
1996         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType">
1997             <summary>
1998             Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1999             </summary>
2000             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
2001         </member>
2002         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyParameters">
2003             <summary>
2004             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType"/>.
2005             If <c>null</c>, the default constructor is used.
2006             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,
2007             order, and type of these parameters.
2008             </summary>
2009             <example>
2010             <code>
2011             [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
2012             </code>
2013             </example>
2014         </member>
2015         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
2016             <summary>
2017             Gets or sets the null value handling used when serializing this property.
2018             </summary>
2019             <value>The null value handling.</value>
2020         </member>
2021         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
2022             <summary>
2023             Gets or sets the default value handling used when serializing this property.
2024             </summary>
2025             <value>The default value handling.</value>
2026         </member>
2027         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
2028             <summary>
2029             Gets or sets the reference loop handling used when serializing this property.
2030             </summary>
2031             <value>The reference loop handling.</value>
2032         </member>
2033         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
2034             <summary>
2035             Gets or sets the object creation handling used when deserializing this property.
2036             </summary>
2037             <value>The object creation handling.</value>
2038         </member>
2039         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
2040             <summary>
2041             Gets or sets the type name handling used when serializing this property.
2042             </summary>
2043             <value>The type name handling.</value>
2044         </member>
2045         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
2046             <summary>
2047             Gets or sets whether this property's value is serialized as a reference.
2048             </summary>
2049             <value>Whether this property's value is serialized as a reference.</value>
2050         </member>
2051         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
2052             <summary>
2053             Gets or sets the order of serialization of a member.
2054             </summary>
2055             <value>The numeric order of serialization.</value>
2056         </member>
2057         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
2058             <summary>
2059             Gets or sets a value indicating whether this property is required.
2060             </summary>
2061             <value>
2062                 A value indicating whether this property is required.
2063             </value>
2064         </member>
2065         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
2066             <summary>
2067             Gets or sets the name of the property.
2068             </summary>
2069             <value>The name of the property.</value>
2070         </member>
2071         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
2072             <summary>
2073             Gets or sets the reference loop handling used when serializing the property's collection items.
2074             </summary>
2075             <value>The collection's items reference loop handling.</value>
2076         </member>
2077         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
2078             <summary>
2079             Gets or sets the type name handling used when serializing the property's collection items.
2080             </summary>
2081             <value>The collection's items type name handling.</value>
2082         </member>
2083         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
2084             <summary>
2085             Gets or sets whether this property's collection items are serialized as a reference.
2086             </summary>
2087             <value>Whether this property's collection items are serialized as a reference.</value>
2088         </member>
2089         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
2090             <summary>
2091             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
2092             </summary>
2093         </member>
2094         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
2095             <summary>
2096             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
2097             </summary>
2098             <param name="propertyName">Name of the property.</param>
2099         </member>
2100         <member name="T:Newtonsoft.Json.JsonReader">
2101             <summary>
2102             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2103             </summary>
2104         </member>
2105         <member name="M:Newtonsoft.Json.JsonReader.ReadAsync(System.Threading.CancellationToken)">
2106             <summary>
2107             Asynchronously reads the next JSON token from the source.
2108             </summary>
2109             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2110             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2111             property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
2112             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2113             classes can override this behaviour for true asychronousity.</remarks>
2114         </member>
2115         <member name="M:Newtonsoft.Json.JsonReader.SkipAsync(System.Threading.CancellationToken)">
2116             <summary>
2117             Asynchronously skips the children of the current token.
2118             </summary>
2119             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2120             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
2121             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2122             classes can override this behaviour for true asychronousity.</remarks>
2123         </member>
2124         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
2125             <summary>
2126             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2127             </summary>
2128             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2129             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2130             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns>
2131             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2132             classes can override this behaviour for true asychronousity.</remarks>
2133         </member>
2134         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
2135             <summary>
2136             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2137             </summary>
2138             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2139             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2140             property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns>
2141             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2142             classes can override this behaviour for true asychronousity.</remarks>
2143         </member>
2144         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
2145             <summary>
2146             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2147             </summary>
2148             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2149             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2150             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns>
2151             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2152             classes can override this behaviour for true asychronousity.</remarks>
2153         </member>
2154         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
2155             <summary>
2156             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2157             </summary>
2158             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2159             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2160             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns>
2161             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2162             classes can override this behaviour for true asychronousity.</remarks>
2163         </member>
2164         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
2165             <summary>
2166             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2167             </summary>
2168             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2169             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2170             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns>
2171             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2172             classes can override this behaviour for true asychronousity.</remarks>
2173         </member>
2174         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
2175             <summary>
2176             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2177             </summary>
2178             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2179             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2180             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns>
2181             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2182             classes can override this behaviour for true asychronousity.</remarks>
2183         </member>
2184         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32Async(System.Threading.CancellationToken)">
2185             <summary>
2186             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2187             </summary>
2188             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2189             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2190             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns>
2191             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2192             classes can override this behaviour for true asychronousity.</remarks>
2193         </member>
2194         <member name="M:Newtonsoft.Json.JsonReader.ReadAsStringAsync(System.Threading.CancellationToken)">
2195             <summary>
2196             Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>.
2197             </summary>
2198             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2199             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2200             property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns>
2201             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2202             classes can override this behaviour for true asychronousity.</remarks>
2203         </member>
2204         <member name="T:Newtonsoft.Json.JsonReader.State">
2205             <summary>
2206             Specifies the state of the reader.
2207             </summary>
2208         </member>
2209         <member name="F:Newtonsoft.Json.JsonReader.State.Start">
2210             <summary>
2211             A <see cref="T:Newtonsoft.Json.JsonReader"/> read method has not been called.
2212             </summary>
2213         </member>
2214         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
2215             <summary>
2216             The end of the file has been reached successfully.
2217             </summary>
2218         </member>
2219         <member name="F:Newtonsoft.Json.JsonReader.State.Property">
2220             <summary>
2221             Reader is at a property.
2222             </summary>
2223         </member>
2224         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
2225             <summary>
2226             Reader is at the start of an object.
2227             </summary>
2228         </member>
2229         <member name="F:Newtonsoft.Json.JsonReader.State.Object">
2230             <summary>
2231             Reader is in an object.
2232             </summary>
2233         </member>
2234         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
2235             <summary>
2236             Reader is at the start of an array.
2237             </summary>
2238         </member>
2239         <member name="F:Newtonsoft.Json.JsonReader.State.Array">
2240             <summary>
2241             Reader is in an array.
2242             </summary>
2243         </member>
2244         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
2245             <summary>
2246             The <see cref="M:Newtonsoft.Json.JsonReader.Close"/> method has been called.
2247             </summary>
2248         </member>
2249         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
2250             <summary>
2251             Reader has just read a value.
2252             </summary>
2253         </member>
2254         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
2255             <summary>
2256             Reader is at the start of a constructor.
2257             </summary>
2258         </member>
2259         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
2260             <summary>
2261             Reader is in a constructor.
2262             </summary>
2263         </member>
2264         <member name="F:Newtonsoft.Json.JsonReader.State.Error">
2265             <summary>
2266             An error occurred that prevents the read operation from continuing.
2267             </summary>
2268         </member>
2269         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
2270             <summary>
2271             The end of the file has been reached successfully.
2272             </summary>
2273         </member>
2274         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
2275             <summary>
2276             Gets the current reader state.
2277             </summary>
2278             <value>The current reader state.</value>
2279         </member>
2280         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
2281             <summary>
2282             Gets or sets a value indicating whether the source should be closed when this reader is closed.
2283             </summary>
2284             <value>
2285             <c>true</c> to close the source when this reader is closed; otherwise <c>false</c>. The default is <c>true</c>.
2286             </value>
2287         </member>
2288         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
2289             <summary>
2290             Gets or sets a value indicating whether multiple pieces of JSON content can
2291             be read from a continuous stream without erroring.
2292             </summary>
2293             <value>
2294             <c>true</c> to support reading multiple pieces of JSON content; otherwise <c>false</c>.
2295             The default is <c>false</c>.
2296             </value>
2297         </member>
2298         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
2299             <summary>
2300             Gets the quotation mark character used to enclose the value of a string.
2301             </summary>
2302         </member>
2303         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
2304             <summary>
2305             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON.
2306             </summary>
2307         </member>
2308         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
2309             <summary>
2310             Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
2311             </summary>
2312         </member>
2313         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
2314             <summary>
2315             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2316             </summary>
2317         </member>
2318         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
2319             <summary>
2320             Gets or sets how custom date formatted strings are parsed when reading JSON.
2321             </summary>
2322         </member>
2323         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
2324             <summary>
2325             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2326             </summary>
2327         </member>
2328         <member name="P:Newtonsoft.Json.JsonReader.TokenType">
2329             <summary>
2330             Gets the type of the current JSON token. 
2331             </summary>
2332         </member>
2333         <member name="P:Newtonsoft.Json.JsonReader.Value">
2334             <summary>
2335             Gets the text value of the current JSON token.
2336             </summary>
2337         </member>
2338         <member name="P:Newtonsoft.Json.JsonReader.ValueType">
2339             <summary>
2340             Gets the .NET type for the current JSON token.
2341             </summary>
2342         </member>
2343         <member name="P:Newtonsoft.Json.JsonReader.Depth">
2344             <summary>
2345             Gets the depth of the current token in the JSON document.
2346             </summary>
2347             <value>The depth of the current token in the JSON document.</value>
2348         </member>
2349         <member name="P:Newtonsoft.Json.JsonReader.Path">
2350             <summary>
2351             Gets the path of the current JSON token. 
2352             </summary>
2353         </member>
2354         <member name="P:Newtonsoft.Json.JsonReader.Culture">
2355             <summary>
2356             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2357             </summary>
2358         </member>
2359         <member name="M:Newtonsoft.Json.JsonReader.#ctor">
2360             <summary>
2361             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class.
2362             </summary>
2363         </member>
2364         <member name="M:Newtonsoft.Json.JsonReader.Read">
2365             <summary>
2366             Reads the next JSON token from the source.
2367             </summary>
2368             <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
2369         </member>
2370         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
2371             <summary>
2372             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2373             </summary>
2374             <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>
2375         </member>
2376         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
2377             <summary>
2378             Reads the next JSON token from the source as a <see cref="T:System.String"/>.
2379             </summary>
2380             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2381         </member>
2382         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
2383             <summary>
2384             Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2385             </summary>
2386             <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>
2387         </member>
2388         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDouble">
2389             <summary>
2390             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2391             </summary>
2392             <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>
2393         </member>
2394         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBoolean">
2395             <summary>
2396             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2397             </summary>
2398             <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>
2399         </member>
2400         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
2401             <summary>
2402             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2403             </summary>
2404             <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>
2405         </member>
2406         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
2407             <summary>
2408             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2409             </summary>
2410             <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>
2411         </member>
2412         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
2413             <summary>
2414             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2415             </summary>
2416             <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>
2417         </member>
2418         <member name="M:Newtonsoft.Json.JsonReader.Skip">
2419             <summary>
2420             Skips the children of the current token.
2421             </summary>
2422         </member>
2423         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
2424             <summary>
2425             Sets the current token.
2426             </summary>
2427             <param name="newToken">The new token.</param>
2428         </member>
2429         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
2430             <summary>
2431             Sets the current token and value.
2432             </summary>
2433             <param name="newToken">The new token.</param>
2434             <param name="value">The value.</param>
2435         </member>
2436         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)">
2437             <summary>
2438             Sets the current token and value.
2439             </summary>
2440             <param name="newToken">The new token.</param>
2441             <param name="value">The value.</param>
2442             <param name="updateIndex">A flag indicating whether the position index inside an array should be updated.</param>
2443         </member>
2444         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
2445             <summary>
2446             Sets the state based on current token type.
2447             </summary>
2448         </member>
2449         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
2450             <summary>
2451             Releases unmanaged and - optionally - managed resources.
2452             </summary>
2453             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2454         </member>
2455         <member name="M:Newtonsoft.Json.JsonReader.Close">
2456             <summary>
2457             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
2458             If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the source is also closed.
2459             </summary>
2460         </member>
2461         <member name="T:Newtonsoft.Json.JsonReaderException">
2462             <summary>
2463             The exception thrown when an error occurs while reading JSON text.
2464             </summary>
2465         </member>
2466         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
2467             <summary>
2468             Gets the line number indicating where the error occurred.
2469             </summary>
2470             <value>The line number indicating where the error occurred.</value>
2471         </member>
2472         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
2473             <summary>
2474             Gets the line position indicating where the error occurred.
2475             </summary>
2476             <value>The line position indicating where the error occurred.</value>
2477         </member>
2478         <member name="P:Newtonsoft.Json.JsonReaderException.Path">
2479             <summary>
2480             Gets the path to the JSON where the error occurred.
2481             </summary>
2482             <value>The path to the JSON where the error occurred.</value>
2483         </member>
2484         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
2485             <summary>
2486             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2487             </summary>
2488         </member>
2489         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
2490             <summary>
2491             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2492             with a specified error message.
2493             </summary>
2494             <param name="message">The error message that explains the reason for the exception.</param>
2495         </member>
2496         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
2497             <summary>
2498             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2499             with a specified error message and a reference to the inner exception that is the cause of this exception.
2500             </summary>
2501             <param name="message">The error message that explains the reason for the exception.</param>
2502             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2503         </member>
2504         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
2505             <summary>
2506             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2507             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.
2508             </summary>
2509             <param name="message">The error message that explains the reason for the exception.</param>
2510             <param name="path">The path to the JSON where the error occurred.</param>
2511             <param name="lineNumber">The line number indicating where the error occurred.</param>
2512             <param name="linePosition">The line position indicating where the error occurred.</param>
2513             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2514         </member>
2515         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
2516             <summary>
2517             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value.
2518             </summary>
2519         </member>
2520         <member name="T:Newtonsoft.Json.JsonSerializationException">
2521             <summary>
2522             The exception thrown when an error occurs during JSON serialization or deserialization.
2523             </summary>
2524         </member>
2525         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
2526             <summary>
2527             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2528             </summary>
2529         </member>
2530         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
2531             <summary>
2532             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2533             with a specified error message.
2534             </summary>
2535             <param name="message">The error message that explains the reason for the exception.</param>
2536         </member>
2537         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
2538             <summary>
2539             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2540             with a specified error message and a reference to the inner exception that is the cause of this exception.
2541             </summary>
2542             <param name="message">The error message that explains the reason for the exception.</param>
2543             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2544         </member>
2545         <member name="T:Newtonsoft.Json.JsonSerializer">
2546             <summary>
2547             Serializes and deserializes objects into and from the JSON format.
2548             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
2549             </summary>
2550         </member>
2551         <member name="E:Newtonsoft.Json.JsonSerializer.Error">
2552             <summary>
2553             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
2554             </summary>
2555         </member>
2556         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
2557             <summary>
2558             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2559             </summary>
2560         </member>
2561         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
2562             <summary>
2563             Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/> used by the serializer when resolving type names.
2564             </summary>
2565         </member>
2566         <member name="P:Newtonsoft.Json.JsonSerializer.SerializationBinder">
2567             <summary>
2568             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
2569             </summary>
2570         </member>
2571         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
2572             <summary>
2573             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
2574             </summary>
2575             <value>The trace writer.</value>
2576         </member>
2577         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
2578             <summary>
2579             Gets or sets the equality comparer used by the serializer when comparing references.
2580             </summary>
2581             <value>The equality comparer.</value>
2582         </member>
2583         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
2584             <summary>
2585             Gets or sets how type name writing and reading is handled by the serializer.
2586             </summary>
2587             <remarks>
2588             <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
2589             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
2590             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
2591             </remarks>
2592         </member>
2593         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
2594             <summary>
2595             Gets or sets how a type name assembly is written and resolved by the serializer.
2596             </summary>
2597             <value>The type name assembly format.</value>
2598         </member>
2599         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormatHandling">
2600             <summary>
2601             Gets or sets how a type name assembly is written and resolved by the serializer.
2602             </summary>
2603             <value>The type name assembly format.</value>
2604         </member>
2605         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
2606             <summary>
2607             Gets or sets how object references are preserved by the serializer.
2608             </summary>
2609         </member>
2610         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
2611             <summary>
2612             Gets or sets how reference loops (e.g. a class referencing itself) is handled.
2613             </summary>
2614         </member>
2615         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
2616             <summary>
2617             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2618             </summary>
2619         </member>
2620         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
2621             <summary>
2622             Gets or sets how null values are handled during serialization and deserialization.
2623             </summary>
2624         </member>
2625         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
2626             <summary>
2627             Gets or sets how default values are handled during serialization and deserialization.
2628             </summary>
2629         </member>
2630         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
2631             <summary>
2632             Gets or sets how objects are created during deserialization.
2633             </summary>
2634             <value>The object creation handling.</value>
2635         </member>
2636         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
2637             <summary>
2638             Gets or sets how constructors are used during deserialization.
2639             </summary>
2640             <value>The constructor handling.</value>
2641         </member>
2642         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
2643             <summary>
2644             Gets or sets how metadata properties are used during deserialization.
2645             </summary>
2646             <value>The metadata properties handling.</value>
2647         </member>
2648         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
2649             <summary>
2650             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
2651             </summary>
2652             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
2653         </member>
2654         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
2655             <summary>
2656             Gets or sets the contract resolver used by the serializer when
2657             serializing .NET objects to JSON and vice versa.
2658             </summary>
2659         </member>
2660         <member name="P:Newtonsoft.Json.JsonSerializer.Context">
2661             <summary>
2662             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
2663             </summary>
2664             <value>The context.</value>
2665         </member>
2666         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
2667             <summary>
2668             Indicates how JSON text output is formatted.
2669             </summary>
2670         </member>
2671         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
2672             <summary>
2673             Gets or sets how dates are written to JSON text.
2674             </summary>
2675         </member>
2676         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
2677             <summary>
2678             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
2679             </summary>
2680         </member>
2681         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
2682             <summary>
2683             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.
2684             </summary>
2685         </member>
2686         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
2687             <summary>
2688             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2689             </summary>
2690         </member>
2691         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
2692             <summary>
2693             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
2694             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
2695             are written as JSON text.
2696             </summary>
2697         </member>
2698         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
2699             <summary>
2700             Gets or sets how strings are escaped when writing JSON text.
2701             </summary>
2702         </member>
2703         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
2704             <summary>
2705             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
2706             and the expected date format when reading JSON text.
2707             </summary>
2708         </member>
2709         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
2710             <summary>
2711             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2712             </summary>
2713         </member>
2714         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
2715             <summary>
2716             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2717             </summary>
2718         </member>
2719         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
2720             <summary>
2721             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
2722             </summary>
2723             <value>
2724                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
2725             </value>
2726         </member>
2727         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
2728             <summary>
2729             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
2730             </summary>
2731         </member>
2732         <member name="M:Newtonsoft.Json.JsonSerializer.Create">
2733             <summary>
2734             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2735             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2736             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2737             </summary>
2738             <returns>
2739             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2740             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2741             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2742             </returns>
2743         </member>
2744         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
2745             <summary>
2746             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2747             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2748             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2749             </summary>
2750             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
2751             <returns>
2752             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2753             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
2754             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2755             </returns>
2756         </member>
2757         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
2758             <summary>
2759             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2760             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2761             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2762             </summary>
2763             <returns>
2764             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
2765             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2766             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
2767             </returns>
2768         </member>
2769         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
2770             <summary>
2771             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2772             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2773             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2774             </summary>
2775             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
2776             <returns>
2777             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2778             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
2779             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2780             </returns>
2781         </member>
2782         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
2783             <summary>
2784             Populates the JSON values onto the target object.
2785             </summary>
2786             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
2787             <param name="target">The target object to populate values onto.</param>
2788         </member>
2789         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
2790             <summary>
2791             Populates the JSON values onto the target object.
2792             </summary>
2793             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
2794             <param name="target">The target object to populate values onto.</param>
2795         </member>
2796         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
2797             <summary>
2798             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
2799             </summary>
2800             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
2801             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
2802         </member>
2803         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
2804             <summary>
2805             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
2806             into an instance of the specified type.
2807             </summary>
2808             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
2809             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
2810             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
2811         </member>
2812         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
2813             <summary>
2814             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
2815             into an instance of the specified type.
2816             </summary>
2817             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
2818             <typeparam name="T">The type of the object to deserialize.</typeparam>
2819             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
2820         </member>
2821         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
2822             <summary>
2823             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
2824             into an instance of the specified type.
2825             </summary>
2826             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
2827             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
2828             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
2829         </member>
2830         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
2831             <summary>
2832             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2833             using the specified <see cref="T:System.IO.TextWriter"/>.
2834             </summary>
2835             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
2836             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2837         </member>
2838         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
2839             <summary>
2840             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2841             using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2842             </summary>
2843             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
2844             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2845             <param name="objectType">
2846             The type of the value being serialized.
2847             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.
2848             Specifying the type is optional.
2849             </param>
2850         </member>
2851         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
2852             <summary>
2853             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2854             using the specified <see cref="T:System.IO.TextWriter"/>.
2855             </summary>
2856             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
2857             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2858             <param name="objectType">
2859             The type of the value being serialized.
2860             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.
2861             Specifying the type is optional.
2862             </param>
2863         </member>
2864         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
2865             <summary>
2866             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
2867             using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2868             </summary>
2869             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
2870             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
2871         </member>
2872         <member name="T:Newtonsoft.Json.JsonSerializerSettings">
2873             <summary>
2874             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
2875             </summary>
2876         </member>
2877         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
2878             <summary>
2879             Gets or sets how reference loops (e.g. a class referencing itself) are handled.
2880             </summary>
2881             <value>Reference loop handling.</value>
2882         </member>
2883         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
2884             <summary>
2885             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2886             </summary>
2887             <value>Missing member handling.</value>
2888         </member>
2889         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
2890             <summary>
2891             Gets or sets how objects are created during deserialization.
2892             </summary>
2893             <value>The object creation handling.</value>
2894         </member>
2895         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
2896             <summary>
2897             Gets or sets how null values are handled during serialization and deserialization.
2898             </summary>
2899             <value>Null value handling.</value>
2900         </member>
2901         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
2902             <summary>
2903             Gets or sets how default values are handled during serialization and deserialization.
2904             </summary>
2905             <value>The default value handling.</value>
2906         </member>
2907         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
2908             <summary>
2909             Gets or sets a <see cref="T:Newtonsoft.Json.JsonConverter"/> collection that will be used during serialization.
2910             </summary>
2911             <value>The converters.</value>
2912         </member>
2913         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
2914             <summary>
2915             Gets or sets how object references are preserved by the serializer.
2916             </summary>
2917             <value>The preserve references handling.</value>
2918         </member>
2919         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
2920             <summary>
2921             Gets or sets how type name writing and reading is handled by the serializer.
2922             </summary>
2923             <remarks>
2924             <see cref="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
2925             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/>
2926             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
2927             </remarks>
2928             <value>The type name handling.</value>
2929         </member>
2930         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
2931             <summary>
2932             Gets or sets how metadata properties are used during deserialization.
2933             </summary>
2934             <value>The metadata properties handling.</value>
2935         </member>
2936         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
2937             <summary>
2938             Gets or sets how a type name assembly is written and resolved by the serializer.
2939             </summary>
2940             <value>The type name assembly format.</value>
2941         </member>
2942         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormatHandling">
2943             <summary>
2944             Gets or sets how a type name assembly is written and resolved by the serializer.
2945             </summary>
2946             <value>The type name assembly format.</value>
2947         </member>
2948         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
2949             <summary>
2950             Gets or sets how constructors are used during deserialization.
2951             </summary>
2952             <value>The constructor handling.</value>
2953         </member>
2954         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
2955             <summary>
2956             Gets or sets the contract resolver used by the serializer when
2957             serializing .NET objects to JSON and vice versa.
2958             </summary>
2959             <value>The contract resolver.</value>
2960         </member>
2961         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
2962             <summary>
2963             Gets or sets the equality comparer used by the serializer when comparing references.
2964             </summary>
2965             <value>The equality comparer.</value>
2966         </member>
2967         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
2968             <summary>
2969             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2970             </summary>
2971             <value>The reference resolver.</value>
2972         </member>
2973         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
2974             <summary>
2975             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2976             </summary>
2977             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
2978         </member>
2979         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
2980             <summary>
2981             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
2982             </summary>
2983             <value>The trace writer.</value>
2984         </member>
2985         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
2986             <summary>
2987             Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/> used by the serializer when resolving type names.
2988             </summary>
2989             <value>The binder.</value>
2990         </member>
2991         <member name="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder">
2992             <summary>
2993             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
2994             </summary>
2995             <value>The binder.</value>
2996         </member>
2997         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
2998             <summary>
2999             Gets or sets the error handler called during serialization and deserialization.
3000             </summary>
3001             <value>The error handler called during serialization and deserialization.</value>
3002         </member>
3003         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3004             <summary>
3005             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3006             </summary>
3007             <value>The context.</value>
3008         </member>
3009         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3010             <summary>
3011             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
3012             and the expected date format when reading JSON text.
3013             </summary>
3014         </member>
3015         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3016             <summary>
3017             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3018             </summary>
3019         </member>
3020         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3021             <summary>
3022             Indicates how JSON text output is formatted.
3023             </summary>
3024         </member>
3025         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3026             <summary>
3027             Gets or sets how dates are written to JSON text.
3028             </summary>
3029         </member>
3030         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3031             <summary>
3032             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
3033             </summary>
3034         </member>
3035         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3036             <summary>
3037             Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3038             </summary>
3039         </member>
3040         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3041             <summary>
3042             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3043             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3044             are written as JSON.
3045             </summary>
3046         </member>
3047         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3048             <summary>
3049             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3050             </summary>
3051         </member>
3052         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3053             <summary>
3054             Gets or sets how strings are escaped when writing JSON text.
3055             </summary>
3056         </member>
3057         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3058             <summary>
3059             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3060             </summary>
3061         </member>
3062         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3063             <summary>
3064             Gets a value indicating whether there will be a check for additional content after deserializing an object.
3065             </summary>
3066             <value>
3067                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3068             </value>
3069         </member>
3070         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3071             <summary>
3072             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3073             </summary>
3074         </member>
3075         <member name="T:Newtonsoft.Json.JsonTextReader">
3076             <summary>
3077             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3078             </summary>
3079         </member>
3080         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsync(System.Threading.CancellationToken)">
3081             <summary>
3082             Asynchronously reads the next JSON token from the source.
3083             </summary>
3084             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3085             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3086             property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
3087             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3088             execute synchronously, returning an already-completed task.</remarks>
3089         </member>
3090         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
3091             <summary>
3092             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
3093             </summary>
3094             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3095             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3096             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns>
3097             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3098             execute synchronously, returning an already-completed task.</remarks>
3099         </member>
3100         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
3101             <summary>
3102             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
3103             </summary>
3104             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3105             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3106             property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns>
3107             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3108             execute synchronously, returning an already-completed task.</remarks>
3109         </member>
3110         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
3111             <summary>
3112             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
3113             </summary>
3114             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3115             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3116             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns>
3117             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3118             execute synchronously, returning an already-completed task.</remarks>
3119         </member>
3120         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
3121             <summary>
3122             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
3123             </summary>
3124             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3125             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3126             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns>
3127             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3128             execute synchronously, returning an already-completed task.</remarks>
3129         </member>
3130         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
3131             <summary>
3132             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
3133             </summary>
3134             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3135             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3136             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns>
3137             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3138             execute synchronously, returning an already-completed task.</remarks>
3139         </member>
3140         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
3141             <summary>
3142             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3143             </summary>
3144             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3145             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3146             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns>
3147             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3148             execute synchronously, returning an already-completed task.</remarks>
3149         </member>
3150         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32Async(System.Threading.CancellationToken)">
3151             <summary>
3152             Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
3153             </summary>
3154             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3155             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3156             property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns>
3157             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3158             execute synchronously, returning an already-completed task.</remarks>
3159         </member>
3160         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsStringAsync(System.Threading.CancellationToken)">
3161             <summary>
3162             Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>.
3163             </summary>
3164             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3165             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3166             property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns>
3167             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3168             execute synchronously, returning an already-completed task.</remarks>
3169         </member>
3170         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3171             <summary>
3172             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3173             </summary>
3174             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the JSON data to read.</param>
3175         </member>
3176         <member name="P:Newtonsoft.Json.JsonTextReader.ArrayPool">
3177             <summary>
3178             Gets or sets the reader's character buffer pool.
3179             </summary>
3180         </member>
3181         <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3182             <summary>
3183             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/>.
3184             </summary>
3185             <returns>
3186             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
3187             </returns>
3188         </member>
3189         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3190             <summary>
3191             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"/>.
3192             </summary>
3193             <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>
3194         </member>
3195         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3196             <summary>
3197             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"/>.
3198             </summary>
3199             <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>
3200         </member>
3201         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3202             <summary>
3203             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>.
3204             </summary>
3205             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3206         </member>
3207         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3208             <summary>
3209             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[].
3210             </summary>
3211             <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>
3212         </member>
3213         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBoolean">
3214             <summary>
3215             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"/>.
3216             </summary>
3217             <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>
3218         </member>
3219         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3220             <summary>
3221             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"/>.
3222             </summary>
3223             <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>
3224         </member>
3225         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3226             <summary>
3227             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"/>.
3228             </summary>
3229             <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>
3230         </member>
3231         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDouble">
3232             <summary>
3233             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"/>.
3234             </summary>
3235             <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>
3236         </member>
3237         <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3238             <summary>
3239             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
3240             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.
3241             </summary>
3242         </member>
3243         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3244             <summary>
3245             Gets a value indicating whether the class can return line information.
3246             </summary>
3247             <returns>
3248                 <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>.
3249             </returns>
3250         </member>
3251         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3252             <summary>
3253             Gets the current line number.
3254             </summary>
3255             <value>
3256             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>).
3257             </value>
3258         </member>
3259         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3260             <summary>
3261             Gets the current line position.
3262             </summary>
3263             <value>
3264             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>).
3265             </value>
3266         </member>
3267         <member name="T:Newtonsoft.Json.JsonTextWriter">
3268             <summary>
3269             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3270             </summary>
3271         </member>
3272         <member name="M:Newtonsoft.Json.JsonTextWriter.FlushAsync(System.Threading.CancellationToken)">
3273             <summary>
3274             Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
3275             </summary>
3276             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3277             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3278             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3279             execute synchronously, returning an already-completed task.</remarks>
3280         </member>
3281         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
3282             <summary>
3283             Asynchronously writes the JSON value delimiter.
3284             </summary>
3285             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3286             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3287             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3288             execute synchronously, returning an already-completed task.</remarks>
3289         </member>
3290         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
3291             <summary>
3292             Asynchronously writes the specified end token.
3293             </summary>
3294             <param name="token">The end token to write.</param>
3295             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3296             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3297             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3298             execute synchronously, returning an already-completed task.</remarks>
3299         </member>
3300         <member name="M:Newtonsoft.Json.JsonTextWriter.CloseAsync(System.Threading.CancellationToken)">
3301             <summary>
3302             Asynchronously closes this writer.
3303             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
3304             </summary>
3305             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3306             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3307             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3308             execute synchronously, returning an already-completed task.</remarks>
3309         </member>
3310         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(System.Threading.CancellationToken)">
3311             <summary>
3312             Asynchronously writes the end of the current JSON object or array.
3313             </summary>
3314             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3315             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3316             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3317             execute synchronously, returning an already-completed task.</remarks>
3318         </member>
3319         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentAsync(System.Threading.CancellationToken)">
3320             <summary>
3321             Asynchronously writes indent characters.
3322             </summary>
3323             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3324             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3325             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3326             execute synchronously, returning an already-completed task.</remarks>
3327         </member>
3328         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
3329             <summary>
3330             Asynchronously writes an indent space.
3331             </summary>
3332             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3333             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3334             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3335             execute synchronously, returning an already-completed task.</remarks>
3336         </member>
3337         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
3338             <summary>
3339             Asynchronously writes raw JSON without changing the writer's state.
3340             </summary>
3341             <param name="json">The raw JSON to write.</param>
3342             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3343             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3344             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3345             execute synchronously, returning an already-completed task.</remarks>
3346         </member>
3347         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNullAsync(System.Threading.CancellationToken)">
3348             <summary>
3349             Asynchronously writes a null value.
3350             </summary>
3351             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3352             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3353             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3354             execute synchronously, returning an already-completed task.</remarks>
3355         </member>
3356         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
3357             <summary>
3358             Asynchronously writes the property name of a name/value pair of a JSON object.
3359             </summary>
3360             <param name="name">The name of the property.</param>
3361             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3362             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3363             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3364             execute synchronously, returning an already-completed task.</remarks>
3365         </member>
3366         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
3367             <summary>
3368             Asynchronously writes the property name of a name/value pair of a JSON object.
3369             </summary>
3370             <param name="name">The name of the property.</param>
3371             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3372             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3373             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3374             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3375             execute synchronously, returning an already-completed task.</remarks>
3376         </member>
3377         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
3378             <summary>
3379             Asynchronously writes the beginning of a JSON array.
3380             </summary>
3381             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3382             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3383             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3384             execute synchronously, returning an already-completed task.</remarks>
3385         </member>
3386         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
3387             <summary>
3388             Asynchronously writes the beginning of a JSON object.
3389             </summary>
3390             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3391             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3392             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3393             execute synchronously, returning an already-completed task.</remarks>
3394         </member>
3395         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
3396             <summary>
3397             Asynchronously writes the start of a constructor with the given name.
3398             </summary>
3399             <param name="name">The name of the constructor.</param>
3400             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3401             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3402             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3403             execute synchronously, returning an already-completed task.</remarks>
3404         </member>
3405         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
3406             <summary>
3407             Asynchronously writes an undefined value.
3408             </summary>
3409             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3410             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3411             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3412             execute synchronously, returning an already-completed task.</remarks>
3413         </member>
3414         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
3415             <summary>
3416             Asynchronously writes the given white space.
3417             </summary>
3418             <param name="ws">The string of white space characters.</param>
3419             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3420             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3421             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3422             execute synchronously, returning an already-completed task.</remarks>
3423         </member>
3424         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
3425             <summary>
3426             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
3427             </summary>
3428             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
3429             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3430             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3431             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3432             execute synchronously, returning an already-completed task.</remarks>
3433         </member>
3434         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
3435             <summary>
3436             Asynchronously writes a <see cref="T:System.Boolean"/> value.
3437             </summary>
3438             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3439             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3440             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3441             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3442             execute synchronously, returning an already-completed task.</remarks>
3443         </member>
3444         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
3445             <summary>
3446             Asynchronously writes a <see cref="T:System.Byte"/> value.
3447             </summary>
3448             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3449             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3450             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3451             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3452             execute synchronously, returning an already-completed task.</remarks>
3453         </member>
3454         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
3455             <summary>
3456             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
3457             </summary>
3458             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
3459             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3460             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3461             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3462             execute synchronously, returning an already-completed task.</remarks>
3463         </member>
3464         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
3465             <summary>
3466             Asynchronously writes a <see cref="T:System.Byte"/>[] value.
3467             </summary>
3468             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
3469             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3470             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3471             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3472             execute synchronously, returning an already-completed task.</remarks>
3473         </member>
3474         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
3475             <summary>
3476             Asynchronously writes a <see cref="T:System.Char"/> value.
3477             </summary>
3478             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3479             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3480             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3481             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3482             execute synchronously, returning an already-completed task.</remarks>
3483         </member>
3484         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
3485             <summary>
3486             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
3487             </summary>
3488             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
3489             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3490             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3491             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3492             execute synchronously, returning an already-completed task.</remarks>
3493         </member>
3494         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
3495             <summary>
3496             Asynchronously writes a <see cref="T:System.DateTime"/> value.
3497             </summary>
3498             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3499             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3500             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3501             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3502             execute synchronously, returning an already-completed task.</remarks>
3503         </member>
3504         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
3505             <summary>
3506             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
3507             </summary>
3508             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
3509             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3510             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3511             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3512             execute synchronously, returning an already-completed task.</remarks>
3513         </member>
3514         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
3515             <summary>
3516             Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
3517             </summary>
3518             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3519             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3520             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3521             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3522             execute synchronously, returning an already-completed task.</remarks>
3523         </member>
3524         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
3525             <summary>
3526             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
3527             </summary>
3528             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
3529             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3530             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3531             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3532             execute synchronously, returning an already-completed task.</remarks>
3533         </member>
3534         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
3535             <summary>
3536             Asynchronously writes a <see cref="T:System.Decimal"/> value.
3537             </summary>
3538             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3539             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3540             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3541             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3542             execute synchronously, returning an already-completed task.</remarks>
3543         </member>
3544         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
3545             <summary>
3546             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
3547             </summary>
3548             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
3549             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3550             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3551             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3552             execute synchronously, returning an already-completed task.</remarks>
3553         </member>
3554         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
3555             <summary>
3556             Asynchronously writes a <see cref="T:System.Double"/> value.
3557             </summary>
3558             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3559             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3560             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3561             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3562             execute synchronously, returning an already-completed task.</remarks>
3563         </member>
3564         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
3565             <summary>
3566             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
3567             </summary>
3568             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
3569             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3570             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3571             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3572             execute synchronously, returning an already-completed task.</remarks>
3573         </member>
3574         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
3575             <summary>
3576             Asynchronously writes a <see cref="T:System.Single"/> value.
3577             </summary>
3578             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3579             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3580             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3581             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3582             execute synchronously, returning an already-completed task.</remarks>
3583         </member>
3584         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
3585             <summary>
3586             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
3587             </summary>
3588             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
3589             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3590             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3591             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3592             execute synchronously, returning an already-completed task.</remarks>
3593         </member>
3594         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
3595             <summary>
3596             Asynchronously writes a <see cref="T:System.Guid"/> value.
3597             </summary>
3598             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3599             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3600             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3601             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3602             execute synchronously, returning an already-completed task.</remarks>
3603         </member>
3604         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
3605             <summary>
3606             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
3607             </summary>
3608             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
3609             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3610             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3611             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3612             execute synchronously, returning an already-completed task.</remarks>
3613         </member>
3614         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
3615             <summary>
3616             Asynchronously writes a <see cref="T:System.Int32"/> value.
3617             </summary>
3618             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3619             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3620             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3621             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3622             execute synchronously, returning an already-completed task.</remarks>
3623         </member>
3624         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
3625             <summary>
3626             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
3627             </summary>
3628             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
3629             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3630             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3631             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3632             execute synchronously, returning an already-completed task.</remarks>
3633         </member>
3634         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
3635             <summary>
3636             Asynchronously writes a <see cref="T:System.Int64"/> value.
3637             </summary>
3638             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3639             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3640             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3641             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3642             execute synchronously, returning an already-completed task.</remarks>
3643         </member>
3644         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
3645             <summary>
3646             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
3647             </summary>
3648             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
3649             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3650             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3651             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3652             execute synchronously, returning an already-completed task.</remarks>
3653         </member>
3654         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
3655             <summary>
3656             Asynchronously writes a <see cref="T:System.Object"/> value.
3657             </summary>
3658             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3659             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3660             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3661             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3662             execute synchronously, returning an already-completed task.</remarks>
3663         </member>
3664         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
3665             <summary>
3666             Asynchronously writes a <see cref="T:System.SByte"/> value.
3667             </summary>
3668             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3669             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3670             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3671             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3672             execute synchronously, returning an already-completed task.</remarks>
3673         </member>
3674         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
3675             <summary>
3676             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
3677             </summary>
3678             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
3679             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3680             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3681             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3682             execute synchronously, returning an already-completed task.</remarks>
3683         </member>
3684         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
3685             <summary>
3686             Asynchronously writes a <see cref="T:System.Int16"/> value.
3687             </summary>
3688             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3689             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3690             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3691             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3692             execute synchronously, returning an already-completed task.</remarks>
3693         </member>
3694         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
3695             <summary>
3696             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
3697             </summary>
3698             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
3699             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3700             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3701             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3702             execute synchronously, returning an already-completed task.</remarks>
3703         </member>
3704         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
3705             <summary>
3706             Asynchronously writes a <see cref="T:System.String"/> value.
3707             </summary>
3708             <param name="value">The <see cref="T:System.String"/> value to write.</param>
3709             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3710             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3711             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3712             execute synchronously, returning an already-completed task.</remarks>
3713         </member>
3714         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
3715             <summary>
3716             Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
3717             </summary>
3718             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3719             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3720             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3721             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3722             execute synchronously, returning an already-completed task.</remarks>
3723         </member>
3724         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
3725             <summary>
3726             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
3727             </summary>
3728             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
3729             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3730             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3731             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3732             execute synchronously, returning an already-completed task.</remarks>
3733         </member>
3734         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
3735             <summary>
3736             Asynchronously writes a <see cref="T:System.UInt32"/> value.
3737             </summary>
3738             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3739             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3740             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3741             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3742             execute synchronously, returning an already-completed task.</remarks>
3743         </member>
3744         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
3745             <summary>
3746             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
3747             </summary>
3748             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
3749             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3750             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3751             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3752             execute synchronously, returning an already-completed task.</remarks>
3753         </member>
3754         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
3755             <summary>
3756             Asynchronously writes a <see cref="T:System.UInt64"/> value.
3757             </summary>
3758             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3759             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3760             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3761             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3762             execute synchronously, returning an already-completed task.</remarks>
3763         </member>
3764         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
3765             <summary>
3766             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
3767             </summary>
3768             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
3769             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3770             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3771             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3772             execute synchronously, returning an already-completed task.</remarks>
3773         </member>
3774         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
3775             <summary>
3776             Asynchronously writes a <see cref="T:System.Uri"/> value.
3777             </summary>
3778             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3779             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3780             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3781             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3782             execute synchronously, returning an already-completed task.</remarks>
3783         </member>
3784         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
3785             <summary>
3786             Asynchronously writes a <see cref="T:System.UInt16"/> value.
3787             </summary>
3788             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3789             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3790             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3791             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3792             execute synchronously, returning an already-completed task.</remarks>
3793         </member>
3794         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
3795             <summary>
3796             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
3797             </summary>
3798             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
3799             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3800             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3801             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3802             execute synchronously, returning an already-completed task.</remarks>
3803         </member>
3804         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
3805             <summary>
3806             Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
3807             </summary>
3808             <param name="text">Text to place inside the comment.</param>
3809             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3810             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3811             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3812             execute synchronously, returning an already-completed task.</remarks>
3813         </member>
3814         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
3815             <summary>
3816             Asynchronously writes the end of an array.
3817             </summary>
3818             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3819             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3820             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3821             execute synchronously, returning an already-completed task.</remarks>
3822         </member>
3823         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
3824             <summary>
3825             Asynchronously writes the end of a constructor.
3826             </summary>
3827             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3828             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3829             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3830             execute synchronously, returning an already-completed task.</remarks>
3831         </member>
3832         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
3833             <summary>
3834             Asynchronously writes the end of a JSON object.
3835             </summary>
3836             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3837             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3838             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3839             execute synchronously, returning an already-completed task.</remarks>
3840         </member>
3841         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
3842             <summary>
3843             Asynchronously writes raw JSON where a value is expected and updates the writer's state.
3844             </summary>
3845             <param name="json">The raw JSON to write.</param>
3846             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3847             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3848             <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3849             execute synchronously, returning an already-completed task.</remarks>
3850         </member>
3851         <member name="P:Newtonsoft.Json.JsonTextWriter.ArrayPool">
3852             <summary>
3853             Gets or sets the writer's character array pool.
3854             </summary>
3855         </member>
3856         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
3857             <summary>
3858             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"/>.
3859             </summary>
3860         </member>
3861         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
3862             <summary>
3863             Gets or sets which character to use to quote attribute values.
3864             </summary>
3865         </member>
3866         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
3867             <summary>
3868             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"/>.
3869             </summary>
3870         </member>
3871         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
3872             <summary>
3873             Gets or sets a value indicating whether object names will be surrounded with quotes.
3874             </summary>
3875         </member>
3876         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3877             <summary>
3878             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextWriter"/> class using the specified <see cref="T:System.IO.TextWriter"/>.
3879             </summary>
3880             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> to write to.</param>
3881         </member>
3882         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3883             <summary>
3884             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"/>.
3885             </summary>
3886         </member>
3887         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3888             <summary>
3889             Closes this writer.
3890             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.
3891             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
3892             </summary>
3893         </member>
3894         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3895             <summary>
3896             Writes the beginning of a JSON object.
3897             </summary>
3898         </member>
3899         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3900             <summary>
3901             Writes the beginning of a JSON array.
3902             </summary>
3903         </member>
3904         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3905             <summary>
3906             Writes the start of a constructor with the given name.
3907             </summary>
3908             <param name="name">The name of the constructor.</param>
3909         </member>
3910         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3911             <summary>
3912             Writes the specified end token.
3913             </summary>
3914             <param name="token">The end token to write.</param>
3915         </member>
3916         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3917             <summary>
3918             Writes the property name of a name/value pair on a JSON object.
3919             </summary>
3920             <param name="name">The name of the property.</param>
3921         </member>
3922         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
3923             <summary>
3924             Writes the property name of a name/value pair on a JSON object.
3925             </summary>
3926             <param name="name">The name of the property.</param>
3927             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3928         </member>
3929         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
3930             <summary>
3931             Writes indent characters.
3932             </summary>
3933         </member>
3934         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
3935             <summary>
3936             Writes the JSON value delimiter.
3937             </summary>
3938         </member>
3939         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
3940             <summary>
3941             Writes an indent space.
3942             </summary>
3943         </member>
3944         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
3945             <summary>
3946             Writes a <see cref="T:System.Object"/> value.
3947             An error will raised if the value cannot be written as a single JSON token.
3948             </summary>
3949             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3950         </member>
3951         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
3952             <summary>
3953             Writes a null value.
3954             </summary>
3955         </member>
3956         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
3957             <summary>
3958             Writes an undefined value.
3959             </summary>
3960         </member>
3961         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
3962             <summary>
3963             Writes raw JSON.
3964             </summary>
3965             <param name="json">The raw JSON to write.</param>
3966         </member>
3967         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
3968             <summary>
3969             Writes a <see cref="T:System.String"/> value.
3970             </summary>
3971             <param name="value">The <see cref="T:System.String"/> value to write.</param>
3972         </member>
3973         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
3974             <summary>
3975             Writes a <see cref="T:System.Int32"/> value.
3976             </summary>
3977             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3978         </member>
3979         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
3980             <summary>
3981             Writes a <see cref="T:System.UInt32"/> value.
3982             </summary>
3983             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3984         </member>
3985         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
3986             <summary>
3987             Writes a <see cref="T:System.Int64"/> value.
3988             </summary>
3989             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3990         </member>
3991         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
3992             <summary>
3993             Writes a <see cref="T:System.UInt64"/> value.
3994             </summary>
3995             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3996         </member>
3997         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
3998             <summary>
3999             Writes a <see cref="T:System.Single"/> value.
4000             </summary>
4001             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4002         </member>
4003         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4004             <summary>
4005             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
4006             </summary>
4007             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
4008         </member>
4009         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4010             <summary>
4011             Writes a <see cref="T:System.Double"/> value.
4012             </summary>
4013             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4014         </member>
4015         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4016             <summary>
4017             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
4018             </summary>
4019             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
4020         </member>
4021         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4022             <summary>
4023             Writes a <see cref="T:System.Boolean"/> value.
4024             </summary>
4025             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4026         </member>
4027         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4028             <summary>
4029             Writes a <see cref="T:System.Int16"/> value.
4030             </summary>
4031             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4032         </member>
4033         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4034             <summary>
4035             Writes a <see cref="T:System.UInt16"/> value.
4036             </summary>
4037             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4038         </member>
4039         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4040             <summary>
4041             Writes a <see cref="T:System.Char"/> value.
4042             </summary>
4043             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4044         </member>
4045         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4046             <summary>
4047             Writes a <see cref="T:System.Byte"/> value.
4048             </summary>
4049             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4050         </member>
4051         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4052             <summary>
4053             Writes a <see cref="T:System.SByte"/> value.
4054             </summary>
4055             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4056         </member>
4057         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4058             <summary>
4059             Writes a <see cref="T:System.Decimal"/> value.
4060             </summary>
4061             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4062         </member>
4063         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4064             <summary>
4065             Writes a <see cref="T:System.DateTime"/> value.
4066             </summary>
4067             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4068         </member>
4069         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4070             <summary>
4071             Writes a <see cref="T:System.Byte"/>[] value.
4072             </summary>
4073             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4074         </member>
4075         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4076             <summary>
4077             Writes a <see cref="T:System.DateTimeOffset"/> value.
4078             </summary>
4079             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4080         </member>
4081         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4082             <summary>
4083             Writes a <see cref="T:System.Guid"/> value.
4084             </summary>
4085             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4086         </member>
4087         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4088             <summary>
4089             Writes a <see cref="T:System.TimeSpan"/> value.
4090             </summary>
4091             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4092         </member>
4093         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4094             <summary>
4095             Writes a <see cref="T:System.Uri"/> value.
4096             </summary>
4097             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4098         </member>
4099         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4100             <summary>
4101             Writes a comment <c>/*...*/</c> containing the specified text. 
4102             </summary>
4103             <param name="text">Text to place inside the comment.</param>
4104         </member>
4105         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4106             <summary>
4107             Writes the given white space.
4108             </summary>
4109             <param name="ws">The string of white space characters.</param>
4110         </member>
4111         <member name="T:Newtonsoft.Json.JsonToken">
4112             <summary>
4113             Specifies the type of JSON token.
4114             </summary>
4115         </member>
4116         <member name="F:Newtonsoft.Json.JsonToken.None">
4117             <summary>
4118             This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a read method has not been called.
4119             </summary>
4120         </member>
4121         <member name="F:Newtonsoft.Json.JsonToken.StartObject">
4122             <summary>
4123             An object start token.
4124             </summary>
4125         </member>
4126         <member name="F:Newtonsoft.Json.JsonToken.StartArray">
4127             <summary>
4128             An array start token.
4129             </summary>
4130         </member>
4131         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
4132             <summary>
4133             A constructor start token.
4134             </summary>
4135         </member>
4136         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
4137             <summary>
4138             An object property name.
4139             </summary>
4140         </member>
4141         <member name="F:Newtonsoft.Json.JsonToken.Comment">
4142             <summary>
4143             A comment.
4144             </summary>
4145         </member>
4146         <member name="F:Newtonsoft.Json.JsonToken.Raw">
4147             <summary>
4148             Raw JSON.
4149             </summary>
4150         </member>
4151         <member name="F:Newtonsoft.Json.JsonToken.Integer">
4152             <summary>
4153             An integer.
4154             </summary>
4155         </member>
4156         <member name="F:Newtonsoft.Json.JsonToken.Float">
4157             <summary>
4158             A float.
4159             </summary>
4160         </member>
4161         <member name="F:Newtonsoft.Json.JsonToken.String">
4162             <summary>
4163             A string.
4164             </summary>
4165         </member>
4166         <member name="F:Newtonsoft.Json.JsonToken.Boolean">
4167             <summary>
4168             A boolean.
4169             </summary>
4170         </member>
4171         <member name="F:Newtonsoft.Json.JsonToken.Null">
4172             <summary>
4173             A null token.
4174             </summary>
4175         </member>
4176         <member name="F:Newtonsoft.Json.JsonToken.Undefined">
4177             <summary>
4178             An undefined token.
4179             </summary>
4180         </member>
4181         <member name="F:Newtonsoft.Json.JsonToken.EndObject">
4182             <summary>
4183             An object end token.
4184             </summary>
4185         </member>
4186         <member name="F:Newtonsoft.Json.JsonToken.EndArray">
4187             <summary>
4188             An array end token.
4189             </summary>
4190         </member>
4191         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
4192             <summary>
4193             A constructor end token.
4194             </summary>
4195         </member>
4196         <member name="F:Newtonsoft.Json.JsonToken.Date">
4197             <summary>
4198             A Date.
4199             </summary>
4200         </member>
4201         <member name="F:Newtonsoft.Json.JsonToken.Bytes">
4202             <summary>
4203             Byte data.
4204             </summary>
4205         </member>
4206         <member name="T:Newtonsoft.Json.JsonValidatingReader">
4207             <summary>
4208             <para>
4209             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
4210             </para>
4211             <note type="caution">
4212             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.
4213             </note>
4214             </summary>
4215         </member>
4216         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4217             <summary>
4218             Sets an event handler for receiving schema validation errors.
4219             </summary>
4220         </member>
4221         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4222             <summary>
4223             Gets the text value of the current JSON token.
4224             </summary>
4225             <value></value>
4226         </member>
4227         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4228             <summary>
4229             Gets the depth of the current token in the JSON document.
4230             </summary>
4231             <value>The depth of the current token in the JSON document.</value>
4232         </member>
4233         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4234             <summary>
4235             Gets the path of the current JSON token. 
4236             </summary>
4237         </member>
4238         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4239             <summary>
4240             Gets the quotation mark character used to enclose the value of a string.
4241             </summary>
4242             <value></value>
4243         </member>
4244         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4245             <summary>
4246             Gets the type of the current JSON token.
4247             </summary>
4248             <value></value>
4249         </member>
4250         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4251             <summary>
4252             Gets the .NET type for the current JSON token.
4253             </summary>
4254             <value></value>
4255         </member>
4256         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
4257             <summary>
4258             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
4259             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
4260             </summary>
4261             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
4262         </member>
4263         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4264             <summary>
4265             Gets or sets the schema.
4266             </summary>
4267             <value>The schema.</value>
4268         </member>
4269         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4270             <summary>
4271             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4272             </summary>
4273             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4274         </member>
4275         <member name="M:Newtonsoft.Json.JsonValidatingReader.Close">
4276             <summary>
4277             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
4278             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.
4279             </summary>
4280         </member>
4281         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
4282             <summary>
4283             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"/>.
4284             </summary>
4285             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.</returns>
4286         </member>
4287         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4288             <summary>
4289             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Byte"/>[].
4290             </summary>
4291             <returns>
4292             A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null.
4293             </returns>
4294         </member>
4295         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4296             <summary>
4297             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"/>.
4298             </summary>
4299             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.</returns>
4300         </member>
4301         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDouble">
4302             <summary>
4303             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"/>.
4304             </summary>
4305             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.</returns>
4306         </member>
4307         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBoolean">
4308             <summary>
4309             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"/>.
4310             </summary>
4311             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.</returns>
4312         </member>
4313         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4314             <summary>
4315             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.String"/>.
4316             </summary>
4317             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4318         </member>
4319         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4320             <summary>
4321             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"/>.
4322             </summary>
4323             <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>
4324         </member>
4325         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
4326             <summary>
4327             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"/>.
4328             </summary>
4329             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.</returns>
4330         </member>
4331         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4332             <summary>
4333             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/>.
4334             </summary>
4335             <returns>
4336             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
4337             </returns>
4338         </member>
4339         <member name="T:Newtonsoft.Json.JsonWriter">
4340             <summary>
4341             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
4342             </summary>
4343         </member>
4344         <member name="M:Newtonsoft.Json.JsonWriter.CloseAsync(System.Threading.CancellationToken)">
4345             <summary>
4346             Asynchronously closes this writer.
4347             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
4348             </summary>
4349             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4350             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4351             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4352             classes can override this behaviour for true asychronousity.</remarks>
4353         </member>
4354         <member name="M:Newtonsoft.Json.JsonWriter.FlushAsync(System.Threading.CancellationToken)">
4355             <summary>
4356             Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
4357             </summary>
4358             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4359             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4360             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4361             classes can override this behaviour for true asychronousity.</remarks>
4362         </member>
4363         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
4364             <summary>
4365             Asynchronously writes the specified end token.
4366             </summary>
4367             <param name="token">The end token to write.</param>
4368             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4369             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4370             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4371             classes can override this behaviour for true asychronousity.</remarks>
4372         </member>
4373         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentAsync(System.Threading.CancellationToken)">
4374             <summary>
4375             Asynchronously writes indent characters.
4376             </summary>
4377             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4378             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4379             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4380             classes can override this behaviour for true asychronousity.</remarks>
4381         </member>
4382         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
4383             <summary>
4384             Asynchronously writes the JSON value delimiter.
4385             </summary>
4386             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4387             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4388             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4389             classes can override this behaviour for true asychronousity.</remarks>
4390         </member>
4391         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
4392             <summary>
4393             Asynchronously writes an indent space.
4394             </summary>
4395             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4396             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4397             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4398             classes can override this behaviour for true asychronousity.</remarks>
4399         </member>
4400         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
4401             <summary>
4402             Asynchronously writes raw JSON without changing the writer's state.
4403             </summary>
4404             <param name="json">The raw JSON to write.</param>
4405             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4406             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4407             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4408             classes can override this behaviour for true asychronousity.</remarks>
4409         </member>
4410         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(System.Threading.CancellationToken)">
4411             <summary>
4412             Asynchronously writes the end of the current JSON object or array.
4413             </summary>
4414             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4415             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4416             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4417             classes can override this behaviour for true asychronousity.</remarks>
4418         </member>
4419         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
4420             <summary>
4421             Asynchronously writes the end of an array.
4422             </summary>
4423             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4424             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4425             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4426             classes can override this behaviour for true asychronousity.</remarks>
4427         </member>
4428         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
4429             <summary>
4430             Asynchronously writes the end of a constructor.
4431             </summary>
4432             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4433             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4434             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4435             classes can override this behaviour for true asychronousity.</remarks>
4436         </member>
4437         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
4438             <summary>
4439             Asynchronously writes the end of a JSON object.
4440             </summary>
4441             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4442             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4443             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4444             classes can override this behaviour for true asychronousity.</remarks>
4445         </member>
4446         <member name="M:Newtonsoft.Json.JsonWriter.WriteNullAsync(System.Threading.CancellationToken)">
4447             <summary>
4448             Asynchronously writes a null value.
4449             </summary>
4450             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4451             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4452             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4453             classes can override this behaviour for true asychronousity.</remarks>
4454         </member>
4455         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
4456             <summary>
4457             Asynchronously writes the property name of a name/value pair of a JSON object.
4458             </summary>
4459             <param name="name">The name of the property.</param>
4460             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4461             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4462             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4463             classes can override this behaviour for true asychronousity.</remarks>
4464         </member>
4465         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
4466             <summary>
4467             Asynchronously writes the property name of a name/value pair of a JSON object.
4468             </summary>
4469             <param name="name">The name of the property.</param>
4470             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4471             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4472             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4473             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4474             classes can override this behaviour for true asychronousity.</remarks>
4475         </member>
4476         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
4477             <summary>
4478             Asynchronously writes the beginning of a JSON array.
4479             </summary>
4480             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4481             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4482             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4483             classes can override this behaviour for true asychronousity.</remarks>
4484         </member>
4485         <member name="M:Newtonsoft.Json.JsonWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
4486             <summary>
4487             Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
4488             </summary>
4489             <param name="text">Text to place inside the comment.</param>
4490             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4491             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4492             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4493             classes can override this behaviour for true asychronousity.</remarks>
4494         </member>
4495         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
4496             <summary>
4497             Asynchronously writes raw JSON where a value is expected and updates the writer's state.
4498             </summary>
4499             <param name="json">The raw JSON to write.</param>
4500             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4501             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4502             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4503             classes can override this behaviour for true asychronousity.</remarks>
4504         </member>
4505         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
4506             <summary>
4507             Asynchronously writes the start of a constructor with the given name.
4508             </summary>
4509             <param name="name">The name of the constructor.</param>
4510             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4511             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4512             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4513             classes can override this behaviour for true asychronousity.</remarks>
4514         </member>
4515         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
4516             <summary>
4517             Asynchronously writes the beginning of a JSON object.
4518             </summary>
4519             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4520             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4521             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4522             classes can override this behaviour for true asychronousity.</remarks>
4523         </member>
4524         <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
4525             <summary>
4526             Asynchronously writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
4527             </summary>
4528             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
4529             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4530             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4531             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4532             classes can override this behaviour for true asychronousity.</remarks>
4533         </member>
4534         <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonReader,System.Boolean,System.Threading.CancellationToken)">
4535             <summary>
4536             Asynchronously writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
4537             </summary>
4538             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
4539             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
4540             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4541             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4542             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4543             classes can override this behaviour for true asychronousity.</remarks>
4544         </member>
4545         <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
4546             <summary>
4547             Asynchronously writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
4548             </summary>
4549             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
4550             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4551             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4552             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4553             classes can override this behaviour for true asychronousity.</remarks>
4554         </member>
4555         <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonToken,System.Object,System.Threading.CancellationToken)">
4556             <summary>
4557             Asynchronously writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
4558             </summary>
4559             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
4560             <param name="value">
4561             The value to write.
4562             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"/>.
4563             <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"/>.
4564             </param>
4565             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4566             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4567             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4568             classes can override this behaviour for true asychronousity.</remarks>
4569         </member>
4570         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
4571             <summary>
4572             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
4573             </summary>
4574             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
4575             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4576             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4577             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4578             classes can override this behaviour for true asychronousity.</remarks>
4579         </member>
4580         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
4581             <summary>
4582             Asynchronously writes a <see cref="T:System.Boolean"/> value.
4583             </summary>
4584             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4585             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4586             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4587             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4588             classes can override this behaviour for true asychronousity.</remarks>
4589         </member>
4590         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
4591             <summary>
4592             Asynchronously writes a <see cref="T:System.Byte"/> value.
4593             </summary>
4594             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4595             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4596             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4597             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4598             classes can override this behaviour for true asychronousity.</remarks>
4599         </member>
4600         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
4601             <summary>
4602             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
4603             </summary>
4604             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
4605             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4606             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4607             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4608             classes can override this behaviour for true asychronousity.</remarks>
4609         </member>
4610         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
4611             <summary>
4612             Asynchronously writes a <see cref="T:System.Byte"/>[] value.
4613             </summary>
4614             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4615             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4616             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4617             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4618             classes can override this behaviour for true asychronousity.</remarks>
4619         </member>
4620         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
4621             <summary>
4622             Asynchronously writes a <see cref="T:System.Char"/> value.
4623             </summary>
4624             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4625             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4626             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4627             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4628             classes can override this behaviour for true asychronousity.</remarks>
4629         </member>
4630         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
4631             <summary>
4632             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
4633             </summary>
4634             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
4635             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4636             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4637             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4638             classes can override this behaviour for true asychronousity.</remarks>
4639         </member>
4640         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
4641             <summary>
4642             Asynchronously writes a <see cref="T:System.DateTime"/> value.
4643             </summary>
4644             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4645             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4646             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4647             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4648             classes can override this behaviour for true asychronousity.</remarks>
4649         </member>
4650         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
4651             <summary>
4652             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
4653             </summary>
4654             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
4655             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4656             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4657             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4658             classes can override this behaviour for true asychronousity.</remarks>
4659         </member>
4660         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
4661             <summary>
4662             Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
4663             </summary>
4664             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4665             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4666             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4667             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4668             classes can override this behaviour for true asychronousity.</remarks>
4669         </member>
4670         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
4671             <summary>
4672             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
4673             </summary>
4674             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
4675             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4676             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4677             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4678             classes can override this behaviour for true asychronousity.</remarks>
4679         </member>
4680         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
4681             <summary>
4682             Asynchronously writes a <see cref="T:System.Decimal"/> value.
4683             </summary>
4684             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4685             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4686             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4687             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4688             classes can override this behaviour for true asychronousity.</remarks>
4689         </member>
4690         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
4691             <summary>
4692             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
4693             </summary>
4694             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
4695             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4696             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4697             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4698             classes can override this behaviour for true asychronousity.</remarks>
4699         </member>
4700         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
4701             <summary>
4702             Asynchronously writes a <see cref="T:System.Double"/> value.
4703             </summary>
4704             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4705             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4706             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4707             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4708             classes can override this behaviour for true asychronousity.</remarks>
4709         </member>
4710         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
4711             <summary>
4712             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
4713             </summary>
4714             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
4715             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4716             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4717             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4718             classes can override this behaviour for true asychronousity.</remarks>
4719         </member>
4720         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
4721             <summary>
4722             Asynchronously writes a <see cref="T:System.Single"/> value.
4723             </summary>
4724             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4725             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4726             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4727             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4728             classes can override this behaviour for true asychronousity.</remarks>
4729         </member>
4730         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
4731             <summary>
4732             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
4733             </summary>
4734             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
4735             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4736             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4737             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4738             classes can override this behaviour for true asychronousity.</remarks>
4739         </member>
4740         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
4741             <summary>
4742             Asynchronously writes a <see cref="T:System.Guid"/> value.
4743             </summary>
4744             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4745             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4746             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4747             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4748             classes can override this behaviour for true asychronousity.</remarks>
4749         </member>
4750         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
4751             <summary>
4752             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
4753             </summary>
4754             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
4755             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4756             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4757             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4758             classes can override this behaviour for true asychronousity.</remarks>
4759         </member>
4760         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
4761             <summary>
4762             Asynchronously writes a <see cref="T:System.Int32"/> value.
4763             </summary>
4764             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4765             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4766             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4767             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4768             classes can override this behaviour for true asychronousity.</remarks>
4769         </member>
4770         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
4771             <summary>
4772             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
4773             </summary>
4774             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
4775             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4776             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4777             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4778             classes can override this behaviour for true asychronousity.</remarks>
4779         </member>
4780         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
4781             <summary>
4782             Asynchronously writes a <see cref="T:System.Int64"/> value.
4783             </summary>
4784             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4785             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4786             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4787             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4788             classes can override this behaviour for true asychronousity.</remarks>
4789         </member>
4790         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
4791             <summary>
4792             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
4793             </summary>
4794             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
4795             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4796             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4797             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4798             classes can override this behaviour for true asychronousity.</remarks>
4799         </member>
4800         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
4801             <summary>
4802             Asynchronously writes a <see cref="T:System.Object"/> value.
4803             </summary>
4804             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4805             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4806             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4807             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4808             classes can override this behaviour for true asychronousity.</remarks>
4809         </member>
4810         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
4811             <summary>
4812             Asynchronously writes a <see cref="T:System.SByte"/> value.
4813             </summary>
4814             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4815             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4816             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4817             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4818             classes can override this behaviour for true asychronousity.</remarks>
4819         </member>
4820         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
4821             <summary>
4822             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
4823             </summary>
4824             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
4825             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4826             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4827             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4828             classes can override this behaviour for true asychronousity.</remarks>
4829         </member>
4830         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
4831             <summary>
4832             Asynchronously writes a <see cref="T:System.Int16"/> value.
4833             </summary>
4834             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4835             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4836             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4837             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4838             classes can override this behaviour for true asychronousity.</remarks>
4839         </member>
4840         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
4841             <summary>
4842             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
4843             </summary>
4844             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
4845             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4846             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4847             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4848             classes can override this behaviour for true asychronousity.</remarks>
4849         </member>
4850         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
4851             <summary>
4852             Asynchronously writes a <see cref="T:System.String"/> value.
4853             </summary>
4854             <param name="value">The <see cref="T:System.String"/> value to write.</param>
4855             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4856             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4857             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4858             classes can override this behaviour for true asychronousity.</remarks>
4859         </member>
4860         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
4861             <summary>
4862             Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
4863             </summary>
4864             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4865             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4866             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4867             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4868             classes can override this behaviour for true asychronousity.</remarks>
4869         </member>
4870         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
4871             <summary>
4872             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
4873             </summary>
4874             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
4875             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4876             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4877             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4878             classes can override this behaviour for true asychronousity.</remarks>
4879         </member>
4880         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
4881             <summary>
4882             Asynchronously writes a <see cref="T:System.UInt32"/> value.
4883             </summary>
4884             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4885             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4886             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4887             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4888             classes can override this behaviour for true asychronousity.</remarks>
4889         </member>
4890         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
4891             <summary>
4892             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
4893             </summary>
4894             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
4895             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4896             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4897             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4898             classes can override this behaviour for true asychronousity.</remarks>
4899         </member>
4900         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
4901             <summary>
4902             Asynchronously writes a <see cref="T:System.UInt64"/> value.
4903             </summary>
4904             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4905             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4906             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4907             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4908             classes can override this behaviour for true asychronousity.</remarks>
4909         </member>
4910         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
4911             <summary>
4912             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
4913             </summary>
4914             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
4915             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4916             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4917             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4918             classes can override this behaviour for true asychronousity.</remarks>
4919         </member>
4920         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
4921             <summary>
4922             Asynchronously writes a <see cref="T:System.Uri"/> value.
4923             </summary>
4924             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4925             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4926             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4927             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4928             classes can override this behaviour for true asychronousity.</remarks>
4929         </member>
4930         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
4931             <summary>
4932             Asynchronously writes a <see cref="T:System.UInt16"/> value.
4933             </summary>
4934             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4935             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4936             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4937             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4938             classes can override this behaviour for true asychronousity.</remarks>
4939         </member>
4940         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
4941             <summary>
4942             Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
4943             </summary>
4944             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
4945             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4946             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4947             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4948             classes can override this behaviour for true asychronousity.</remarks>
4949         </member>
4950         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
4951             <summary>
4952             Asynchronously writes an undefined value.
4953             </summary>
4954             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4955             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4956             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4957             classes can override this behaviour for true asychronousity.</remarks>
4958         </member>
4959         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
4960             <summary>
4961             Asynchronously writes the given white space.
4962             </summary>
4963             <param name="ws">The string of white space characters.</param>
4964             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4965             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4966             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4967             classes can override this behaviour for true asychronousity.</remarks>
4968         </member>
4969         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteStateAsync(Newtonsoft.Json.JsonToken,System.Object,System.Threading.CancellationToken)">
4970             <summary>
4971             Asynchronously ets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4972             </summary>
4973             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
4974             <param name="value">The value being written.</param>
4975             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4976             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4977             <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4978             classes can override this behaviour for true asychronousity.</remarks>
4979         </member>
4980         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
4981             <summary>
4982             Gets or sets a value indicating whether the destination should be closed when this writer is closed.
4983             </summary>
4984             <value>
4985             <c>true</c> to close the destination when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
4986             </value>
4987         </member>
4988         <member name="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose">
4989             <summary>
4990             Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
4991             </summary>
4992             <value>
4993             <c>true</c> to auto-complete the JSON when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
4994             </value>
4995         </member>
4996         <member name="P:Newtonsoft.Json.JsonWriter.Top">
4997             <summary>
4998             Gets the top.
4999             </summary>
5000             <value>The top.</value>
5001         </member>
5002         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
5003             <summary>
5004             Gets the state of the writer.
5005             </summary>
5006         </member>
5007         <member name="P:Newtonsoft.Json.JsonWriter.Path">
5008             <summary>
5009             Gets the path of the writer. 
5010             </summary>
5011         </member>
5012         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
5013             <summary>
5014             Gets or sets a value indicating how JSON text output should be formatted.
5015             </summary>
5016         </member>
5017         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
5018             <summary>
5019             Gets or sets how dates are written to JSON text.
5020             </summary>
5021         </member>
5022         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
5023             <summary>
5024             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when writing JSON text.
5025             </summary>
5026         </member>
5027         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
5028             <summary>
5029             Gets or sets how strings are escaped when writing JSON text.
5030             </summary>
5031         </member>
5032         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
5033             <summary>
5034             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5035             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5036             are written to JSON text.
5037             </summary>
5038         </member>
5039         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
5040             <summary>
5041             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text.
5042             </summary>
5043         </member>
5044         <member name="P:Newtonsoft.Json.JsonWriter.Culture">
5045             <summary>
5046             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5047             </summary>
5048         </member>
5049         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
5050             <summary>
5051             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriter"/> class.
5052             </summary>
5053         </member>
5054         <member name="M:Newtonsoft.Json.JsonWriter.Flush">
5055             <summary>
5056             Flushes whatever is in the buffer to the destination and also flushes the destination.
5057             </summary>
5058         </member>
5059         <member name="M:Newtonsoft.Json.JsonWriter.Close">
5060             <summary>
5061             Closes this writer.
5062             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
5063             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
5064             </summary>
5065         </member>
5066         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
5067             <summary>
5068             Writes the beginning of a JSON object.
5069             </summary>
5070         </member>
5071         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
5072             <summary>
5073             Writes the end of a JSON object.
5074             </summary>
5075         </member>
5076         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
5077             <summary>
5078             Writes the beginning of a JSON array.
5079             </summary>
5080         </member>
5081         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
5082             <summary>
5083             Writes the end of an array.
5084             </summary>
5085         </member>
5086         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
5087             <summary>
5088             Writes the start of a constructor with the given name.
5089             </summary>
5090             <param name="name">The name of the constructor.</param>
5091         </member>
5092         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
5093             <summary>
5094             Writes the end constructor.
5095             </summary>
5096         </member>
5097         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
5098             <summary>
5099             Writes the property name of a name/value pair of a JSON object.
5100             </summary>
5101             <param name="name">The name of the property.</param>
5102         </member>
5103         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
5104             <summary>
5105             Writes the property name of a name/value pair of a JSON object.
5106             </summary>
5107             <param name="name">The name of the property.</param>
5108             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
5109         </member>
5110         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
5111             <summary>
5112             Writes the end of the current JSON object or array.
5113             </summary>
5114         </member>
5115         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
5116             <summary>
5117             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
5118             </summary>
5119             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
5120         </member>
5121         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
5122             <summary>
5123             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
5124             </summary>
5125             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
5126             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
5127         </member>
5128         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
5129             <summary>
5130             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
5131             </summary>
5132             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
5133             <param name="value">
5134             The value to write.
5135             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"/>.
5136             <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"/>.
5137             </param>
5138         </member>
5139         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
5140             <summary>
5141             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
5142             </summary>
5143             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
5144         </member>
5145         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5146             <summary>
5147             Writes the specified end token.
5148             </summary>
5149             <param name="token">The end token to write.</param>
5150         </member>
5151         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
5152             <summary>
5153             Writes indent characters.
5154             </summary>
5155         </member>
5156         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
5157             <summary>
5158             Writes the JSON value delimiter.
5159             </summary>
5160         </member>
5161         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
5162             <summary>
5163             Writes an indent space.
5164             </summary>
5165         </member>
5166         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
5167             <summary>
5168             Writes a null value.
5169             </summary>
5170         </member>
5171         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
5172             <summary>
5173             Writes an undefined value.
5174             </summary>
5175         </member>
5176         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
5177             <summary>
5178             Writes raw JSON without changing the writer's state.
5179             </summary>
5180             <param name="json">The raw JSON to write.</param>
5181         </member>
5182         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
5183             <summary>
5184             Writes raw JSON where a value is expected and updates the writer's state.
5185             </summary>
5186             <param name="json">The raw JSON to write.</param>
5187         </member>
5188         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
5189             <summary>
5190             Writes a <see cref="T:System.String"/> value.
5191             </summary>
5192             <param name="value">The <see cref="T:System.String"/> value to write.</param>
5193         </member>
5194         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
5195             <summary>
5196             Writes a <see cref="T:System.Int32"/> value.
5197             </summary>
5198             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5199         </member>
5200         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
5201             <summary>
5202             Writes a <see cref="T:System.UInt32"/> value.
5203             </summary>
5204             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5205         </member>
5206         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
5207             <summary>
5208             Writes a <see cref="T:System.Int64"/> value.
5209             </summary>
5210             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5211         </member>
5212         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
5213             <summary>
5214             Writes a <see cref="T:System.UInt64"/> value.
5215             </summary>
5216             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5217         </member>
5218         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
5219             <summary>
5220             Writes a <see cref="T:System.Single"/> value.
5221             </summary>
5222             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5223         </member>
5224         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
5225             <summary>
5226             Writes a <see cref="T:System.Double"/> value.
5227             </summary>
5228             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5229         </member>
5230         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
5231             <summary>
5232             Writes a <see cref="T:System.Boolean"/> value.
5233             </summary>
5234             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5235         </member>
5236         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
5237             <summary>
5238             Writes a <see cref="T:System.Int16"/> value.
5239             </summary>
5240             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5241         </member>
5242         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
5243             <summary>
5244             Writes a <see cref="T:System.UInt16"/> value.
5245             </summary>
5246             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5247         </member>
5248         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
5249             <summary>
5250             Writes a <see cref="T:System.Char"/> value.
5251             </summary>
5252             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5253         </member>
5254         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
5255             <summary>
5256             Writes a <see cref="T:System.Byte"/> value.
5257             </summary>
5258             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5259         </member>
5260         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
5261             <summary>
5262             Writes a <see cref="T:System.SByte"/> value.
5263             </summary>
5264             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5265         </member>
5266         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
5267             <summary>
5268             Writes a <see cref="T:System.Decimal"/> value.
5269             </summary>
5270             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5271         </member>
5272         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
5273             <summary>
5274             Writes a <see cref="T:System.DateTime"/> value.
5275             </summary>
5276             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5277         </member>
5278         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
5279             <summary>
5280             Writes a <see cref="T:System.DateTimeOffset"/> value.
5281             </summary>
5282             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5283         </member>
5284         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
5285             <summary>
5286             Writes a <see cref="T:System.Guid"/> value.
5287             </summary>
5288             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5289         </member>
5290         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
5291             <summary>
5292             Writes a <see cref="T:System.TimeSpan"/> value.
5293             </summary>
5294             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5295         </member>
5296         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
5297             <summary>
5298             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
5299             </summary>
5300             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
5301         </member>
5302         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
5303             <summary>
5304             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
5305             </summary>
5306             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
5307         </member>
5308         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
5309             <summary>
5310             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
5311             </summary>
5312             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
5313         </member>
5314         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
5315             <summary>
5316             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
5317             </summary>
5318             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
5319         </member>
5320         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
5321             <summary>
5322             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
5323             </summary>
5324             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
5325         </member>
5326         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
5327             <summary>
5328             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
5329             </summary>
5330             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
5331         </member>
5332         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
5333             <summary>
5334             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
5335             </summary>
5336             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
5337         </member>
5338         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
5339             <summary>
5340             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
5341             </summary>
5342             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
5343         </member>
5344         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
5345             <summary>
5346             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
5347             </summary>
5348             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
5349         </member>
5350         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
5351             <summary>
5352             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
5353             </summary>
5354             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
5355         </member>
5356         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
5357             <summary>
5358             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
5359             </summary>
5360             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
5361         </member>
5362         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
5363             <summary>
5364             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
5365             </summary>
5366             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
5367         </member>
5368         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
5369             <summary>
5370             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
5371             </summary>
5372             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
5373         </member>
5374         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
5375             <summary>
5376             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
5377             </summary>
5378             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
5379         </member>
5380         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
5381             <summary>
5382             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
5383             </summary>
5384             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
5385         </member>
5386         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
5387             <summary>
5388             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
5389             </summary>
5390             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
5391         </member>
5392         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
5393             <summary>
5394             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
5395             </summary>
5396             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
5397         </member>
5398         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
5399             <summary>
5400             Writes a <see cref="T:System.Byte"/>[] value.
5401             </summary>
5402             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
5403         </member>
5404         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
5405             <summary>
5406             Writes a <see cref="T:System.Uri"/> value.
5407             </summary>
5408             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5409         </member>
5410         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
5411             <summary>
5412             Writes a <see cref="T:System.Object"/> value.
5413             An error will raised if the value cannot be written as a single JSON token.
5414             </summary>
5415             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5416         </member>
5417         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
5418             <summary>
5419             Writes a comment <c>/*...*/</c> containing the specified text.
5420             </summary>
5421             <param name="text">Text to place inside the comment.</param>
5422         </member>
5423         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
5424             <summary>
5425             Writes the given white space.
5426             </summary>
5427             <param name="ws">The string of white space characters.</param>
5428         </member>
5429         <member name="M:Newtonsoft.Json.JsonWriter.Dispose(System.Boolean)">
5430             <summary>
5431             Releases unmanaged and - optionally - managed resources.
5432             </summary>
5433             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
5434         </member>
5435         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
5436             <summary>
5437             Sets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5438             </summary>
5439             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
5440             <param name="value">The value being written.</param>
5441         </member>
5442         <member name="T:Newtonsoft.Json.JsonWriterException">
5443             <summary>
5444             The exception thrown when an error occurs while writing JSON text.
5445             </summary>
5446         </member>
5447         <member name="P:Newtonsoft.Json.JsonWriterException.Path">
5448             <summary>
5449             Gets the path to the JSON where the error occurred.
5450             </summary>
5451             <value>The path to the JSON where the error occurred.</value>
5452         </member>
5453         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
5454             <summary>
5455             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5456             </summary>
5457         </member>
5458         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
5459             <summary>
5460             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5461             with a specified error message.
5462             </summary>
5463             <param name="message">The error message that explains the reason for the exception.</param>
5464         </member>
5465         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
5466             <summary>
5467             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5468             with a specified error message and a reference to the inner exception that is the cause of this exception.
5469             </summary>
5470             <param name="message">The error message that explains the reason for the exception.</param>
5471             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
5472         </member>
5473         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.String,System.Exception)">
5474             <summary>
5475             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5476             with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception.
5477             </summary>
5478             <param name="message">The error message that explains the reason for the exception.</param>
5479             <param name="path">The path to the JSON where the error occurred.</param>
5480             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
5481         </member>
5482         <member name="T:Newtonsoft.Json.Linq.CommentHandling">
5483             <summary>
5484             Specifies how JSON comments are handled when loading JSON.
5485             </summary>
5486         </member>
5487         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
5488             <summary>
5489             Ignore comments.
5490             </summary>
5491         </member>
5492         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
5493             <summary>
5494             Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
5495             </summary>
5496         </member>
5497         <member name="T:Newtonsoft.Json.Linq.LineInfoHandling">
5498             <summary>
5499             Specifies how line information is handled when loading JSON.
5500             </summary>
5501         </member>
5502         <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Ignore">
5503             <summary>
5504             Ignore line information.
5505             </summary>
5506         </member>
5507         <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Load">
5508             <summary>
5509             Load line information.
5510             </summary>
5511         </member>
5512         <member name="T:Newtonsoft.Json.Linq.Extensions">
5513             <summary>
5514             Contains the LINQ to JSON extension methods.
5515             </summary>
5516         </member>
5517         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5518             <summary>
5519             Returns a collection of tokens that contains the ancestors of every token in the source collection.
5520             </summary>
5521             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5522             <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>
5523             <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>
5524         </member>
5525         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5526             <summary>
5527             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
5528             </summary>
5529             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5530             <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>
5531             <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>
5532         </member>
5533         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5534             <summary>
5535             Returns a collection of tokens that contains the descendants of every token in the source collection.
5536             </summary>
5537             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5538             <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>
5539             <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>
5540         </member>
5541         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5542             <summary>
5543             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
5544             </summary>
5545             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5546             <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>
5547             <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>
5548         </member>
5549         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5550             <summary>
5551             Returns a collection of child properties of every object in the source collection.
5552             </summary>
5553             <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>
5554             <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>
5555         </member>
5556         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5557             <summary>
5558             Returns a collection of child values of every object in the source collection with the given key.
5559             </summary>
5560             <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>
5561             <param name="key">The token key.</param>
5562             <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>
5563         </member>
5564         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5565             <summary>
5566             Returns a collection of child values of every object in the source collection.
5567             </summary>
5568             <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>
5569             <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>
5570         </member>
5571         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5572             <summary>
5573             Returns a collection of converted child values of every object in the source collection with the given key.
5574             </summary>
5575             <typeparam name="U">The type to convert the values to.</typeparam>
5576             <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>
5577             <param name="key">The token key.</param>
5578             <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>
5579         </member>
5580         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5581             <summary>
5582             Returns a collection of converted child values of every object in the source collection.
5583             </summary>
5584             <typeparam name="U">The type to convert the values to.</typeparam>
5585             <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>
5586             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5587         </member>
5588         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5589             <summary>
5590             Converts the value.
5591             </summary>
5592             <typeparam name="U">The type to convert the value to.</typeparam>
5593             <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>
5594             <returns>A converted value.</returns>
5595         </member>
5596         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5597             <summary>
5598             Converts the value.
5599             </summary>
5600             <typeparam name="T">The source collection type.</typeparam>
5601             <typeparam name="U">The type to convert the value to.</typeparam>
5602             <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>
5603             <returns>A converted value.</returns>
5604         </member>
5605         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5606             <summary>
5607             Returns a collection of child tokens of every array in the source collection.
5608             </summary>
5609             <typeparam name="T">The source collection type.</typeparam>
5610             <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>
5611             <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>
5612         </member>
5613         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5614             <summary>
5615             Returns a collection of converted child tokens of every array in the source collection.
5616             </summary>
5617             <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>
5618             <typeparam name="U">The type to convert the values to.</typeparam>
5619             <typeparam name="T">The source collection type.</typeparam>
5620             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5621         </member>
5622         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5623             <summary>
5624             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5625             </summary>
5626             <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>
5627             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5628         </member>
5629         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5630             <summary>
5631             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5632             </summary>
5633             <typeparam name="T">The source collection type.</typeparam>
5634             <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>
5635             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5636         </member>
5637         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
5638             <summary>
5639             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5640             </summary>
5641             <typeparam name="T">The type of token.</typeparam>
5642         </member>
5643         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
5644             <summary>
5645             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5646             </summary>
5647             <value></value>
5648         </member>
5649         <member name="T:Newtonsoft.Json.Linq.JArray">
5650             <summary>
5651             Represents a JSON array.
5652             </summary>
5653             <example>
5654               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5655             </example>
5656         </member>
5657         <member name="M:Newtonsoft.Json.Linq.JArray.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
5658             <summary>
5659             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
5660             </summary>
5661             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5662             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
5663             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5664             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
5665         </member>
5666         <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
5667             <summary>
5668             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5669             </summary>
5670             <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"/>.
5671             If this is <c>null</c>, default load settings will be used.</param>
5672             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5673             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
5674         </member>
5675         <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
5676             <summary>
5677             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5678             </summary>
5679             <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>
5680             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5681             If this is <c>null</c>, default load settings will be used.</param>
5682             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5683             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
5684         </member>
5685         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
5686             <summary>
5687             Gets the container's children tokens.
5688             </summary>
5689             <value>The container's children tokens.</value>
5690         </member>
5691         <member name="P:Newtonsoft.Json.Linq.JArray.Type">
5692             <summary>
5693             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5694             </summary>
5695             <value>The type.</value>
5696         </member>
5697         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
5698             <summary>
5699             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
5700             </summary>
5701         </member>
5702         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
5703             <summary>
5704             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
5705             </summary>
5706             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
5707         </member>
5708         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
5709             <summary>
5710             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5711             </summary>
5712             <param name="content">The contents of the array.</param>
5713         </member>
5714         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
5715             <summary>
5716             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
5717             </summary>
5718             <param name="content">The contents of the array.</param>
5719         </member>
5720         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
5721             <summary>
5722             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5723             </summary>
5724             <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>
5725             <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>
5726         </member>
5727         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
5728             <summary>
5729             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
5730             </summary>
5731             <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>
5732             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5733             If this is <c>null</c>, default load settings will be used.</param>
5734             <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>
5735         </member>
5736         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
5737             <summary>
5738             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
5739             </summary>
5740             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5741             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
5742             <example>
5743               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5744             </example>
5745         </member>
5746         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
5747             <summary>
5748             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
5749             </summary>
5750             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
5751             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5752             If this is <c>null</c>, default load settings will be used.</param>
5753             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
5754             <example>
5755               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5756             </example>
5757         </member>
5758         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
5759             <summary>
5760             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5761             </summary>
5762             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5763             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
5764         </member>
5765         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
5766             <summary>
5767             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
5768             </summary>
5769             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5770             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
5771             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
5772         </member>
5773         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5774             <summary>
5775             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5776             </summary>
5777             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5778             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5779         </member>
5780         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
5781             <summary>
5782             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5783             </summary>
5784             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5785         </member>
5786         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
5787             <summary>
5788             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
5789             </summary>
5790             <value></value>
5791         </member>
5792         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
5793             <summary>
5794             Determines the index of a specific item in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5795             </summary>
5796             <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5797             <returns>
5798             The index of <paramref name="item"/> if found in the list; otherwise, -1.
5799             </returns>
5800         </member>
5801         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
5802             <summary>
5803             Inserts an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/> at the specified index.
5804             </summary>
5805             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
5806             <param name="item">The object to insert into the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5807             <exception cref="T:System.ArgumentOutOfRangeException">
5808             <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5809             </exception>
5810         </member>
5811         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
5812             <summary>
5813             Removes the <see cref="T:Newtonsoft.Json.Linq.JArray"/> item at the specified index.
5814             </summary>
5815             <param name="index">The zero-based index of the item to remove.</param>
5816             <exception cref="T:System.ArgumentOutOfRangeException">
5817             <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5818             </exception>
5819         </member>
5820         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
5821             <summary>
5822             Returns an enumerator that iterates through the collection.
5823             </summary>
5824             <returns>
5825             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.
5826             </returns>
5827         </member>
5828         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
5829             <summary>
5830             Adds an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5831             </summary>
5832             <param name="item">The object to add to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5833         </member>
5834         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
5835             <summary>
5836             Removes all items from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5837             </summary>
5838         </member>
5839         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
5840             <summary>
5841             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> contains a specific value.
5842             </summary>
5843             <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5844             <returns>
5845             <c>true</c> if <paramref name="item"/> is found in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>.
5846             </returns>
5847         </member>
5848         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
5849             <summary>
5850             Copies the elements of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> to an array, starting at a particular array index.
5851             </summary>
5852             <param name="array">The array.</param>
5853             <param name="arrayIndex">Index of the array.</param>
5854         </member>
5855         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
5856             <summary>
5857             Gets a value indicating whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only.
5858             </summary>
5859             <returns><c>true</c> if the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only; otherwise, <c>false</c>.</returns>
5860         </member>
5861         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
5862             <summary>
5863             Removes the first occurrence of a specific object from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5864             </summary>
5865             <param name="item">The object to remove from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5866             <returns>
5867             <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"/>.
5868             </returns>
5869         </member>
5870         <member name="T:Newtonsoft.Json.Linq.JConstructor">
5871             <summary>
5872             Represents a JSON constructor.
5873             </summary>
5874         </member>
5875         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
5876             <summary>
5877             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
5878             </summary>
5879             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5880             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
5881             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5882             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
5883         </member>
5884         <member name="M:Newtonsoft.Json.Linq.JConstructor.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
5885             <summary>
5886             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5887             </summary>
5888             <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>
5889             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5890             <returns>
5891             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
5892             property 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>
5893         </member>
5894         <member name="M:Newtonsoft.Json.Linq.JConstructor.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
5895             <summary>
5896             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5897             </summary>
5898             <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>
5899             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5900             If this is <c>null</c>, default load settings will be used.</param>
5901             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5902             <returns>
5903             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
5904             property 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>
5905         </member>
5906         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
5907             <summary>
5908             Gets the container's children tokens.
5909             </summary>
5910             <value>The container's children tokens.</value>
5911         </member>
5912         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
5913             <summary>
5914             Gets or sets the name of this constructor.
5915             </summary>
5916             <value>The constructor name.</value>
5917         </member>
5918         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
5919             <summary>
5920             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5921             </summary>
5922             <value>The type.</value>
5923         </member>
5924         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
5925             <summary>
5926             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
5927             </summary>
5928         </member>
5929         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
5930             <summary>
5931             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
5932             </summary>
5933             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
5934         </member>
5935         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
5936             <summary>
5937             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5938             </summary>
5939             <param name="name">The constructor name.</param>
5940             <param name="content">The contents of the constructor.</param>
5941         </member>
5942         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
5943             <summary>
5944             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
5945             </summary>
5946             <param name="name">The constructor name.</param>
5947             <param name="content">The contents of the constructor.</param>
5948         </member>
5949         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
5950             <summary>
5951             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
5952             </summary>
5953             <param name="name">The constructor name.</param>
5954         </member>
5955         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5956             <summary>
5957             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5958             </summary>
5959             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5960             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5961         </member>
5962         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
5963             <summary>
5964             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5965             </summary>
5966             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5967         </member>
5968         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
5969             <summary>
5970             Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5971             </summary>
5972             <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>
5973             <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>
5974         </member>
5975         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
5976             <summary>
5977             Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5978             </summary>
5979             <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>
5980             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
5981             If this is <c>null</c>, default load settings will be used.</param>
5982             <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>
5983         </member>
5984         <member name="T:Newtonsoft.Json.Linq.JContainer">
5985             <summary>
5986             Represents a token that can contain other tokens.
5987             </summary>
5988         </member>
5989         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5990             <summary>
5991             Occurs when the list changes or an item in the list changes.
5992             </summary>
5993         </member>
5994         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
5995             <summary>
5996             Occurs before an item is added to the collection.
5997             </summary>
5998         </member>
5999         <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
6000             <summary>
6001             Occurs when the items list of the collection has changed, or the collection is reset.
6002             </summary>
6003         </member>
6004         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
6005             <summary>
6006             Gets the container's children tokens.
6007             </summary>
6008             <value>The container's children tokens.</value>
6009         </member>
6010         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
6011             <summary>
6012             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
6013             </summary>
6014             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
6015         </member>
6016         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
6017             <summary>
6018             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
6019             </summary>
6020             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
6021         </member>
6022         <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
6023             <summary>
6024             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
6025             </summary>
6026             <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
6027         </member>
6028         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
6029             <summary>
6030             Gets a value indicating whether this token has child tokens.
6031             </summary>
6032             <value>
6033                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
6034             </value>
6035         </member>
6036         <member name="P:Newtonsoft.Json.Linq.JContainer.First">
6037             <summary>
6038             Get the first child token of this token.
6039             </summary>
6040             <value>
6041             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6042             </value>
6043         </member>
6044         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
6045             <summary>
6046             Get the last child token of this token.
6047             </summary>
6048             <value>
6049             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6050             </value>
6051         </member>
6052         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
6053             <summary>
6054             Returns a collection of the child tokens of this token, in document order.
6055             </summary>
6056             <returns>
6057             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.
6058             </returns>
6059         </member>
6060         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
6061             <summary>
6062             Returns a collection of the child values of this token, in document order.
6063             </summary>
6064             <typeparam name="T">The type to convert the values to.</typeparam>
6065             <returns>
6066             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.
6067             </returns>
6068         </member>
6069         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
6070             <summary>
6071             Returns a collection of the descendant tokens for this token in document order.
6072             </summary>
6073             <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>
6074         </member>
6075         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
6076             <summary>
6077             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
6078             </summary>
6079             <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>
6080         </member>
6081         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
6082             <summary>
6083             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6084             </summary>
6085             <param name="content">The content to be added.</param>
6086         </member>
6087         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
6088             <summary>
6089             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6090             </summary>
6091             <param name="content">The content to be added.</param>
6092         </member>
6093         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
6094             <summary>
6095             Creates a <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6096             </summary>
6097             <returns>A <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
6098         </member>
6099         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
6100             <summary>
6101             Replaces the child nodes of this token with the specified content.
6102             </summary>
6103             <param name="content">The content.</param>
6104         </member>
6105         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6106             <summary>
6107             Removes the child nodes from this token.
6108             </summary>
6109         </member>
6110         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6111             <summary>
6112             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6113             </summary>
6114             <param name="content">The content to be merged.</param>
6115         </member>
6116         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6117             <summary>
6118             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6119             </summary>
6120             <param name="content">The content to be merged.</param>
6121             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
6122         </member>
6123         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6124             <summary>
6125             Gets the count of child JSON tokens.
6126             </summary>
6127             <value>The count of child JSON tokens.</value>
6128         </member>
6129         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6130             <summary>
6131             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6132             </summary>
6133             <typeparam name="T">The type of token.</typeparam>
6134         </member>
6135         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6136             <summary>
6137             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6138             </summary>
6139         </member>
6140         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
6141             <summary>
6142             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
6143             </summary>
6144             <param name="enumerable">The enumerable.</param>
6145         </member>
6146         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6147             <summary>
6148             Returns an enumerator that can be used to iterate through the collection.
6149             </summary>
6150             <returns>
6151             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6152             </returns>
6153         </member>
6154         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6155             <summary>
6156             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6157             </summary>
6158             <value></value>
6159         </member>
6160         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
6161             <summary>
6162             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
6163             </summary>
6164             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
6165             <returns>
6166                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
6167             </returns>
6168         </member>
6169         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6170             <summary>
6171             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6172             </summary>
6173             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6174             <returns>
6175                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6176             </returns>
6177         </member>
6178         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6179             <summary>
6180             Returns a hash code for this instance.
6181             </summary>
6182             <returns>
6183             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
6184             </returns>
6185         </member>
6186         <member name="T:Newtonsoft.Json.Linq.JObject">
6187             <summary>
6188             Represents a JSON object.
6189             </summary>
6190             <example>
6191               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6192             </example>
6193         </member>
6194         <member name="M:Newtonsoft.Json.Linq.JObject.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6195             <summary>
6196             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6197             </summary>
6198             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6199             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6200             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6201             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6202         </member>
6203         <member name="M:Newtonsoft.Json.Linq.JObject.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6204             <summary>
6205             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6206             </summary>
6207             <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>
6208             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6209             <returns>
6210             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6211             property 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>
6212         </member>
6213         <member name="M:Newtonsoft.Json.Linq.JObject.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6214             <summary>
6215             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6216             </summary>
6217             <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>
6218             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6219             If this is <c>null</c>, default load settings will be used.</param>
6220             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6221             <returns>
6222             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6223             property 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>
6224         </member>
6225         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6226             <summary>
6227             Gets the container's children tokens.
6228             </summary>
6229             <value>The container's children tokens.</value>
6230         </member>
6231         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6232             <summary>
6233             Occurs when a property value changes.
6234             </summary>
6235         </member>
6236         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6237             <summary>
6238             Occurs when a property value is changing.
6239             </summary>
6240         </member>
6241         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6242             <summary>
6243             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6244             </summary>
6245         </member>
6246         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6247             <summary>
6248             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6249             </summary>
6250             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6251         </member>
6252         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6253             <summary>
6254             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6255             </summary>
6256             <param name="content">The contents of the object.</param>
6257         </member>
6258         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6259             <summary>
6260             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6261             </summary>
6262             <param name="content">The contents of the object.</param>
6263         </member>
6264         <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6265             <summary>
6266             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6267             </summary>
6268             <value>The type.</value>
6269         </member>
6270         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6271             <summary>
6272             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.
6273             </summary>
6274             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.</returns>
6275         </member>
6276         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6277             <summary>
6278             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
6279             </summary>
6280             <param name="name">The property name.</param>
6281             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or <c>null</c>.</returns>
6282         </member>
6283         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6284             <summary>
6285             Gets a <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.
6286             </summary>
6287             <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>
6288         </member>
6289         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6290             <summary>
6291             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6292             </summary>
6293             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6294         </member>
6295         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6296             <summary>
6297             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6298             </summary>
6299             <value></value>
6300         </member>
6301         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6302             <summary>
6303             Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6304             </summary>
6305             <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>
6306             <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>
6307             <exception cref="T:Newtonsoft.Json.JsonReaderException">
6308                 <paramref name="reader"/> is not valid JSON.
6309             </exception>
6310         </member>
6311         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6312             <summary>
6313             Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6314             </summary>
6315             <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>
6316             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6317             If this is <c>null</c>, default load settings will be used.</param>
6318             <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>
6319             <exception cref="T:Newtonsoft.Json.JsonReaderException">
6320                 <paramref name="reader"/> is not valid JSON.
6321             </exception>
6322         </member>
6323         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6324             <summary>
6325             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6326             </summary>
6327             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6328             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6329             <exception cref="T:Newtonsoft.Json.JsonReaderException">
6330                 <paramref name="json"/> is not valid JSON.
6331             </exception>
6332             <example>
6333               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6334             </example>
6335         </member>
6336         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
6337             <summary>
6338             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6339             </summary>
6340             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6341             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6342             If this is <c>null</c>, default load settings will be used.</param>
6343             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6344             <exception cref="T:Newtonsoft.Json.JsonReaderException">
6345                 <paramref name="json"/> is not valid JSON.
6346             </exception>
6347             <example>
6348               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6349             </example>
6350         </member>
6351         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6352             <summary>
6353             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6354             </summary>
6355             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6356             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6357         </member>
6358         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6359             <summary>
6360             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6361             </summary>
6362             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6363             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6364             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6365         </member>
6366         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6367             <summary>
6368             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6369             </summary>
6370             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6371             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6372         </member>
6373         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6374             <summary>
6375             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6376             </summary>
6377             <param name="propertyName">Name of the property.</param>
6378             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6379         </member>
6380         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6381             <summary>
6382             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6383             The exact property name will be searched for first and if no matching property is found then
6384             the <see cref="T:System.StringComparison"/> will be used to match a property.
6385             </summary>
6386             <param name="propertyName">Name of the property.</param>
6387             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6388             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6389         </member>
6390         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6391             <summary>
6392             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6393             The exact property name will be searched for first and if no matching property is found then
6394             the <see cref="T:System.StringComparison"/> will be used to match a property.
6395             </summary>
6396             <param name="propertyName">Name of the property.</param>
6397             <param name="value">The value.</param>
6398             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6399             <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6400         </member>
6401         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6402             <summary>
6403             Adds the specified property name.
6404             </summary>
6405             <param name="propertyName">Name of the property.</param>
6406             <param name="value">The value.</param>
6407         </member>
6408         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6409             <summary>
6410             Removes the property with the specified name.
6411             </summary>
6412             <param name="propertyName">Name of the property.</param>
6413             <returns><c>true</c> if item was successfully removed; otherwise, <c>false</c>.</returns>
6414         </member>
6415         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6416             <summary>
6417             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6418             </summary>
6419             <param name="propertyName">Name of the property.</param>
6420             <param name="value">The value.</param>
6421             <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6422         </member>
6423         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6424             <summary>
6425             Returns an enumerator that can be used to iterate through the collection.
6426             </summary>
6427             <returns>
6428             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6429             </returns>
6430         </member>
6431         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6432             <summary>
6433             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6434             </summary>
6435             <param name="propertyName">Name of the property.</param>
6436         </member>
6437         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
6438             <summary>
6439             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
6440             </summary>
6441             <param name="propertyName">Name of the property.</param>
6442         </member>
6443         <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
6444             <summary>
6445             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6446             </summary>
6447             <param name="parameter">The expression tree representation of the runtime value.</param>
6448             <returns>
6449             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6450             </returns>
6451         </member>
6452         <member name="T:Newtonsoft.Json.Linq.JProperty">
6453             <summary>
6454             Represents a JSON property.
6455             </summary>
6456         </member>
6457         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6458             <summary>
6459             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6460             </summary>
6461             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6462             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6463             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6464             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6465         </member>
6466         <member name="M:Newtonsoft.Json.Linq.JProperty.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6467             <summary>
6468             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6469             </summary>
6470             <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>
6471             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6472             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6473             property 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>
6474         </member>
6475         <member name="M:Newtonsoft.Json.Linq.JProperty.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6476             <summary>
6477             Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6478             </summary>
6479             <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>
6480             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6481             If this is <c>null</c>, default load settings will be used.</param>
6482             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6483             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6484             property 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>
6485         </member>
6486         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6487             <summary>
6488             Gets the container's children tokens.
6489             </summary>
6490             <value>The container's children tokens.</value>
6491         </member>
6492         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6493             <summary>
6494             Gets the property name.
6495             </summary>
6496             <value>The property name.</value>
6497         </member>
6498         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6499             <summary>
6500             Gets or sets the property value.
6501             </summary>
6502             <value>The property value.</value>
6503         </member>
6504         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6505             <summary>
6506             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6507             </summary>
6508             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6509         </member>
6510         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6511             <summary>
6512             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6513             </summary>
6514             <value>The type.</value>
6515         </member>
6516         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6517             <summary>
6518             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6519             </summary>
6520             <param name="name">The property name.</param>
6521             <param name="content">The property content.</param>
6522         </member>
6523         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6524             <summary>
6525             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6526             </summary>
6527             <param name="name">The property name.</param>
6528             <param name="content">The property content.</param>
6529         </member>
6530         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6531             <summary>
6532             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6533             </summary>
6534             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6535             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6536         </member>
6537         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6538             <summary>
6539             Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6540             </summary>
6541             <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>
6542             <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>
6543         </member>
6544         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6545             <summary>
6546             Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6547             </summary>
6548             <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>
6549             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6550             If this is <c>null</c>, default load settings will be used.</param>
6551             <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>
6552         </member>
6553         <member name="T:Newtonsoft.Json.Linq.JRaw">
6554             <summary>
6555             Represents a raw JSON string.
6556             </summary>
6557         </member>
6558         <member name="M:Newtonsoft.Json.Linq.JRaw.CreateAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6559             <summary>
6560             Asynchronously creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
6561             </summary>
6562             <param name="reader">The reader.</param>
6563             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6564             <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6565             property returns an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
6566         </member>
6567         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
6568             <summary>
6569             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
6570             </summary>
6571             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
6572         </member>
6573         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
6574             <summary>
6575             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
6576             </summary>
6577             <param name="rawJson">The raw json.</param>
6578         </member>
6579         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
6580             <summary>
6581             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
6582             </summary>
6583             <param name="reader">The reader.</param>
6584             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
6585         </member>
6586         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
6587             <summary>
6588             Specifies the settings used when merging JSON.
6589             </summary>
6590         </member>
6591         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
6592             <summary>
6593             Gets or sets the method used when merging JSON arrays.
6594             </summary>
6595             <value>The method used when merging JSON arrays.</value>
6596         </member>
6597         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeNullValueHandling">
6598             <summary>
6599             Gets or sets how null value properties are merged.
6600             </summary>
6601             <value>How null value properties are merged.</value>
6602         </member>
6603         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
6604             <summary>
6605             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
6606             </summary>
6607         </member>
6608         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
6609             <summary>
6610             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
6611             </summary>
6612             <param name="name">The name.</param>
6613         </member>
6614         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
6615             <summary>
6616             When overridden in a derived class, returns whether resetting an object changes its value.
6617             </summary>
6618             <returns>
6619             <c>true</c> if resetting the component changes its value; otherwise, <c>false</c>.
6620             </returns>
6621             <param name="component">The component to test for reset capability.</param>
6622         </member>
6623         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
6624             <summary>
6625             When overridden in a derived class, gets the current value of the property on a component.
6626             </summary>
6627             <returns>
6628             The value of a property for a given component.
6629             </returns>
6630             <param name="component">The component with the property for which to retrieve the value.</param>
6631         </member>
6632         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
6633             <summary>
6634             When overridden in a derived class, resets the value for this property of the component to the default value.
6635             </summary>
6636             <param name="component">The component with the property value that is to be reset to the default value.</param>
6637         </member>
6638         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
6639             <summary>
6640             When overridden in a derived class, sets the value of the component to a different value.
6641             </summary>
6642             <param name="component">The component with the property value that is to be set.</param>
6643             <param name="value">The new value.</param>
6644         </member>
6645         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
6646             <summary>
6647             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
6648             </summary>
6649             <returns>
6650             <c>true</c> if the property should be persisted; otherwise, <c>false</c>.
6651             </returns>
6652             <param name="component">The component with the property to be examined for persistence.</param>
6653         </member>
6654         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
6655             <summary>
6656             When overridden in a derived class, gets the type of the component this property is bound to.
6657             </summary>
6658             <returns>
6659             A <see cref="T:System.Type"/> that represents the type of component this property is bound to.
6660             When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or
6661             <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/>
6662             methods are invoked, the object specified might be an instance of this type.
6663             </returns>
6664         </member>
6665         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
6666             <summary>
6667             When overridden in a derived class, gets a value indicating whether this property is read-only.
6668             </summary>
6669             <returns>
6670             <c>true</c> if the property is read-only; otherwise, <c>false</c>.
6671             </returns>
6672         </member>
6673         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
6674             <summary>
6675             When overridden in a derived class, gets the type of the property.
6676             </summary>
6677             <returns>
6678             A <see cref="T:System.Type"/> that represents the type of the property.
6679             </returns>
6680         </member>
6681         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
6682             <summary>
6683             Gets the hash code for the name of the member.
6684             </summary>
6685             <value></value>
6686             <returns>
6687             The hash code for the name of the member.
6688             </returns>
6689         </member>
6690         <member name="T:Newtonsoft.Json.Linq.JToken">
6691             <summary>
6692             Represents an abstract JSON token.
6693             </summary>
6694         </member>
6695         <member name="M:Newtonsoft.Json.Linq.JToken.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6696             <summary>
6697             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6698             </summary>
6699             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6700             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6701             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6702             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6703         </member>
6704         <member name="M:Newtonsoft.Json.Linq.JToken.WriteToAsync(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6705             <summary>
6706             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6707             </summary>
6708             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6709             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6710             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6711         </member>
6712         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFromAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6713             <summary>
6714             Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6715             </summary>
6716             <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>
6717             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6718             <returns>
6719             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The
6720             <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains 
6721             the token and its descendant tokens
6722             that were read from the reader. The runtime type of the token is determined
6723             by the token type of the first token encountered in the reader.
6724             </returns>
6725         </member>
6726         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFromAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6727             <summary>
6728             Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6729             </summary>
6730             <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>
6731             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6732             If this is <c>null</c>, default load settings will be used.</param>
6733             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6734             <returns>
6735             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The
6736             <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains 
6737             the token and its descendant tokens
6738             that were read from the reader. The runtime type of the token is determined
6739             by the token type of the first token encountered in the reader.
6740             </returns>
6741         </member>
6742         <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6743             <summary>
6744             Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6745             </summary>
6746             <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>
6747             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6748             <returns>
6749             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6750             property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
6751             that were read from the reader. The runtime type of the token is determined
6752             by the token type of the first token encountered in the reader.
6753             </returns>
6754         </member>
6755         <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6756             <summary>
6757             Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6758             </summary>
6759             <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>
6760             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6761             If this is <c>null</c>, default load settings will be used.</param>
6762             <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6763             <returns>
6764             A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6765             property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
6766             that were read from the reader. The runtime type of the token is determined
6767             by the token type of the first token encountered in the reader.
6768             </returns>
6769         </member>
6770         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
6771             <summary>
6772             Gets a comparer that can compare two tokens for value equality.
6773             </summary>
6774             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
6775         </member>
6776         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
6777             <summary>
6778             Gets or sets the parent.
6779             </summary>
6780             <value>The parent.</value>
6781         </member>
6782         <member name="P:Newtonsoft.Json.Linq.JToken.Root">
6783             <summary>
6784             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6785             </summary>
6786             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
6787         </member>
6788         <member name="P:Newtonsoft.Json.Linq.JToken.Type">
6789             <summary>
6790             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6791             </summary>
6792             <value>The type.</value>
6793         </member>
6794         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
6795             <summary>
6796             Gets a value indicating whether this token has child tokens.
6797             </summary>
6798             <value>
6799                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
6800             </value>
6801         </member>
6802         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
6803             <summary>
6804             Compares the values of two tokens, including the values of all descendant tokens.
6805             </summary>
6806             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6807             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
6808             <returns><c>true</c> if the tokens are equal; otherwise <c>false</c>.</returns>
6809         </member>
6810         <member name="P:Newtonsoft.Json.Linq.JToken.Next">
6811             <summary>
6812             Gets the next sibling token of this node.
6813             </summary>
6814             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
6815         </member>
6816         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
6817             <summary>
6818             Gets the previous sibling token of this node.
6819             </summary>
6820             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
6821         </member>
6822         <member name="P:Newtonsoft.Json.Linq.JToken.Path">
6823             <summary>
6824             Gets the path of the JSON token. 
6825             </summary>
6826         </member>
6827         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
6828             <summary>
6829             Adds the specified content immediately after this token.
6830             </summary>
6831             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
6832         </member>
6833         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
6834             <summary>
6835             Adds the specified content immediately before this token.
6836             </summary>
6837             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
6838         </member>
6839         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
6840             <summary>
6841             Returns a collection of the ancestor tokens of this token.
6842             </summary>
6843             <returns>A collection of the ancestor tokens of this token.</returns>
6844         </member>
6845         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
6846             <summary>
6847             Returns a collection of tokens that contain this token, and the ancestors of this token.
6848             </summary>
6849             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
6850         </member>
6851         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
6852             <summary>
6853             Returns a collection of the sibling tokens after this token, in document order.
6854             </summary>
6855             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
6856         </member>
6857         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
6858             <summary>
6859             Returns a collection of the sibling tokens before this token, in document order.
6860             </summary>
6861             <returns>A collection of the sibling tokens before this token, in document order.</returns>
6862         </member>
6863         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
6864             <summary>
6865             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6866             </summary>
6867             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6868         </member>
6869         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
6870             <summary>
6871             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
6872             </summary>
6873             <typeparam name="T">The type to convert the token to.</typeparam>
6874             <param name="key">The token key.</param>
6875             <returns>The converted token value.</returns>
6876         </member>
6877         <member name="P:Newtonsoft.Json.Linq.JToken.First">
6878             <summary>
6879             Get the first child token of this token.
6880             </summary>
6881             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
6882         </member>
6883         <member name="P:Newtonsoft.Json.Linq.JToken.Last">
6884             <summary>
6885             Get the last child token of this token.
6886             </summary>
6887             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
6888         </member>
6889         <member name="M:Newtonsoft.Json.Linq.JToken.Children">
6890             <summary>
6891             Returns a collection of the child tokens of this token, in document order.
6892             </summary>
6893             <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>
6894         </member>
6895         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
6896             <summary>
6897             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
6898             </summary>
6899             <typeparam name="T">The type to filter the child tokens on.</typeparam>
6900             <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>
6901         </member>
6902         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
6903             <summary>
6904             Returns a collection of the child values of this token, in document order.
6905             </summary>
6906             <typeparam name="T">The type to convert the values to.</typeparam>
6907             <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>
6908         </member>
6909         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
6910             <summary>
6911             Removes this token from its parent.
6912             </summary>
6913         </member>
6914         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
6915             <summary>
6916             Replaces this token with the specified token.
6917             </summary>
6918             <param name="value">The value.</param>
6919         </member>
6920         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6921             <summary>
6922             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6923             </summary>
6924             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6925             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6926         </member>
6927         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
6928             <summary>
6929             Returns the indented JSON for this token.
6930             </summary>
6931             <returns>
6932             The indented JSON for this token.
6933             </returns>
6934         </member>
6935         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
6936             <summary>
6937             Returns the JSON for this token using the given formatting and converters.
6938             </summary>
6939             <param name="formatting">Indicates how the output should be formatted.</param>
6940             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
6941             <returns>The JSON for this token using the given formatting and converters.</returns>
6942         </member>
6943         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
6944             <summary>
6945             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
6946             </summary>
6947             <param name="value">The value.</param>
6948             <returns>The result of the conversion.</returns>
6949         </member>
6950         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
6951             <summary>
6952             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
6953             </summary>
6954             <param name="value">The value.</param>
6955             <returns>The result of the conversion.</returns>
6956         </member>
6957         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
6958             <summary>
6959             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"/>.
6960             </summary>
6961             <param name="value">The value.</param>
6962             <returns>The result of the conversion.</returns>
6963         </member>
6964         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
6965             <summary>
6966             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"/>.
6967             </summary>
6968             <param name="value">The value.</param>
6969             <returns>The result of the conversion.</returns>
6970         </member>
6971         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
6972             <summary>
6973             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"/>.
6974             </summary>
6975             <param name="value">The value.</param>
6976             <returns>The result of the conversion.</returns>
6977         </member>
6978         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
6979             <summary>
6980             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"/>.
6981             </summary>
6982             <param name="value">The value.</param>
6983             <returns>The result of the conversion.</returns>
6984         </member>
6985         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
6986             <summary>
6987             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"/>.
6988             </summary>
6989             <param name="value">The value.</param>
6990             <returns>The result of the conversion.</returns>
6991         </member>
6992         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
6993             <summary>
6994             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"/>.
6995             </summary>
6996             <param name="value">The value.</param>
6997             <returns>The result of the conversion.</returns>
6998         </member>
6999         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
7000             <summary>
7001             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"/>.
7002             </summary>
7003             <param name="value">The value.</param>
7004             <returns>The result of the conversion.</returns>
7005         </member>
7006         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
7007             <summary>
7008             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
7009             </summary>
7010             <param name="value">The value.</param>
7011             <returns>The result of the conversion.</returns>
7012         </member>
7013         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
7014             <summary>
7015             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
7016             </summary>
7017             <param name="value">The value.</param>
7018             <returns>The result of the conversion.</returns>
7019         </member>
7020         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
7021             <summary>
7022             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
7023             </summary>
7024             <param name="value">The value.</param>
7025             <returns>The result of the conversion.</returns>
7026         </member>
7027         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
7028             <summary>
7029             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
7030             </summary>
7031             <param name="value">The value.</param>
7032             <returns>The result of the conversion.</returns>
7033         </member>
7034         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
7035             <summary>
7036             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
7037             </summary>
7038             <param name="value">The value.</param>
7039             <returns>The result of the conversion.</returns>
7040         </member>
7041         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
7042             <summary>
7043             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
7044             </summary>
7045             <param name="value">The value.</param>
7046             <returns>The result of the conversion.</returns>
7047         </member>
7048         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
7049             <summary>
7050             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"/> .
7051             </summary>
7052             <param name="value">The value.</param>
7053             <returns>The result of the conversion.</returns>
7054         </member>
7055         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
7056             <summary>
7057             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"/>.
7058             </summary>
7059             <param name="value">The value.</param>
7060             <returns>The result of the conversion.</returns>
7061         </member>
7062         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
7063             <summary>
7064             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"/>.
7065             </summary>
7066             <param name="value">The value.</param>
7067             <returns>The result of the conversion.</returns>
7068         </member>
7069         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
7070             <summary>
7071             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"/>.
7072             </summary>
7073             <param name="value">The value.</param>
7074             <returns>The result of the conversion.</returns>
7075         </member>
7076         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
7077             <summary>
7078             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"/>.
7079             </summary>
7080             <param name="value">The value.</param>
7081             <returns>The result of the conversion.</returns>
7082         </member>
7083         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
7084             <summary>
7085             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"/>.
7086             </summary>
7087             <param name="value">The value.</param>
7088             <returns>The result of the conversion.</returns>
7089         </member>
7090         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
7091             <summary>
7092             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"/>.
7093             </summary>
7094             <param name="value">The value.</param>
7095             <returns>The result of the conversion.</returns>
7096         </member>
7097         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
7098             <summary>
7099             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"/>.
7100             </summary>
7101             <param name="value">The value.</param>
7102             <returns>The result of the conversion.</returns>
7103         </member>
7104         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
7105             <summary>
7106             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
7107             </summary>
7108             <param name="value">The value.</param>
7109             <returns>The result of the conversion.</returns>
7110         </member>
7111         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
7112             <summary>
7113             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"/>.
7114             </summary>
7115             <param name="value">The value.</param>
7116             <returns>The result of the conversion.</returns>
7117         </member>
7118         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
7119             <summary>
7120             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"/>.
7121             </summary>
7122             <param name="value">The value.</param>
7123             <returns>The result of the conversion.</returns>
7124         </member>
7125         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
7126             <summary>
7127             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
7128             </summary>
7129             <param name="value">The value.</param>
7130             <returns>The result of the conversion.</returns>
7131         </member>
7132         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
7133             <summary>
7134             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
7135             </summary>
7136             <param name="value">The value.</param>
7137             <returns>The result of the conversion.</returns>
7138         </member>
7139         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
7140             <summary>
7141             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
7142             </summary>
7143             <param name="value">The value.</param>
7144             <returns>The result of the conversion.</returns>
7145         </member>
7146         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
7147             <summary>
7148             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
7149             </summary>
7150             <param name="value">The value.</param>
7151             <returns>The result of the conversion.</returns>
7152         </member>
7153         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
7154             <summary>
7155             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
7156             </summary>
7157             <param name="value">The value.</param>
7158             <returns>The result of the conversion.</returns>
7159         </member>
7160         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
7161             <summary>
7162             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
7163             </summary>
7164             <param name="value">The value.</param>
7165             <returns>The result of the conversion.</returns>
7166         </member>
7167         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
7168             <summary>
7169             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
7170             </summary>
7171             <param name="value">The value.</param>
7172             <returns>The result of the conversion.</returns>
7173         </member>
7174         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
7175             <summary>
7176             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"/> .
7177             </summary>
7178             <param name="value">The value.</param>
7179             <returns>The result of the conversion.</returns>
7180         </member>
7181         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
7182             <summary>
7183             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
7184             </summary>
7185             <param name="value">The value.</param>
7186             <returns>The result of the conversion.</returns>
7187         </member>
7188         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
7189             <summary>
7190             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"/>.
7191             </summary>
7192             <param name="value">The value.</param>
7193             <returns>The result of the conversion.</returns>
7194         </member>
7195         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
7196             <summary>
7197             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
7198             </summary>
7199             <param name="value">The value.</param>
7200             <returns>The result of the conversion.</returns>
7201         </member>
7202         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
7203             <summary>
7204             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7205             </summary>
7206             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7207             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7208         </member>
7209         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
7210             <summary>
7211             Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7212             </summary>
7213             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7214             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7215         </member>
7216         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
7217             <summary>
7218             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7219             </summary>
7220             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7221             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7222         </member>
7223         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
7224             <summary>
7225             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"/>.
7226             </summary>
7227             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7228             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7229         </member>
7230         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
7231             <summary>
7232             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7233             </summary>
7234             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7235             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7236         </member>
7237         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
7238             <summary>
7239             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"/>.
7240             </summary>
7241             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7242             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7243         </member>
7244         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
7245             <summary>
7246             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"/>.
7247             </summary>
7248             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7249             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7250         </member>
7251         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
7252             <summary>
7253             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"/>.
7254             </summary>
7255             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7256             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7257         </member>
7258         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
7259             <summary>
7260             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"/>.
7261             </summary>
7262             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7263             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7264         </member>
7265         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
7266             <summary>
7267             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"/>.
7268             </summary>
7269             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7270             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7271         </member>
7272         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
7273             <summary>
7274             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"/>.
7275             </summary>
7276             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7277             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7278         </member>
7279         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
7280             <summary>
7281             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"/>.
7282             </summary>
7283             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7284             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7285         </member>
7286         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
7287             <summary>
7288             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7289             </summary>
7290             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7291             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7292         </member>
7293         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
7294             <summary>
7295             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7296             </summary>
7297             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7298             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7299         </member>
7300         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
7301             <summary>
7302             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7303             </summary>
7304             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7305             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7306         </member>
7307         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
7308             <summary>
7309             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"/>.
7310             </summary>
7311             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7312             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7313         </member>
7314         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
7315             <summary>
7316             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7317             </summary>
7318             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7319             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7320         </member>
7321         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
7322             <summary>
7323             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"/>.
7324             </summary>
7325             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7326             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7327         </member>
7328         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
7329             <summary>
7330             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"/>.
7331             </summary>
7332             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7333             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7334         </member>
7335         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
7336             <summary>
7337             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7338             </summary>
7339             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7340             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7341         </member>
7342         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
7343             <summary>
7344             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"/>.
7345             </summary>
7346             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7347             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7348         </member>
7349         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
7350             <summary>
7351             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"/>.
7352             </summary>
7353             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7354             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7355         </member>
7356         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
7357             <summary>
7358             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"/>.
7359             </summary>
7360             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7361             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7362         </member>
7363         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
7364             <summary>
7365             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"/>.
7366             </summary>
7367             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7368             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7369         </member>
7370         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
7371             <summary>
7372             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7373             </summary>
7374             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7375             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7376         </member>
7377         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
7378             <summary>
7379             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7380             </summary>
7381             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7382             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7383         </member>
7384         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
7385             <summary>
7386             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7387             </summary>
7388             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7389             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7390         </member>
7391         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
7392             <summary>
7393             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7394             </summary>
7395             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7396             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7397         </member>
7398         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
7399             <summary>
7400             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7401             </summary>
7402             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7403             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7404         </member>
7405         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
7406             <summary>
7407             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7408             </summary>
7409             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7410             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7411         </member>
7412         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
7413             <summary>
7414             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7415             </summary>
7416             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7417             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7418         </member>
7419         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
7420             <summary>
7421             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7422             </summary>
7423             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7424             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7425         </member>
7426         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
7427             <summary>
7428             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"/>.
7429             </summary>
7430             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7431             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7432         </member>
7433         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
7434             <summary>
7435             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7436             </summary>
7437             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7438             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7439         </member>
7440         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
7441             <summary>
7442             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"/>.
7443             </summary>
7444             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7445             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7446         </member>
7447         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
7448             <summary>
7449             Creates a <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
7450             </summary>
7451             <returns>A <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
7452         </member>
7453         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
7454             <summary>
7455             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
7456             </summary>
7457             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7458             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
7459         </member>
7460         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
7461             <summary>
7462             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7463             </summary>
7464             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7465             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
7466             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
7467         </member>
7468         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
7469             <summary>
7470             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7471             </summary>
7472             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
7473             <returns>The new object created from the JSON value.</returns>
7474         </member>
7475         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
7476             <summary>
7477             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7478             </summary>
7479             <param name="objectType">The object type that the token will be deserialized to.</param>
7480             <returns>The new object created from the JSON value.</returns>
7481         </member>
7482         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
7483             <summary>
7484             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"/>.
7485             </summary>
7486             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
7487             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
7488             <returns>The new object created from the JSON value.</returns>
7489         </member>
7490         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
7491             <summary>
7492             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"/>.
7493             </summary>
7494             <param name="objectType">The object type that the token will be deserialized to.</param>
7495             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
7496             <returns>The new object created from the JSON value.</returns>
7497         </member>
7498         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
7499             <summary>
7500             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7501             </summary>
7502             <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>
7503             <returns>
7504             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7505             that were read from the reader. The runtime type of the token is determined
7506             by the token type of the first token encountered in the reader.
7507             </returns>
7508         </member>
7509         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
7510             <summary>
7511             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7512             </summary>
7513             <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>
7514             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7515             If this is <c>null</c>, default load settings will be used.</param>
7516             <returns>
7517             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7518             that were read from the reader. The runtime type of the token is determined
7519             by the token type of the first token encountered in the reader.
7520             </returns>
7521         </member>
7522         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
7523             <summary>
7524             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
7525             </summary>
7526             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7527             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
7528         </member>
7529         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
7530             <summary>
7531             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
7532             </summary>
7533             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7534             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7535             If this is <c>null</c>, default load settings will be used.</param>
7536             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
7537         </member>
7538         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
7539             <summary>
7540             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7541             </summary>
7542             <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>
7543             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7544             If this is <c>null</c>, default load settings will be used.</param>
7545             <returns>
7546             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7547             that were read from the reader. The runtime type of the token is determined
7548             by the token type of the first token encountered in the reader.
7549             </returns>
7550         </member>
7551         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
7552             <summary>
7553             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7554             </summary>
7555             <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>
7556             <returns>
7557             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7558             that were read from the reader. The runtime type of the token is determined
7559             by the token type of the first token encountered in the reader.
7560             </returns>
7561         </member>
7562         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
7563             <summary>
7564             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
7565             </summary>
7566             <param name="path">
7567             A <see cref="T:System.String"/> that contains a JPath expression.
7568             </param>
7569             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or <c>null</c>.</returns>
7570         </member>
7571         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
7572             <summary>
7573             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
7574             </summary>
7575             <param name="path">
7576             A <see cref="T:System.String"/> that contains a JPath expression.
7577             </param>
7578             <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>
7579             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
7580         </member>
7581         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
7582             <summary>
7583             Selects a collection of elements using a JPath expression.
7584             </summary>
7585             <param name="path">
7586             A <see cref="T:System.String"/> that contains a JPath expression.
7587             </param>
7588             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
7589         </member>
7590         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
7591             <summary>
7592             Selects a collection of elements using a JPath expression.
7593             </summary>
7594             <param name="path">
7595             A <see cref="T:System.String"/> that contains a JPath expression.
7596             </param>
7597             <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>
7598             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
7599         </member>
7600         <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
7601             <summary>
7602             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
7603             </summary>
7604             <param name="parameter">The expression tree representation of the runtime value.</param>
7605             <returns>
7606             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
7607             </returns>
7608         </member>
7609         <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
7610             <summary>
7611             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
7612             </summary>
7613             <param name="parameter">The expression tree representation of the runtime value.</param>
7614             <returns>
7615             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
7616             </returns>
7617         </member>
7618         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
7619             <summary>
7620             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
7621             </summary>
7622             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
7623         </member>
7624         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
7625             <summary>
7626             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7627             </summary>
7628             <param name="annotation">The annotation to add.</param>
7629         </member>
7630         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
7631             <summary>
7632             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7633             </summary>
7634             <typeparam name="T">The type of the annotation to retrieve.</typeparam>
7635             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
7636         </member>
7637         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
7638             <summary>
7639             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7640             </summary>
7641             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
7642             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
7643         </member>
7644         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
7645             <summary>
7646             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7647             </summary>
7648             <typeparam name="T">The type of the annotations to retrieve.</typeparam>
7649             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
7650         </member>
7651         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
7652             <summary>
7653             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7654             </summary>
7655             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
7656             <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>
7657         </member>
7658         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
7659             <summary>
7660             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7661             </summary>
7662             <typeparam name="T">The type of annotations to remove.</typeparam>
7663         </member>
7664         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
7665             <summary>
7666             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7667             </summary>
7668             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
7669         </member>
7670         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
7671             <summary>
7672             Compares tokens to determine whether they are equal.
7673             </summary>
7674         </member>
7675         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
7676             <summary>
7677             Determines whether the specified objects are equal.
7678             </summary>
7679             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
7680             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
7681             <returns>
7682             <c>true</c> if the specified objects are equal; otherwise, <c>false</c>.
7683             </returns>
7684         </member>
7685         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
7686             <summary>
7687             Returns a hash code for the specified object.
7688             </summary>
7689             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
7690             <returns>A hash code for the specified object.</returns>
7691             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is <c>null</c>.</exception>
7692         </member>
7693         <member name="T:Newtonsoft.Json.Linq.JTokenReader">
7694             <summary>
7695             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
7696             </summary>
7697         </member>
7698         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
7699             <summary>
7700             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
7701             </summary>
7702         </member>
7703         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
7704             <summary>
7705             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
7706             </summary>
7707             <param name="token">The token to read from.</param>
7708         </member>
7709         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
7710             <summary>
7711             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7712             </summary>
7713             <returns>
7714             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
7715             </returns>
7716         </member>
7717         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
7718             <summary>
7719             Gets the path of the current JSON token. 
7720             </summary>
7721         </member>
7722         <member name="T:Newtonsoft.Json.Linq.JTokenType">
7723             <summary>
7724             Specifies the type of token.
7725             </summary>
7726         </member>
7727         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
7728             <summary>
7729             No token type has been set.
7730             </summary>
7731         </member>
7732         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
7733             <summary>
7734             A JSON object.
7735             </summary>
7736         </member>
7737         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
7738             <summary>
7739             A JSON array.
7740             </summary>
7741         </member>
7742         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
7743             <summary>
7744             A JSON constructor.
7745             </summary>
7746         </member>
7747         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
7748             <summary>
7749             A JSON object property.
7750             </summary>
7751         </member>
7752         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
7753             <summary>
7754             A comment.
7755             </summary>
7756         </member>
7757         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
7758             <summary>
7759             An integer value.
7760             </summary>
7761         </member>
7762         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
7763             <summary>
7764             A float value.
7765             </summary>
7766         </member>
7767         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
7768             <summary>
7769             A string value.
7770             </summary>
7771         </member>
7772         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
7773             <summary>
7774             A boolean value.
7775             </summary>
7776         </member>
7777         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
7778             <summary>
7779             A null value.
7780             </summary>
7781         </member>
7782         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
7783             <summary>
7784             An undefined value.
7785             </summary>
7786         </member>
7787         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
7788             <summary>
7789             A date value.
7790             </summary>
7791         </member>
7792         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
7793             <summary>
7794             A raw JSON value.
7795             </summary>
7796         </member>
7797         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
7798             <summary>
7799             A collection of bytes value.
7800             </summary>
7801         </member>
7802         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
7803             <summary>
7804             A Guid value.
7805             </summary>
7806         </member>
7807         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
7808             <summary>
7809             A Uri value.
7810             </summary>
7811         </member>
7812         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
7813             <summary>
7814             A TimeSpan value.
7815             </summary>
7816         </member>
7817         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
7818             <summary>
7819             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
7820             </summary>
7821         </member>
7822         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
7823             <summary>
7824             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
7825             </summary>
7826         </member>
7827         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
7828             <summary>
7829             Gets the token being written.
7830             </summary>
7831             <value>The token being written.</value>
7832         </member>
7833         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
7834             <summary>
7835             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"/>.
7836             </summary>
7837             <param name="container">The container being written to.</param>
7838         </member>
7839         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
7840             <summary>
7841             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
7842             </summary>
7843         </member>
7844         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
7845             <summary>
7846             Flushes whatever is in the buffer to the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
7847             </summary>
7848         </member>
7849         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
7850             <summary>
7851             Closes this writer.
7852             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
7853             </summary>
7854             <remarks>
7855             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.
7856             </remarks>
7857         </member>
7858         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
7859             <summary>
7860             Writes the beginning of a JSON object.
7861             </summary>
7862         </member>
7863         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
7864             <summary>
7865             Writes the beginning of a JSON array.
7866             </summary>
7867         </member>
7868         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
7869             <summary>
7870             Writes the start of a constructor with the given name.
7871             </summary>
7872             <param name="name">The name of the constructor.</param>
7873         </member>
7874         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
7875             <summary>
7876             Writes the end.
7877             </summary>
7878             <param name="token">The token.</param>
7879         </member>
7880         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
7881             <summary>
7882             Writes the property name of a name/value pair on a JSON object.
7883             </summary>
7884             <param name="name">The name of the property.</param>
7885         </member>
7886         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
7887             <summary>
7888             Writes a <see cref="T:System.Object"/> value.
7889             An error will be raised if the value cannot be written as a single JSON token.
7890             </summary>
7891             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
7892         </member>
7893         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
7894             <summary>
7895             Writes a null value.
7896             </summary>
7897         </member>
7898         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
7899             <summary>
7900             Writes an undefined value.
7901             </summary>
7902         </member>
7903         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
7904             <summary>
7905             Writes raw JSON.
7906             </summary>
7907             <param name="json">The raw JSON to write.</param>
7908         </member>
7909         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
7910             <summary>
7911             Writes a comment <c>/*...*/</c> containing the specified text.
7912             </summary>
7913             <param name="text">Text to place inside the comment.</param>
7914         </member>
7915         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
7916             <summary>
7917             Writes a <see cref="T:System.String"/> value.
7918             </summary>
7919             <param name="value">The <see cref="T:System.String"/> value to write.</param>
7920         </member>
7921         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
7922             <summary>
7923             Writes a <see cref="T:System.Int32"/> value.
7924             </summary>
7925             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
7926         </member>
7927         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
7928             <summary>
7929             Writes a <see cref="T:System.UInt32"/> value.
7930             </summary>
7931             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
7932         </member>
7933         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
7934             <summary>
7935             Writes a <see cref="T:System.Int64"/> value.
7936             </summary>
7937             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
7938         </member>
7939         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
7940             <summary>
7941             Writes a <see cref="T:System.UInt64"/> value.
7942             </summary>
7943             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
7944         </member>
7945         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
7946             <summary>
7947             Writes a <see cref="T:System.Single"/> value.
7948             </summary>
7949             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
7950         </member>
7951         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
7952             <summary>
7953             Writes a <see cref="T:System.Double"/> value.
7954             </summary>
7955             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
7956         </member>
7957         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
7958             <summary>
7959             Writes a <see cref="T:System.Boolean"/> value.
7960             </summary>
7961             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
7962         </member>
7963         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
7964             <summary>
7965             Writes a <see cref="T:System.Int16"/> value.
7966             </summary>
7967             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
7968         </member>
7969         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
7970             <summary>
7971             Writes a <see cref="T:System.UInt16"/> value.
7972             </summary>
7973             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
7974         </member>
7975         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
7976             <summary>
7977             Writes a <see cref="T:System.Char"/> value.
7978             </summary>
7979             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
7980         </member>
7981         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
7982             <summary>
7983             Writes a <see cref="T:System.Byte"/> value.
7984             </summary>
7985             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
7986         </member>
7987         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
7988             <summary>
7989             Writes a <see cref="T:System.SByte"/> value.
7990             </summary>
7991             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
7992         </member>
7993         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
7994             <summary>
7995             Writes a <see cref="T:System.Decimal"/> value.
7996             </summary>
7997             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
7998         </member>
7999         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
8000             <summary>
8001             Writes a <see cref="T:System.DateTime"/> value.
8002             </summary>
8003             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
8004         </member>
8005         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
8006             <summary>
8007             Writes a <see cref="T:System.DateTimeOffset"/> value.
8008             </summary>
8009             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
8010         </member>
8011         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
8012             <summary>
8013             Writes a <see cref="T:System.Byte"/>[] value.
8014             </summary>
8015             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
8016         </member>
8017         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
8018             <summary>
8019             Writes a <see cref="T:System.TimeSpan"/> value.
8020             </summary>
8021             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
8022         </member>
8023         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
8024             <summary>
8025             Writes a <see cref="T:System.Guid"/> value.
8026             </summary>
8027             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
8028         </member>
8029         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
8030             <summary>
8031             Writes a <see cref="T:System.Uri"/> value.
8032             </summary>
8033             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
8034         </member>
8035         <member name="T:Newtonsoft.Json.Linq.JValue">
8036             <summary>
8037             Represents a value in JSON (string, integer, date, etc).
8038             </summary>
8039         </member>
8040         <member name="M:Newtonsoft.Json.Linq.JValue.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
8041             <summary>
8042             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
8043             </summary>
8044             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8045             <param name="cancellationToken">The token to monitor for cancellation requests.</param>
8046             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
8047             <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
8048         </member>
8049         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
8050             <summary>
8051             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
8052             </summary>
8053             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
8054         </member>
8055         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
8056             <summary>
8057             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8058             </summary>
8059             <param name="value">The value.</param>
8060         </member>
8061         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
8062             <summary>
8063             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8064             </summary>
8065             <param name="value">The value.</param>
8066         </member>
8067         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
8068             <summary>
8069             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8070             </summary>
8071             <param name="value">The value.</param>
8072         </member>
8073         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
8074             <summary>
8075             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8076             </summary>
8077             <param name="value">The value.</param>
8078         </member>
8079         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
8080             <summary>
8081             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8082             </summary>
8083             <param name="value">The value.</param>
8084         </member>
8085         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
8086             <summary>
8087             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8088             </summary>
8089             <param name="value">The value.</param>
8090         </member>
8091         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
8092             <summary>
8093             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8094             </summary>
8095             <param name="value">The value.</param>
8096         </member>
8097         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
8098             <summary>
8099             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8100             </summary>
8101             <param name="value">The value.</param>
8102         </member>
8103         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
8104             <summary>
8105             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8106             </summary>
8107             <param name="value">The value.</param>
8108         </member>
8109         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
8110             <summary>
8111             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8112             </summary>
8113             <param name="value">The value.</param>
8114         </member>
8115         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
8116             <summary>
8117             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8118             </summary>
8119             <param name="value">The value.</param>
8120         </member>
8121         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
8122             <summary>
8123             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8124             </summary>
8125             <param name="value">The value.</param>
8126         </member>
8127         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
8128             <summary>
8129             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8130             </summary>
8131             <param name="value">The value.</param>
8132         </member>
8133         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
8134             <summary>
8135             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8136             </summary>
8137             <param name="value">The value.</param>
8138         </member>
8139         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
8140             <summary>
8141             Gets a value indicating whether this token has child tokens.
8142             </summary>
8143             <value>
8144                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
8145             </value>
8146         </member>
8147         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
8148             <summary>
8149             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
8150             </summary>
8151             <param name="value">The value.</param>
8152             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
8153         </member>
8154         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
8155             <summary>
8156             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
8157             </summary>
8158             <param name="value">The value.</param>
8159             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
8160         </member>
8161         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
8162             <summary>
8163             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
8164             </summary>
8165             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
8166         </member>
8167         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
8168             <summary>
8169             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.
8170             </summary>
8171             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.</returns>
8172         </member>
8173         <member name="P:Newtonsoft.Json.Linq.JValue.Type">
8174             <summary>
8175             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8176             </summary>
8177             <value>The type.</value>
8178         </member>
8179         <member name="P:Newtonsoft.Json.Linq.JValue.Value">
8180             <summary>
8181             Gets or sets the underlying token value.
8182             </summary>
8183             <value>The underlying token value.</value>
8184         </member>
8185         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
8186             <summary>
8187             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8188             </summary>
8189             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8190             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
8191         </member>
8192         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
8193             <summary>
8194             Indicates whether the current object is equal to another object of the same type.
8195             </summary>
8196             <returns>
8197             <c>true</c> if the current object is equal to the <paramref name="other"/> parameter; otherwise, <c>false</c>.
8198             </returns>
8199             <param name="other">An object to compare with this object.</param>
8200         </member>
8201         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
8202             <summary>
8203             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
8204             </summary>
8205             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
8206             <returns>
8207             <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>.
8208             </returns>
8209         </member>
8210         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
8211             <summary>
8212             Serves as a hash function for a particular type.
8213             </summary>
8214             <returns>
8215             A hash code for the current <see cref="T:System.Object"/>.
8216             </returns>
8217         </member>
8218         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
8219             <summary>
8220             Returns a <see cref="T:System.String"/> that represents this instance.
8221             </summary>
8222             <returns>
8223             A <see cref="T:System.String"/> that represents this instance.
8224             </returns>
8225         </member>
8226         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
8227             <summary>
8228             Returns a <see cref="T:System.String"/> that represents this instance.
8229             </summary>
8230             <param name="format">The format.</param>
8231             <returns>
8232             A <see cref="T:System.String"/> that represents this instance.
8233             </returns>
8234         </member>
8235         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
8236             <summary>
8237             Returns a <see cref="T:System.String"/> that represents this instance.
8238             </summary>
8239             <param name="formatProvider">The format provider.</param>
8240             <returns>
8241             A <see cref="T:System.String"/> that represents this instance.
8242             </returns>
8243         </member>
8244         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
8245             <summary>
8246             Returns a <see cref="T:System.String"/> that represents this instance.
8247             </summary>
8248             <param name="format">The format.</param>
8249             <param name="formatProvider">The format provider.</param>
8250             <returns>
8251             A <see cref="T:System.String"/> that represents this instance.
8252             </returns>
8253         </member>
8254         <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
8255             <summary>
8256             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
8257             </summary>
8258             <param name="parameter">The expression tree representation of the runtime value.</param>
8259             <returns>
8260             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
8261             </returns>
8262         </member>
8263         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
8264             <summary>
8265             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.
8266             </summary>
8267             <param name="obj">An object to compare with this instance.</param>
8268             <returns>
8269             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
8270             Value
8271             Meaning
8272             Less than zero
8273             This instance is less than <paramref name="obj"/>.
8274             Zero
8275             This instance is equal to <paramref name="obj"/>.
8276             Greater than zero
8277             This instance is greater than <paramref name="obj"/>.
8278             </returns>
8279             <exception cref="T:System.ArgumentException">
8280                 <paramref name="obj"/> is not of the same type as this instance.
8281             </exception>
8282         </member>
8283         <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
8284             <summary>
8285             Specifies the settings used when loading JSON.
8286             </summary>
8287         </member>
8288         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
8289             <summary>
8290             Gets or sets how JSON comments are handled when loading JSON.
8291             </summary>
8292             <value>The JSON comment handling.</value>
8293         </member>
8294         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.LineInfoHandling">
8295             <summary>
8296             Gets or sets how JSON line info is handled when loading JSON.
8297             </summary>
8298             <value>The JSON line info handling.</value>
8299         </member>
8300         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
8301             <summary>
8302             Specifies how JSON arrays are merged together.
8303             </summary>
8304         </member>
8305         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
8306             <summary>Concatenate arrays.</summary>
8307         </member>
8308         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
8309             <summary>Union arrays, skipping items that already exist.</summary>
8310         </member>
8311         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
8312             <summary>Replace all array items.</summary>
8313         </member>
8314         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
8315             <summary>Merge array items together, matched by index.</summary>
8316         </member>
8317         <member name="T:Newtonsoft.Json.Linq.MergeNullValueHandling">
8318             <summary>
8319             Specifies how null value properties are merged.
8320             </summary>
8321         </member>
8322         <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Ignore">
8323             <summary>
8324             The content's null value properties will be ignored during merging.
8325             </summary>
8326         </member>
8327         <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Merge">
8328             <summary>
8329             The content's null value properties will be merged.
8330             </summary>
8331         </member>
8332         <member name="T:Newtonsoft.Json.MemberSerialization">
8333             <summary>
8334             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8335             </summary>
8336         </member>
8337         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
8338             <summary>
8339             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
8340             This is the default member serialization mode.
8341             </summary>
8342         </member>
8343         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
8344             <summary>
8345             Only members marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
8346             This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
8347             </summary>
8348         </member>
8349         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
8350             <summary>
8351             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
8352             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
8353             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to <c>false</c>.
8354             </summary>
8355         </member>
8356         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
8357             <summary>
8358             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8359             </summary>
8360         </member>
8361         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
8362             <summary>
8363             Read metadata properties located at the start of a JSON object.
8364             </summary>
8365         </member>
8366         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
8367             <summary>
8368             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
8369             </summary>
8370         </member>
8371         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
8372             <summary>
8373             Do not try to read metadata properties.
8374             </summary>
8375         </member>
8376         <member name="T:Newtonsoft.Json.MissingMemberHandling">
8377             <summary>
8378             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8379             </summary>
8380         </member>
8381         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8382             <summary>
8383             Ignore a missing member and do not attempt to deserialize it.
8384             </summary>
8385         </member>
8386         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8387             <summary>
8388             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8389             </summary>
8390         </member>
8391         <member name="T:Newtonsoft.Json.NullValueHandling">
8392             <summary>
8393             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8394             </summary>
8395             <example>
8396               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8397               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8398             </example>
8399         </member>
8400         <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8401             <summary>
8402             Include null values when serializing and deserializing objects.
8403             </summary>
8404         </member>
8405         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8406             <summary>
8407             Ignore null values when serializing and deserializing objects.
8408             </summary>
8409         </member>
8410         <member name="T:Newtonsoft.Json.ObjectCreationHandling">
8411             <summary>
8412             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8413             </summary>
8414         </member>
8415         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
8416             <summary>
8417             Reuse existing objects, create new objects when needed.
8418             </summary>
8419         </member>
8420         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
8421             <summary>
8422             Only reuse existing objects.
8423             </summary>
8424         </member>
8425         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
8426             <summary>
8427             Always create new objects.
8428             </summary>
8429         </member>
8430         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
8431             <summary>
8432             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8433             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"/>.
8434             </summary>
8435             <example>
8436               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
8437             </example>
8438         </member>
8439         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
8440             <summary>
8441             Do not preserve references when serializing types.
8442             </summary>
8443         </member>
8444         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
8445             <summary>
8446             Preserve references when serializing into a JSON object structure.
8447             </summary>
8448         </member>
8449         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
8450             <summary>
8451             Preserve references when serializing into a JSON array structure.
8452             </summary>
8453         </member>
8454         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
8455             <summary>
8456             Preserve references when serializing.
8457             </summary>
8458         </member>
8459         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8460             <summary>
8461             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8462             </summary>
8463         </member>
8464         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8465             <summary>
8466             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8467             </summary>
8468         </member>
8469         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8470             <summary>
8471             Ignore loop references and do not serialize.
8472             </summary>
8473         </member>
8474         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8475             <summary>
8476             Serialize loop references.
8477             </summary>
8478         </member>
8479         <member name="T:Newtonsoft.Json.Required">
8480             <summary>
8481             Indicating whether a property is required.
8482             </summary>
8483         </member>
8484         <member name="F:Newtonsoft.Json.Required.Default">
8485             <summary>
8486             The property is not required. The default state.
8487             </summary>
8488         </member>
8489         <member name="F:Newtonsoft.Json.Required.AllowNull">
8490             <summary>
8491             The property must be defined in JSON but can be a null value.
8492             </summary>
8493         </member>
8494         <member name="F:Newtonsoft.Json.Required.Always">
8495             <summary>
8496             The property must be defined in JSON and cannot be a null value.
8497             </summary>
8498         </member>
8499         <member name="F:Newtonsoft.Json.Required.DisallowNull">
8500             <summary>
8501             The property is not required but it cannot be a null value.
8502             </summary>
8503         </member>
8504         <member name="T:Newtonsoft.Json.Schema.Extensions">
8505             <summary>
8506             <para>
8507             Contains the JSON schema extension methods.
8508             </para>
8509             <note type="caution">
8510             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.
8511             </note>
8512             </summary>
8513         </member>
8514         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8515             <summary>
8516             <para>
8517             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8518             </para>
8519             <note type="caution">
8520             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.
8521             </note>
8522             </summary>
8523             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8524             <param name="schema">The schema to test with.</param>
8525             <returns>
8526                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8527             </returns>
8528         </member>
8529         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
8530             <summary>
8531             <para>
8532             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8533             </para>
8534             <note type="caution">
8535             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.
8536             </note>
8537             </summary>
8538             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8539             <param name="schema">The schema to test with.</param>
8540             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
8541             <returns>
8542                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8543             </returns>
8544         </member>
8545         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8546             <summary>
8547             <para>
8548             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8549             </para>
8550             <note type="caution">
8551             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.
8552             </note>
8553             </summary>
8554             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8555             <param name="schema">The schema to test with.</param>
8556         </member>
8557         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
8558             <summary>
8559             <para>
8560             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8561             </para>
8562             <note type="caution">
8563             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.
8564             </note>
8565             </summary>
8566             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8567             <param name="schema">The schema to test with.</param>
8568             <param name="validationEventHandler">The validation event handler.</param>
8569         </member>
8570         <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8571             <summary>
8572             <para>
8573             An in-memory representation of a JSON Schema.
8574             </para>
8575             <note type="caution">
8576             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.
8577             </note>
8578             </summary>
8579         </member>
8580         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8581             <summary>
8582             Gets or sets the id.
8583             </summary>
8584         </member>
8585         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8586             <summary>
8587             Gets or sets the title.
8588             </summary>
8589         </member>
8590         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8591             <summary>
8592             Gets or sets whether the object is required.
8593             </summary>
8594         </member>
8595         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8596             <summary>
8597             Gets or sets whether the object is read-only.
8598             </summary>
8599         </member>
8600         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8601             <summary>
8602             Gets or sets whether the object is visible to users.
8603             </summary>
8604         </member>
8605         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8606             <summary>
8607             Gets or sets whether the object is transient.
8608             </summary>
8609         </member>
8610         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8611             <summary>
8612             Gets or sets the description of the object.
8613             </summary>
8614         </member>
8615         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8616             <summary>
8617             Gets or sets the types of values allowed by the object.
8618             </summary>
8619             <value>The type.</value>
8620         </member>
8621         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8622             <summary>
8623             Gets or sets the pattern.
8624             </summary>
8625             <value>The pattern.</value>
8626         </member>
8627         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8628             <summary>
8629             Gets or sets the minimum length.
8630             </summary>
8631             <value>The minimum length.</value>
8632         </member>
8633         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8634             <summary>
8635             Gets or sets the maximum length.
8636             </summary>
8637             <value>The maximum length.</value>
8638         </member>
8639         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8640             <summary>
8641             Gets or sets a number that the value should be divisible by.
8642             </summary>
8643             <value>A number that the value should be divisible by.</value>
8644         </member>
8645         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8646             <summary>
8647             Gets or sets the minimum.
8648             </summary>
8649             <value>The minimum.</value>
8650         </member>
8651         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8652             <summary>
8653             Gets or sets the maximum.
8654             </summary>
8655             <value>The maximum.</value>
8656         </member>
8657         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8658             <summary>
8659             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"/>).
8660             </summary>
8661             <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>
8662         </member>
8663         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8664             <summary>
8665             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"/>).
8666             </summary>
8667             <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>
8668         </member>
8669         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8670             <summary>
8671             Gets or sets the minimum number of items.
8672             </summary>
8673             <value>The minimum number of items.</value>
8674         </member>
8675         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8676             <summary>
8677             Gets or sets the maximum number of items.
8678             </summary>
8679             <value>The maximum number of items.</value>
8680         </member>
8681         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8682             <summary>
8683             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8684             </summary>
8685             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8686         </member>
8687         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8688             <summary>
8689             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"/>.
8690             </summary>
8691             <value>
8692                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8693             </value>
8694         </member>
8695         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8696             <summary>
8697             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8698             </summary>
8699             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8700         </member>
8701         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8702             <summary>
8703             Gets or sets a value indicating whether additional items are allowed.
8704             </summary>
8705             <value>
8706                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8707             </value>
8708         </member>
8709         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8710             <summary>
8711             Gets or sets whether the array items must be unique.
8712             </summary>
8713         </member>
8714         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8715             <summary>
8716             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8717             </summary>
8718             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8719         </member>
8720         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8721             <summary>
8722             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8723             </summary>
8724             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8725         </member>
8726         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8727             <summary>
8728             Gets or sets the pattern properties.
8729             </summary>
8730             <value>The pattern properties.</value>
8731         </member>
8732         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8733             <summary>
8734             Gets or sets a value indicating whether additional properties are allowed.
8735             </summary>
8736             <value>
8737                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8738             </value>
8739         </member>
8740         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8741             <summary>
8742             Gets or sets the required property if this property is present.
8743             </summary>
8744             <value>The required property if this property is present.</value>
8745         </member>
8746         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8747             <summary>
8748             Gets or sets the a collection of valid enum values allowed.
8749             </summary>
8750             <value>A collection of valid enum values allowed.</value>
8751         </member>
8752         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8753             <summary>
8754             Gets or sets disallowed types.
8755             </summary>
8756             <value>The disallowed types.</value>
8757         </member>
8758         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8759             <summary>
8760             Gets or sets the default value.
8761             </summary>
8762             <value>The default value.</value>
8763         </member>
8764         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8765             <summary>
8766             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8767             </summary>
8768             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8769         </member>
8770         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8771             <summary>
8772             Gets or sets the format.
8773             </summary>
8774             <value>The format.</value>
8775         </member>
8776         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8777             <summary>
8778             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8779             </summary>
8780         </member>
8781         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8782             <summary>
8783             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8784             </summary>
8785             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8786             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8787         </member>
8788         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8789             <summary>
8790             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8791             </summary>
8792             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8793             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8794             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8795         </member>
8796         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8797             <summary>
8798             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema.
8799             </summary>
8800             <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
8801             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
8802         </member>
8803         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8804             <summary>
8805             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"/>.
8806             </summary>
8807             <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
8808             <param name="resolver">The resolver.</param>
8809             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
8810         </member>
8811         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8812             <summary>
8813             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8814             </summary>
8815             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8816         </member>
8817         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8818             <summary>
8819             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8820             </summary>
8821             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8822             <param name="resolver">The resolver used.</param>
8823         </member>
8824         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8825             <summary>
8826             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8827             </summary>
8828             <returns>
8829             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8830             </returns>
8831         </member>
8832         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
8833             <summary>
8834             <para>
8835             Returns detailed information about the schema exception.
8836             </para>
8837             <note type="caution">
8838             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.
8839             </note>
8840             </summary>
8841         </member>
8842         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
8843             <summary>
8844             Gets the line number indicating where the error occurred.
8845             </summary>
8846             <value>The line number indicating where the error occurred.</value>
8847         </member>
8848         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
8849             <summary>
8850             Gets the line position indicating where the error occurred.
8851             </summary>
8852             <value>The line position indicating where the error occurred.</value>
8853         </member>
8854         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
8855             <summary>
8856             Gets the path to the JSON where the error occurred.
8857             </summary>
8858             <value>The path to the JSON where the error occurred.</value>
8859         </member>
8860         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
8861             <summary>
8862             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
8863             </summary>
8864         </member>
8865         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
8866             <summary>
8867             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
8868             with a specified error message.
8869             </summary>
8870             <param name="message">The error message that explains the reason for the exception.</param>
8871         </member>
8872         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
8873             <summary>
8874             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
8875             with a specified error message and a reference to the inner exception that is the cause of this exception.
8876             </summary>
8877             <param name="message">The error message that explains the reason for the exception.</param>
8878             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
8879         </member>
8880         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8881             <summary>
8882             <para>
8883             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8884             </para>
8885             <note type="caution">
8886             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.
8887             </note>
8888             </summary>
8889         </member>
8890         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8891             <summary>
8892             Gets or sets how undefined schemas are handled by the serializer.
8893             </summary>
8894         </member>
8895         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8896             <summary>
8897             Gets or sets the contract resolver.
8898             </summary>
8899             <value>The contract resolver.</value>
8900         </member>
8901         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8902             <summary>
8903             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8904             </summary>
8905             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8906             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8907         </member>
8908         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8909             <summary>
8910             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8911             </summary>
8912             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8913             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8914             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8915         </member>
8916         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8917             <summary>
8918             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8919             </summary>
8920             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8921             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8922             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8923         </member>
8924         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8925             <summary>
8926             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8927             </summary>
8928             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8929             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8930             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8931             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8932         </member>
8933         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
8934             <summary>
8935             <para>
8936             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
8937             </para>
8938             <note type="caution">
8939             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.
8940             </note>
8941             </summary>
8942         </member>
8943         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
8944             <summary>
8945             Gets or sets the loaded schemas.
8946             </summary>
8947             <value>The loaded schemas.</value>
8948         </member>
8949         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
8950             <summary>
8951             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
8952             </summary>
8953         </member>
8954         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
8955             <summary>
8956             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
8957             </summary>
8958             <param name="reference">The id.</param>
8959             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
8960         </member>
8961         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8962             <summary>
8963             <para>
8964             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8965             </para>
8966             <note type="caution">
8967             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.
8968             </note>
8969             </summary>
8970         </member>
8971         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8972             <summary>
8973             No type specified.
8974             </summary>
8975         </member>
8976         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8977             <summary>
8978             String type.
8979             </summary>
8980         </member>
8981         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8982             <summary>
8983             Float type.
8984             </summary>
8985         </member>
8986         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8987             <summary>
8988             Integer type.
8989             </summary>
8990         </member>
8991         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8992             <summary>
8993             Boolean type.
8994             </summary>
8995         </member>
8996         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8997             <summary>
8998             Object type.
8999             </summary>
9000         </member>
9001         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
9002             <summary>
9003             Array type.
9004             </summary>
9005         </member>
9006         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
9007             <summary>
9008             Null type.
9009             </summary>
9010         </member>
9011         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
9012             <summary>
9013             Any type.
9014             </summary>
9015         </member>
9016         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
9017             <summary>
9018             <para>
9019             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
9020             </para>
9021             <note type="caution">
9022             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.
9023             </note>
9024             </summary>
9025         </member>
9026         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
9027             <summary>
9028             Do not infer a schema Id.
9029             </summary>
9030         </member>
9031         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
9032             <summary>
9033             Use the .NET type name as the schema Id.
9034             </summary>
9035         </member>
9036         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
9037             <summary>
9038             Use the assembly qualified .NET type name as the schema Id.
9039             </summary>
9040         </member>
9041         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
9042             <summary>
9043             <para>
9044             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
9045             </para>
9046             <note type="caution">
9047             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.
9048             </note>
9049             </summary>
9050         </member>
9051         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
9052             <summary>
9053             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
9054             </summary>
9055             <value>The JsonSchemaException associated with the validation error.</value>
9056         </member>
9057         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
9058             <summary>
9059             Gets the path of the JSON location where the validation error occurred.
9060             </summary>
9061             <value>The path of the JSON location where the validation error occurred.</value>
9062         </member>
9063         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
9064             <summary>
9065             Gets the text description corresponding to the validation error.
9066             </summary>
9067             <value>The text description.</value>
9068         </member>
9069         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
9070             <summary>
9071             <para>
9072             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
9073             </para>
9074             <note type="caution">
9075             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.
9076             </note>
9077             </summary>
9078         </member>
9079         <member name="T:Newtonsoft.Json.Serialization.ISerializationBinder">
9080             <summary>
9081             Allows users to control class loading and mandate what class to load.
9082             </summary>
9083         </member>
9084         <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToType(System.String,System.String)">
9085             <summary>
9086             When implemented, controls the binding of a serialized object to a type.
9087             </summary>
9088             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9089             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object</param>
9090             <returns>The type of the object the formatter creates a new instance of.</returns>
9091         </member>
9092         <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToName(System.Type,System.String@,System.String@)">
9093             <summary>
9094             When implemented, controls the binding of a serialized object to a type.
9095             </summary>
9096             <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
9097             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9098             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
9099         </member>
9100         <member name="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy">
9101             <summary>
9102             A snake case naming strategy.
9103             </summary>
9104         </member>
9105         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
9106             <summary>
9107             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
9108             </summary>
9109             <param name="processDictionaryKeys">
9110             A flag indicating whether dictionary keys should be processed.
9111             </param>
9112             <param name="overrideSpecifiedNames">
9113             A flag indicating whether explicitly specified property names should be processed,
9114             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9115             </param>
9116         </member>
9117         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
9118             <summary>
9119             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
9120             </summary>
9121             <param name="processDictionaryKeys">
9122             A flag indicating whether dictionary keys should be processed.
9123             </param>
9124             <param name="overrideSpecifiedNames">
9125             A flag indicating whether explicitly specified property names should be processed,
9126             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9127             </param>
9128             <param name="processExtensionDataNames">
9129             A flag indicating whether extension data names should be processed.
9130             </param>
9131         </member>
9132         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor">
9133             <summary>
9134             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
9135             </summary>
9136         </member>
9137         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.ResolvePropertyName(System.String)">
9138             <summary>
9139             Resolves the specified property name.
9140             </summary>
9141             <param name="name">The property name to resolve.</param>
9142             <returns>The resolved property name.</returns>
9143         </member>
9144         <member name="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy">
9145             <summary>
9146             A camel case naming strategy.
9147             </summary>
9148         </member>
9149         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
9150             <summary>
9151             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9152             </summary>
9153             <param name="processDictionaryKeys">
9154             A flag indicating whether dictionary keys should be processed.
9155             </param>
9156             <param name="overrideSpecifiedNames">
9157             A flag indicating whether explicitly specified property names should be processed,
9158             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9159             </param>
9160         </member>
9161         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
9162             <summary>
9163             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9164             </summary>
9165             <param name="processDictionaryKeys">
9166             A flag indicating whether dictionary keys should be processed.
9167             </param>
9168             <param name="overrideSpecifiedNames">
9169             A flag indicating whether explicitly specified property names should be processed,
9170             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9171             </param>
9172             <param name="processExtensionDataNames">
9173             A flag indicating whether extension data names should be processed.
9174             </param>
9175         </member>
9176         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor">
9177             <summary>
9178             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9179             </summary>
9180         </member>
9181         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.ResolvePropertyName(System.String)">
9182             <summary>
9183             Resolves the specified property name.
9184             </summary>
9185             <param name="name">The property name to resolve.</param>
9186             <returns>The resolved property name.</returns>
9187         </member>
9188         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
9189             <summary>
9190             Resolves member mappings for a type, camel casing property names.
9191             </summary>
9192         </member>
9193         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
9194             <summary>
9195             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
9196             </summary>
9197         </member>
9198         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolveContract(System.Type)">
9199             <summary>
9200             Resolves the contract for a given type.
9201             </summary>
9202             <param name="type">The type to resolve a contract for.</param>
9203             <returns>The contract for a given type.</returns>
9204         </member>
9205         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
9206             <summary>
9207             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"/>.
9208             </summary>
9209         </member>
9210         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
9211             <summary>
9212             Gets a value indicating whether members are being get and set using dynamic code generation.
9213             This value is determined by the runtime permissions available.
9214             </summary>
9215             <value>
9216                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
9217             </value>
9218         </member>
9219         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
9220             <summary>
9221             Gets or sets the default members search flags.
9222             </summary>
9223             <value>The default members search flags.</value>
9224         </member>
9225         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
9226             <summary>
9227             Gets or sets a value indicating whether compiler generated members should be serialized.
9228             </summary>
9229             <value>
9230                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
9231             </value>
9232         </member>
9233         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
9234             <summary>
9235             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
9236             </summary>
9237             <value>
9238                 <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>.
9239             </value>
9240         </member>
9241         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
9242             <summary>
9243             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
9244             </summary>
9245             <value>
9246                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
9247             </value>
9248         </member>
9249         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.NamingStrategy">
9250             <summary>
9251             Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized.
9252             </summary>
9253             <value>The naming strategy used to resolve how property names and dictionary keys are serialized.</value>
9254         </member>
9255         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
9256             <summary>
9257             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
9258             </summary>
9259         </member>
9260         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
9261             <summary>
9262             Resolves the contract for a given type.
9263             </summary>
9264             <param name="type">The type to resolve a contract for.</param>
9265             <returns>The contract for a given type.</returns>
9266         </member>
9267         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
9268             <summary>
9269             Gets the serializable members for the type.
9270             </summary>
9271             <param name="objectType">The type to get serializable members for.</param>
9272             <returns>The serializable members for the type.</returns>
9273         </member>
9274         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
9275             <summary>
9276             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
9277             </summary>
9278             <param name="objectType">Type of the object.</param>
9279             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
9280         </member>
9281         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
9282             <summary>
9283             Creates the constructor parameters.
9284             </summary>
9285             <param name="constructor">The constructor to create properties for.</param>
9286             <param name="memberProperties">The type's member properties.</param>
9287             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
9288         </member>
9289         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
9290             <summary>
9291             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
9292             </summary>
9293             <param name="matchingMemberProperty">The matching member property.</param>
9294             <param name="parameterInfo">The constructor parameter.</param>
9295             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
9296         </member>
9297         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
9298             <summary>
9299             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
9300             </summary>
9301             <param name="objectType">Type of the object.</param>
9302             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
9303         </member>
9304         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
9305             <summary>
9306             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
9307             </summary>
9308             <param name="objectType">Type of the object.</param>
9309             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
9310         </member>
9311         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
9312             <summary>
9313             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
9314             </summary>
9315             <param name="objectType">Type of the object.</param>
9316             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
9317         </member>
9318         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
9319             <summary>
9320             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
9321             </summary>
9322             <param name="objectType">Type of the object.</param>
9323             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
9324         </member>
9325         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
9326             <summary>
9327             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
9328             </summary>
9329             <param name="objectType">Type of the object.</param>
9330             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
9331         </member>
9332         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
9333             <summary>
9334             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
9335             </summary>
9336             <param name="objectType">Type of the object.</param>
9337             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
9338         </member>
9339         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
9340             <summary>
9341             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
9342             </summary>
9343             <param name="objectType">Type of the object.</param>
9344             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
9345         </member>
9346         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
9347             <summary>
9348             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
9349             </summary>
9350             <param name="objectType">Type of the object.</param>
9351             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
9352         </member>
9353         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
9354             <summary>
9355             Determines which contract type is created for the given type.
9356             </summary>
9357             <param name="objectType">Type of the object.</param>
9358             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
9359         </member>
9360         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
9361             <summary>
9362             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
9363             </summary>
9364             <param name="type">The type to create properties for.</param>
9365             /// <param name="memberSerialization">The member serialization mode for the type.</param>
9366             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
9367         </member>
9368         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
9369             <summary>
9370             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
9371             </summary>
9372             <param name="member">The member.</param>
9373             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
9374         </member>
9375         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
9376             <summary>
9377             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
9378             </summary>
9379             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
9380             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
9381             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
9382         </member>
9383         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
9384             <summary>
9385             Resolves the name of the property.
9386             </summary>
9387             <param name="propertyName">Name of the property.</param>
9388             <returns>Resolved name of the property.</returns>
9389         </member>
9390         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveExtensionDataName(System.String)">
9391             <summary>
9392             Resolves the name of the extension data. By default no changes are made to extension data names.
9393             </summary>
9394             <param name="extensionDataName">Name of the extension data.</param>
9395             <returns>Resolved name of the extension data.</returns>
9396         </member>
9397         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
9398             <summary>
9399             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
9400             </summary>
9401             <param name="dictionaryKey">Key of the dictionary.</param>
9402             <returns>Resolved key of the dictionary.</returns>
9403         </member>
9404         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
9405             <summary>
9406             Gets the resolved name of the property.
9407             </summary>
9408             <param name="propertyName">Name of the property.</param>
9409             <returns>Name of the property.</returns>
9410         </member>
9411         <member name="T:Newtonsoft.Json.Serialization.DefaultNamingStrategy">
9412             <summary>
9413             The default naming strategy. Property names and dictionary keys are unchanged.
9414             </summary>
9415         </member>
9416         <member name="M:Newtonsoft.Json.Serialization.DefaultNamingStrategy.ResolvePropertyName(System.String)">
9417             <summary>
9418             Resolves the specified property name.
9419             </summary>
9420             <param name="name">The property name to resolve.</param>
9421             <returns>The resolved property name.</returns>
9422         </member>
9423         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
9424             <summary>
9425             The default serialization binder used when resolving and loading classes from type names.
9426             </summary>
9427         </member>
9428         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.#ctor">
9429             <summary>
9430             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"/> class.
9431             </summary>
9432         </member>
9433         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
9434             <summary>
9435             When overridden in a derived class, controls the binding of a serialized object to a type.
9436             </summary>
9437             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9438             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
9439             <returns>
9440             The type of the object the formatter creates a new instance of.
9441             </returns>
9442         </member>
9443         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
9444             <summary>
9445             When overridden in a derived class, controls the binding of a serialized object to a type.
9446             </summary>
9447             <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
9448             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9449             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
9450         </member>
9451         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
9452             <summary>
9453             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
9454             </summary>
9455         </member>
9456         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
9457             <summary>
9458             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
9459             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"/>,
9460             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
9461             </summary>
9462             <value>
9463             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
9464             </value>
9465         </member>
9466         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
9467             <summary>
9468             Writes the specified trace level, message and optional exception.
9469             </summary>
9470             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
9471             <param name="message">The trace message.</param>
9472             <param name="ex">The trace exception. This parameter is optional.</param>
9473         </member>
9474         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
9475             <summary>
9476             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
9477             </summary>
9478         </member>
9479         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
9480             <summary>
9481             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
9482             </summary>
9483             <param name="memberInfo">The member info.</param>
9484         </member>
9485         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
9486             <summary>
9487             Sets the value.
9488             </summary>
9489             <param name="target">The target to set the value on.</param>
9490             <param name="value">The value to set on the target.</param>
9491         </member>
9492         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
9493             <summary>
9494             Gets the value.
9495             </summary>
9496             <param name="target">The target to get the value from.</param>
9497             <returns>The value.</returns>
9498         </member>
9499         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
9500             <summary>
9501             Provides information surrounding an error.
9502             </summary>
9503         </member>
9504         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
9505             <summary>
9506             Gets the error.
9507             </summary>
9508             <value>The error.</value>
9509         </member>
9510         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
9511             <summary>
9512             Gets the original object that caused the error.
9513             </summary>
9514             <value>The original object that caused the error.</value>
9515         </member>
9516         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
9517             <summary>
9518             Gets the member that caused the error.
9519             </summary>
9520             <value>The member that caused the error.</value>
9521         </member>
9522         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
9523             <summary>
9524             Gets the path of the JSON location where the error occurred.
9525             </summary>
9526             <value>The path of the JSON location where the error occurred.</value>
9527         </member>
9528         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
9529             <summary>
9530             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
9531             </summary>
9532             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
9533         </member>
9534         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
9535             <summary>
9536             Provides data for the Error event.
9537             </summary>
9538         </member>
9539         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
9540             <summary>
9541             Gets the current object the error event is being raised against.
9542             </summary>
9543             <value>The current object the error event is being raised against.</value>
9544         </member>
9545         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
9546             <summary>
9547             Gets the error context.
9548             </summary>
9549             <value>The error context.</value>
9550         </member>
9551         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
9552             <summary>
9553             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
9554             </summary>
9555             <param name="currentObject">The current object.</param>
9556             <param name="errorContext">The error context.</param>
9557         </member>
9558         <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
9559             <summary>
9560             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
9561             </summary>
9562         </member>
9563         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
9564             <summary>
9565             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
9566             </summary>
9567             <param name="memberInfo">The member info.</param>
9568         </member>
9569         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
9570             <summary>
9571             Sets the value.
9572             </summary>
9573             <param name="target">The target to set the value on.</param>
9574             <param name="value">The value to set on the target.</param>
9575         </member>
9576         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
9577             <summary>
9578             Gets the value.
9579             </summary>
9580             <param name="target">The target to get the value from.</param>
9581             <returns>The value.</returns>
9582         </member>
9583         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
9584             <summary>
9585             Provides methods to get attributes.
9586             </summary>
9587         </member>
9588         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
9589             <summary>
9590             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
9591             </summary>
9592             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
9593             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
9594         </member>
9595         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
9596             <summary>
9597             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
9598             </summary>
9599             <param name="attributeType">The type of the attributes.</param>
9600             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
9601             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
9602         </member>
9603         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
9604             <summary>
9605             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"/>.
9606             </summary>
9607             <example>
9608               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
9609               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
9610             </example>
9611         </member>
9612         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
9613             <summary>
9614             Resolves the contract for a given type.
9615             </summary>
9616             <param name="type">The type to resolve a contract for.</param>
9617             <returns>The contract for a given type.</returns>
9618         </member>
9619         <member name="T:Newtonsoft.Json.Serialization.NamingStrategy">
9620             <summary>
9621             A base class for resolving how property names and dictionary keys are serialized.
9622             </summary>
9623         </member>
9624         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessDictionaryKeys">
9625             <summary>
9626             A flag indicating whether dictionary keys should be processed.
9627             Defaults to <c>false</c>.
9628             </summary>
9629         </member>
9630         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessExtensionDataNames">
9631             <summary>
9632             A flag indicating whether extension data names should be processed.
9633             Defaults to <c>false</c>.
9634             </summary>
9635         </member>
9636         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.OverrideSpecifiedNames">
9637             <summary>
9638             A flag indicating whether explicitly specified property names,
9639             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>, should be processed.
9640             Defaults to <c>false</c>.
9641             </summary>
9642         </member>
9643         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetPropertyName(System.String,System.Boolean)">
9644             <summary>
9645             Gets the serialized name for a given property name.
9646             </summary>
9647             <param name="name">The initial property name.</param>
9648             <param name="hasSpecifiedName">A flag indicating whether the property has had a name explicitly specified.</param>
9649             <returns>The serialized property name.</returns>
9650         </member>
9651         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetExtensionDataName(System.String)">
9652             <summary>
9653             Gets the serialized name for a given extension data name.
9654             </summary>
9655             <param name="name">The initial extension data name.</param>
9656             <returns>The serialized extension data name.</returns>
9657         </member>
9658         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetDictionaryKey(System.String)">
9659             <summary>
9660             Gets the serialized key for a given dictionary key.
9661             </summary>
9662             <param name="key">The initial dictionary key.</param>
9663             <returns>The serialized dictionary key.</returns>
9664         </member>
9665         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.ResolvePropertyName(System.String)">
9666             <summary>
9667             Resolves the specified property name.
9668             </summary>
9669             <param name="name">The property name to resolve.</param>
9670             <returns>The resolved property name.</returns>
9671         </member>
9672         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
9673             <summary>
9674             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9675             </summary>
9676         </member>
9677         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
9678             <summary>
9679             Resolves a reference to its object.
9680             </summary>
9681             <param name="context">The serialization context.</param>
9682             <param name="reference">The reference to resolve.</param>
9683             <returns>The object that was resolved from the reference.</returns>
9684         </member>
9685         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
9686             <summary>
9687             Gets the reference for the specified object.
9688             </summary>
9689             <param name="context">The serialization context.</param>
9690             <param name="value">The object to get a reference for.</param>
9691             <returns>The reference to the object.</returns>
9692         </member>
9693         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
9694             <summary>
9695             Determines whether the specified object is referenced.
9696             </summary>
9697             <param name="context">The serialization context.</param>
9698             <param name="value">The object to test for a reference.</param>
9699             <returns>
9700                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
9701             </returns>
9702         </member>
9703         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
9704             <summary>
9705             Adds a reference to the specified object.
9706             </summary>
9707             <param name="context">The serialization context.</param>
9708             <param name="reference">The reference.</param>
9709             <param name="value">The object to reference.</param>
9710         </member>
9711         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
9712             <summary>
9713             Represents a trace writer.
9714             </summary>
9715         </member>
9716         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
9717             <summary>
9718             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
9719             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"/>,
9720             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
9721             </summary>
9722             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
9723         </member>
9724         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
9725             <summary>
9726             Writes the specified trace level, message and optional exception.
9727             </summary>
9728             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
9729             <param name="message">The trace message.</param>
9730             <param name="ex">The trace exception. This parameter is optional.</param>
9731         </member>
9732         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
9733             <summary>
9734             Provides methods to get and set values.
9735             </summary>
9736         </member>
9737         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
9738             <summary>
9739             Sets the value.
9740             </summary>
9741             <param name="target">The target to set the value on.</param>
9742             <param name="value">The value to set on the target.</param>
9743         </member>
9744         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
9745             <summary>
9746             Gets the value.
9747             </summary>
9748             <param name="target">The target to get the value from.</param>
9749             <returns>The value.</returns>
9750         </member>
9751         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
9752             <summary>
9753             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9754             </summary>
9755         </member>
9756         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
9757             <summary>
9758             Gets the <see cref="T:System.Type"/> of the collection items.
9759             </summary>
9760             <value>The <see cref="T:System.Type"/> of the collection items.</value>
9761         </member>
9762         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
9763             <summary>
9764             Gets a value indicating whether the collection type is a multidimensional array.
9765             </summary>
9766             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
9767         </member>
9768         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
9769             <summary>
9770             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
9771             </summary>
9772             <value>The function used to create the object.</value>
9773         </member>
9774         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
9775             <summary>
9776             Gets a value indicating whether the creator has a parameter with the collection values.
9777             </summary>
9778             <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
9779         </member>
9780         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
9781             <summary>
9782             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
9783             </summary>
9784             <param name="underlyingType">The underlying type for the contract.</param>
9785         </member>
9786         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
9787             <summary>
9788             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9789             </summary>
9790         </member>
9791         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
9792             <summary>
9793             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
9794             </summary>
9795             <value>The converter.</value>
9796         </member>
9797         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
9798             <summary>
9799             Gets or sets a value indicating whether the collection items preserve object references.
9800             </summary>
9801             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
9802         </member>
9803         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
9804             <summary>
9805             Gets or sets the collection item reference loop handling.
9806             </summary>
9807             <value>The reference loop handling.</value>
9808         </member>
9809         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
9810             <summary>
9811             Gets or sets the collection item type name handling.
9812             </summary>
9813             <value>The type name handling.</value>
9814         </member>
9815         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
9816             <summary>
9817             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
9818             </summary>
9819             <param name="underlyingType">The underlying type for the contract.</param>
9820         </member>
9821         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
9822             <summary>
9823             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
9824             </summary>
9825             <param name="o">The object that raised the callback event.</param>
9826             <param name="context">The streaming context.</param>
9827         </member>
9828         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
9829             <summary>
9830             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
9831             </summary>
9832             <param name="o">The object that raised the callback event.</param>
9833             <param name="context">The streaming context.</param>
9834             <param name="errorContext">The error context.</param>
9835         </member>
9836         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
9837             <summary>
9838             Sets extension data for an object during deserialization.
9839             </summary>
9840             <param name="o">The object to set extension data on.</param>
9841             <param name="key">The extension data key.</param>
9842             <param name="value">The extension data value.</param>
9843         </member>
9844         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
9845             <summary>
9846             Gets extension data for an object during serialization.
9847             </summary>
9848             <param name="o">The object to set extension data on.</param>
9849         </member>
9850         <member name="T:Newtonsoft.Json.Serialization.JsonContract">
9851             <summary>
9852             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9853             </summary>
9854         </member>
9855         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
9856             <summary>
9857             Gets the underlying type for the contract.
9858             </summary>
9859             <value>The underlying type for the contract.</value>
9860         </member>
9861         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
9862             <summary>
9863             Gets or sets the type created during deserialization.
9864             </summary>
9865             <value>The type created during deserialization.</value>
9866         </member>
9867         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
9868             <summary>
9869             Gets or sets whether this type contract is serialized as a reference.
9870             </summary>
9871             <value>Whether this type contract is serialized as a reference.</value>
9872         </member>
9873         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
9874             <summary>
9875             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
9876             </summary>
9877             <value>The converter.</value>
9878         </member>
9879         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
9880             <summary>
9881             Gets or sets all methods called immediately after deserialization of the object.
9882             </summary>
9883             <value>The methods called immediately after deserialization of the object.</value>
9884         </member>
9885         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
9886             <summary>
9887             Gets or sets all methods called during deserialization of the object.
9888             </summary>
9889             <value>The methods called during deserialization of the object.</value>
9890         </member>
9891         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
9892             <summary>
9893             Gets or sets all methods called after serialization of the object graph.
9894             </summary>
9895             <value>The methods called after serialization of the object graph.</value>
9896         </member>
9897         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
9898             <summary>
9899             Gets or sets all methods called before serialization of the object.
9900             </summary>
9901             <value>The methods called before serialization of the object.</value>
9902         </member>
9903         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
9904             <summary>
9905             Gets or sets all method called when an error is thrown during the serialization of the object.
9906             </summary>
9907             <value>The methods called when an error is thrown during the serialization of the object.</value>
9908         </member>
9909         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
9910             <summary>
9911             Gets or sets the default creator method used to create the object.
9912             </summary>
9913             <value>The default creator method used to create the object.</value>
9914         </member>
9915         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
9916             <summary>
9917             Gets or sets a value indicating whether the default creator is non-public.
9918             </summary>
9919             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
9920         </member>
9921         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
9922             <summary>
9923             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9924             </summary>
9925         </member>
9926         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
9927             <summary>
9928             Gets or sets the dictionary key resolver.
9929             </summary>
9930             <value>The dictionary key resolver.</value>
9931         </member>
9932         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
9933             <summary>
9934             Gets the <see cref="T:System.Type"/> of the dictionary keys.
9935             </summary>
9936             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
9937         </member>
9938         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
9939             <summary>
9940             Gets the <see cref="T:System.Type"/> of the dictionary values.
9941             </summary>
9942             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
9943         </member>
9944         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
9945             <summary>
9946             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
9947             </summary>
9948             <value>The function used to create the object.</value>
9949         </member>
9950         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
9951             <summary>
9952             Gets a value indicating whether the creator has a parameter with the dictionary values.
9953             </summary>
9954             <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
9955         </member>
9956         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
9957             <summary>
9958             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
9959             </summary>
9960             <param name="underlyingType">The underlying type for the contract.</param>
9961         </member>
9962         <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
9963             <summary>
9964             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9965             </summary>
9966         </member>
9967         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
9968             <summary>
9969             Gets the object's properties.
9970             </summary>
9971             <value>The object's properties.</value>
9972         </member>
9973         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
9974             <summary>
9975             Gets or sets the property name resolver.
9976             </summary>
9977             <value>The property name resolver.</value>
9978         </member>
9979         <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
9980             <summary>
9981             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
9982             </summary>
9983             <param name="underlyingType">The underlying type for the contract.</param>
9984         </member>
9985         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
9986             <summary>
9987             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9988             </summary>
9989         </member>
9990         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
9991             <summary>
9992             Gets or sets the <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.
9993             </summary>
9994             <value>The <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.</value>
9995         </member>
9996         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
9997             <summary>
9998             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
9999             </summary>
10000             <param name="underlyingType">The underlying type for the contract.</param>
10001         </member>
10002         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
10003             <summary>
10004             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10005             </summary>
10006         </member>
10007         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
10008             <summary>
10009             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
10010             </summary>
10011             <param name="underlyingType">The underlying type for the contract.</param>
10012         </member>
10013         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
10014             <summary>
10015             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10016             </summary>
10017         </member>
10018         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
10019             <summary>
10020             Gets or sets the object member serialization.
10021             </summary>
10022             <value>The member object serialization.</value>
10023         </member>
10024         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
10025             <summary>
10026             Gets or sets a value that indicates whether the object's properties are required.
10027             </summary>
10028             <value>
10029                 A value indicating whether the object's properties are required.
10030             </value>
10031         </member>
10032         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
10033             <summary>
10034             Gets the object's properties.
10035             </summary>
10036             <value>The object's properties.</value>
10037         </member>
10038         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
10039             <summary>
10040             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"/>.
10041             </summary>
10042         </member>
10043         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
10044             <summary>
10045             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
10046             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
10047             </summary>
10048             <value>The function used to create the object.</value>
10049         </member>
10050         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
10051             <summary>
10052             Gets or sets the extension data setter.
10053             </summary>
10054         </member>
10055         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
10056             <summary>
10057             Gets or sets the extension data getter.
10058             </summary>
10059         </member>
10060         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataValueType">
10061             <summary>
10062             Gets or sets the extension data value type.
10063             </summary>
10064         </member>
10065         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataNameResolver">
10066             <summary>
10067             Gets or sets the extension data name resolver.
10068             </summary>
10069             <value>The extension data name resolver.</value>
10070         </member>
10071         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
10072             <summary>
10073             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
10074             </summary>
10075             <param name="underlyingType">The underlying type for the contract.</param>
10076         </member>
10077         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
10078             <summary>
10079             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10080             </summary>
10081         </member>
10082         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
10083             <summary>
10084             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
10085             </summary>
10086             <param name="underlyingType">The underlying type for the contract.</param>
10087         </member>
10088         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
10089             <summary>
10090             Maps a JSON property to a .NET member or constructor parameter.
10091             </summary>
10092         </member>
10093         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
10094             <summary>
10095             Gets or sets the name of the property.
10096             </summary>
10097             <value>The name of the property.</value>
10098         </member>
10099         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
10100             <summary>
10101             Gets or sets the type that declared this property.
10102             </summary>
10103             <value>The type that declared this property.</value>
10104         </member>
10105         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
10106             <summary>
10107             Gets or sets the order of serialization of a member.
10108             </summary>
10109             <value>The numeric order of serialization.</value>
10110         </member>
10111         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
10112             <summary>
10113             Gets or sets the name of the underlying member or parameter.
10114             </summary>
10115             <value>The name of the underlying member or parameter.</value>
10116         </member>
10117         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
10118             <summary>
10119             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
10120             </summary>
10121             <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>
10122         </member>
10123         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
10124             <summary>
10125             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
10126             </summary>
10127             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
10128         </member>
10129         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
10130             <summary>
10131             Gets or sets the type of the property.
10132             </summary>
10133             <value>The type of the property.</value>
10134         </member>
10135         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
10136             <summary>
10137             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
10138             If set this converter takes precedence over the contract converter for the property type.
10139             </summary>
10140             <value>The converter.</value>
10141         </member>
10142         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
10143             <summary>
10144             Gets or sets the member converter.
10145             </summary>
10146             <value>The member converter.</value>
10147         </member>
10148         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
10149             <summary>
10150             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
10151             </summary>
10152             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
10153         </member>
10154         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
10155             <summary>
10156             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
10157             </summary>
10158             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
10159         </member>
10160         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
10161             <summary>
10162             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
10163             </summary>
10164             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
10165         </member>
10166         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
10167             <summary>
10168             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
10169             </summary>
10170             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
10171         </member>
10172         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
10173             <summary>
10174             Gets the default value.
10175             </summary>
10176             <value>The default value.</value>
10177         </member>
10178         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
10179             <summary>
10180             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
10181             </summary>
10182             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
10183         </member>
10184         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
10185             <summary>
10186             Gets or sets a value indicating whether this property preserves object references.
10187             </summary>
10188             <value>
10189                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
10190             </value>
10191         </member>
10192         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
10193             <summary>
10194             Gets or sets the property null value handling.
10195             </summary>
10196             <value>The null value handling.</value>
10197         </member>
10198         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
10199             <summary>
10200             Gets or sets the property default value handling.
10201             </summary>
10202             <value>The default value handling.</value>
10203         </member>
10204         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
10205             <summary>
10206             Gets or sets the property reference loop handling.
10207             </summary>
10208             <value>The reference loop handling.</value>
10209         </member>
10210         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
10211             <summary>
10212             Gets or sets the property object creation handling.
10213             </summary>
10214             <value>The object creation handling.</value>
10215         </member>
10216         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
10217             <summary>
10218             Gets or sets or sets the type name handling.
10219             </summary>
10220             <value>The type name handling.</value>
10221         </member>
10222         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
10223             <summary>
10224             Gets or sets a predicate used to determine whether the property should be serialized.
10225             </summary>
10226             <value>A predicate used to determine whether the property should be serialized.</value>
10227         </member>
10228         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
10229             <summary>
10230             Gets or sets a predicate used to determine whether the property should be deserialized.
10231             </summary>
10232             <value>A predicate used to determine whether the property should be deserialized.</value>
10233         </member>
10234         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
10235             <summary>
10236             Gets or sets a predicate used to determine whether the property should be serialized.
10237             </summary>
10238             <value>A predicate used to determine whether the property should be serialized.</value>
10239         </member>
10240         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
10241             <summary>
10242             Gets or sets an action used to set whether the property has been deserialized.
10243             </summary>
10244             <value>An action used to set whether the property has been deserialized.</value>
10245         </member>
10246         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
10247             <summary>
10248             Returns a <see cref="T:System.String"/> that represents this instance.
10249             </summary>
10250             <returns>
10251             A <see cref="T:System.String"/> that represents this instance.
10252             </returns>
10253         </member>
10254         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
10255             <summary>
10256             Gets or sets the converter used when serializing the property's collection items.
10257             </summary>
10258             <value>The collection's items converter.</value>
10259         </member>
10260         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
10261             <summary>
10262             Gets or sets whether this property's collection items are serialized as a reference.
10263             </summary>
10264             <value>Whether this property's collection items are serialized as a reference.</value>
10265         </member>
10266         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
10267             <summary>
10268             Gets or sets the type name handling used when serializing the property's collection items.
10269             </summary>
10270             <value>The collection's items type name handling.</value>
10271         </member>
10272         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
10273             <summary>
10274             Gets or sets the reference loop handling used when serializing the property's collection items.
10275             </summary>
10276             <value>The collection's items reference loop handling.</value>
10277         </member>
10278         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
10279             <summary>
10280             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
10281             </summary>
10282         </member>
10283         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
10284             <summary>
10285             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
10286             </summary>
10287             <param name="type">The type.</param>
10288         </member>
10289         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
10290             <summary>
10291             When implemented in a derived class, extracts the key from the specified element.
10292             </summary>
10293             <param name="item">The element from which to extract the key.</param>
10294             <returns>The key for the specified element.</returns>
10295         </member>
10296         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
10297             <summary>
10298             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
10299             </summary>
10300             <param name="property">The property to add to the collection.</param>
10301         </member>
10302         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
10303             <summary>
10304             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
10305             First attempts to get an exact case match of <paramref name="propertyName"/> and then
10306             a case insensitive match.
10307             </summary>
10308             <param name="propertyName">Name of the property.</param>
10309             <returns>A matching property if found.</returns>
10310         </member>
10311         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
10312             <summary>
10313             Gets a property by property name.
10314             </summary>
10315             <param name="propertyName">The name of the property to get.</param>
10316             <param name="comparisonType">Type property name string comparison.</param>
10317             <returns>A matching property if found.</returns>
10318         </member>
10319         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
10320             <summary>
10321             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10322             </summary>
10323         </member>
10324         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
10325             <summary>
10326             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
10327             </summary>
10328             <param name="underlyingType">The underlying type for the contract.</param>
10329         </member>
10330         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
10331             <summary>
10332             Lookup and create an instance of the <see cref="T:Newtonsoft.Json.JsonConverter"/> type described by the argument.
10333             </summary>
10334             <param name="converterType">The <see cref="T:Newtonsoft.Json.JsonConverter"/> type to create.</param>
10335             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
10336             If <c>null</c>, the default constructor is used.</param>
10337         </member>
10338         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
10339             <summary>
10340             Represents a trace writer that writes to memory. When the trace message limit is
10341             reached then old trace messages will be removed as new messages are added.
10342             </summary>
10343         </member>
10344         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
10345             <summary>
10346             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
10347             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"/>,
10348             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
10349             </summary>
10350             <value>
10351             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
10352             </value>
10353         </member>
10354         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
10355             <summary>
10356             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
10357             </summary>
10358         </member>
10359         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
10360             <summary>
10361             Writes the specified trace level, message and optional exception.
10362             </summary>
10363             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
10364             <param name="message">The trace message.</param>
10365             <param name="ex">The trace exception. This parameter is optional.</param>
10366         </member>
10367         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
10368             <summary>
10369             Returns an enumeration of the most recent trace messages.
10370             </summary>
10371             <returns>An enumeration of the most recent trace messages.</returns>
10372         </member>
10373         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
10374             <summary>
10375             Returns a <see cref="T:System.String"/> of the most recent trace messages.
10376             </summary>
10377             <returns>
10378             A <see cref="T:System.String"/> of the most recent trace messages.
10379             </returns>
10380         </member>
10381         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
10382             <summary>
10383             Represents a method that constructs an object.
10384             </summary>
10385             <typeparam name="T">The object type to create.</typeparam>
10386         </member>
10387         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
10388             <summary>
10389             When applied to a method, specifies that the method is called when an error occurs serializing an object.
10390             </summary>
10391         </member>
10392         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
10393             <summary>
10394             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"/>.
10395             </summary>
10396         </member>
10397         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
10398             <summary>
10399             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
10400             </summary>
10401             <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>
10402         </member>
10403         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
10404             <summary>
10405             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
10406             </summary>
10407             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
10408             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
10409         </member>
10410         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
10411             <summary>
10412             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
10413             </summary>
10414             <param name="attributeType">The type of the attributes.</param>
10415             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
10416             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
10417         </member>
10418         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
10419             <summary>
10420             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
10421             </summary>
10422         </member>
10423         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
10424             <summary>
10425             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
10426             </summary>
10427             <param name="memberInfo">The member info.</param>
10428         </member>
10429         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
10430             <summary>
10431             Sets the value.
10432             </summary>
10433             <param name="target">The target to set the value on.</param>
10434             <param name="value">The value to set on the target.</param>
10435         </member>
10436         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
10437             <summary>
10438             Gets the value.
10439             </summary>
10440             <param name="target">The target to get the value from.</param>
10441             <returns>The value.</returns>
10442         </member>
10443         <member name="T:Newtonsoft.Json.TypeNameAssemblyFormatHandling">
10444             <summary>
10445             Indicates the method that will be used during deserialization for locating and loading assemblies.
10446             </summary>
10447         </member>
10448         <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple">
10449             <summary>
10450             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.
10451             </summary>
10452         </member>
10453         <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Full">
10454             <summary>
10455             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.
10456             </summary>
10457         </member>
10458         <member name="T:Newtonsoft.Json.StringEscapeHandling">
10459             <summary>
10460             Specifies how strings are escaped when writing JSON text.
10461             </summary>
10462         </member>
10463         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
10464             <summary>
10465             Only control characters (e.g. newline) are escaped.
10466             </summary>
10467         </member>
10468         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
10469             <summary>
10470             All non-ASCII and control characters (e.g. newline) are escaped.
10471             </summary>
10472         </member>
10473         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
10474             <summary>
10475             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
10476             </summary>
10477         </member>
10478         <member name="T:Newtonsoft.Json.TypeNameHandling">
10479             <summary>
10480             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10481             </summary>
10482             <remarks>
10483             <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
10484             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
10485             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
10486             </remarks>
10487         </member>
10488         <member name="F:Newtonsoft.Json.TypeNameHandling.None">
10489             <summary>
10490             Do not include the .NET type name when serializing types.
10491             </summary>
10492         </member>
10493         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
10494             <summary>
10495             Include the .NET type name when serializing into a JSON object structure.
10496             </summary>
10497         </member>
10498         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
10499             <summary>
10500             Include the .NET type name when serializing into a JSON array structure.
10501             </summary>
10502         </member>
10503         <member name="F:Newtonsoft.Json.TypeNameHandling.All">
10504             <summary>
10505             Always include the .NET type name when serializing.
10506             </summary>
10507         </member>
10508         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
10509             <summary>
10510             Include the .NET type name when the type of the object being serialized is not the same as its declared type.
10511             Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON
10512             you must specify a root type object with <see cref="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"/>
10513             or <see cref="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)"/>.
10514             </summary>
10515         </member>
10516         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
10517             <summary>
10518             Determines whether the collection is <c>null</c> or empty.
10519             </summary>
10520             <param name="collection">The collection.</param>
10521             <returns>
10522                 <c>true</c> if the collection is <c>null</c> or empty; otherwise, <c>false</c>.
10523             </returns>
10524         </member>
10525         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
10526             <summary>
10527             Adds the elements of the specified collection to the specified generic <see cref="T:System.Collections.Generic.IList`1"/>.
10528             </summary>
10529             <param name="initial">The list to add to.</param>
10530             <param name="collection">The collection of elements to add.</param>
10531         </member>
10532         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
10533             <summary>
10534             Converts the value to the specified type. If the value is unable to be converted, the
10535             value is checked whether it assignable to the specified type.
10536             </summary>
10537             <param name="initialValue">The value to convert.</param>
10538             <param name="culture">The culture to use when converting.</param>
10539             <param name="targetType">The type to convert or cast the value to.</param>
10540             <returns>
10541             The converted type. If conversion was unsuccessful, the initial value
10542             is returned if assignable to the target type.
10543             </returns>
10544         </member>
10545         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultExp64Power10">
10546             <summary>
10547             Exponents for both powers of 10 and 0.1
10548             </summary>
10549         </member>
10550         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10">
10551             <summary>
10552             Normalized powers of 10
10553             </summary>
10554         </member>
10555         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10Inv">
10556             <summary>
10557             Normalized powers of 0.1
10558             </summary>
10559         </member>
10560         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultExp64Power10By16">
10561             <summary>
10562             Exponents for both powers of 10^16 and 0.1^16
10563             </summary>
10564         </member>
10565         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10By16">
10566             <summary>
10567             Normalized powers of 10^16
10568             </summary>
10569         </member>
10570         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10By16Inv">
10571             <summary>
10572             Normalized powers of 0.1^16
10573             </summary>
10574         </member>
10575         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.PackDouble(System.Boolean,System.UInt64,System.Int32)">
10576             <summary>
10577             Packs <paramref name="val"/>*10^<paramref name="scale"/> as 64-bit floating point value according to IEEE 754 standard
10578             </summary>
10579             <param name="negative">Sign</param>
10580             <param name="val">Mantissa</param>
10581             <param name="scale">Exponent</param>
10582             <remarks>
10583             Adoption of native function NumberToDouble() from coreclr sources,
10584             see https://github.com/dotnet/coreclr/blob/master/src/classlibnative/bcltype/number.cpp#L451
10585             </remarks>
10586         </member>
10587         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
10588             <summary>
10589             Helper method for generating a MetaObject which calls a
10590             specific method on Dynamic that returns a result
10591             </summary>
10592         </member>
10593         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
10594             <summary>
10595             Helper method for generating a MetaObject which calls a
10596             specific method on Dynamic, but uses one of the arguments for
10597             the result.
10598             </summary>
10599         </member>
10600         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
10601             <summary>
10602             Helper method for generating a MetaObject which calls a
10603             specific method on Dynamic, but uses one of the arguments for
10604             the result.
10605             </summary>
10606         </member>
10607         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
10608             <summary>
10609             Returns a Restrictions object which includes our current restrictions merged
10610             with a restriction limiting our type
10611             </summary>
10612         </member>
10613         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
10614             <summary>
10615             Gets a dictionary of the names and values of an <see cref="T:System.Enum"/> type.
10616             </summary>
10617             <returns></returns>
10618         </member>
10619         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
10620             <summary>
10621             Gets a dictionary of the names and values of an Enum type.
10622             </summary>
10623             <param name="enumType">The enum type to get names and values for.</param>
10624             <returns></returns>
10625         </member>
10626         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
10627             <summary>
10628             Gets the type of the typed collection's items.
10629             </summary>
10630             <param name="type">The type.</param>
10631             <returns>The type of the typed collection's items.</returns>
10632         </member>
10633         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
10634             <summary>
10635             Gets the member's underlying type.
10636             </summary>
10637             <param name="member">The member.</param>
10638             <returns>The underlying type of the member.</returns>
10639         </member>
10640         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
10641             <summary>
10642             Determines whether the member is an indexed property.
10643             </summary>
10644             <param name="member">The member.</param>
10645             <returns>
10646                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
10647             </returns>
10648         </member>
10649         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
10650             <summary>
10651             Determines whether the property is an indexed property.
10652             </summary>
10653             <param name="property">The property.</param>
10654             <returns>
10655                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
10656             </returns>
10657         </member>
10658         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
10659             <summary>
10660             Gets the member's value on the object.
10661             </summary>
10662             <param name="member">The member.</param>
10663             <param name="target">The target object.</param>
10664             <returns>The member's value on the object.</returns>
10665         </member>
10666         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
10667             <summary>
10668             Sets the member's value on the target object.
10669             </summary>
10670             <param name="member">The member.</param>
10671             <param name="target">The target.</param>
10672             <param name="value">The value.</param>
10673         </member>
10674         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
10675             <summary>
10676             Determines whether the specified MemberInfo can be read.
10677             </summary>
10678             <param name="member">The MemberInfo to determine whether can be read.</param>
10679             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
10680             <returns>
10681                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
10682             </returns>
10683         </member>
10684         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
10685             <summary>
10686             Determines whether the specified MemberInfo can be set.
10687             </summary>
10688             <param name="member">The MemberInfo to determine whether can be set.</param>
10689             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
10690             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
10691             <returns>
10692                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
10693             </returns>
10694         </member>
10695         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
10696             <summary>
10697             Builds a string. Unlike <see cref="T:System.Text.StringBuilder"/> this class lets you reuse its internal buffer.
10698             </summary>
10699         </member>
10700         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
10701             <summary>
10702             Determines whether the string is all white space. Empty string will return <c>false</c>.
10703             </summary>
10704             <param name="s">The string to test whether it is all white space.</param>
10705             <returns>
10706                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
10707             </returns>
10708         </member>
10709         <member name="T:Newtonsoft.Json.WriteState">
10710             <summary>
10711             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
10712             </summary>
10713         </member>
10714         <member name="F:Newtonsoft.Json.WriteState.Error">
10715             <summary>
10716             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
10717             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.
10718             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls result in an <see cref="T:System.InvalidOperationException"/> being thrown.
10719             </summary>
10720         </member>
10721         <member name="F:Newtonsoft.Json.WriteState.Closed">
10722             <summary>
10723             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
10724             </summary>
10725         </member>
10726         <member name="F:Newtonsoft.Json.WriteState.Object">
10727             <summary>
10728             An object is being written. 
10729             </summary>
10730         </member>
10731         <member name="F:Newtonsoft.Json.WriteState.Array">
10732             <summary>
10733             An array is being written.
10734             </summary>
10735         </member>
10736         <member name="F:Newtonsoft.Json.WriteState.Constructor">
10737             <summary>
10738             A constructor is being written.
10739             </summary>
10740         </member>
10741         <member name="F:Newtonsoft.Json.WriteState.Property">
10742             <summary>
10743             A property is being written.
10744             </summary>
10745         </member>
10746         <member name="F:Newtonsoft.Json.WriteState.Start">
10747             <summary>
10748             A <see cref="T:Newtonsoft.Json.JsonWriter"/> write method has not been called.
10749             </summary>
10750         </member>
10751     </members>
10752 </doc>