Implement update check on startup
[ArchiSteamFarm.git] / packages / Newtonsoft.Json.8.0.1-beta1 / lib / net40 / Newtonsoft.Json.xml
blob73a467e1a50709cea5fbabb6fced43ef10f86fae
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Newtonsoft.Json</name>
5     </assembly>
6     <members>
7         <member name="T:Newtonsoft.Json.Bson.BsonReader">
8             <summary>
9             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
10             </summary>
11         </member>
12         <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
13             <summary>
14             Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
15             </summary>
16             <value>
17                 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
18             </value>
19         </member>
20         <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
21             <summary>
22             Gets or sets a value indicating whether the root object will be read as a JSON array.
23             </summary>
24             <value>
25                 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
26             </value>
27         </member>
28         <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
29             <summary>
30             Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
31             </summary>
32             <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
33         </member>
34         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
35             <summary>
36             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
37             </summary>
38             <param name="stream">The stream.</param>
39         </member>
40         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
41             <summary>
42             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
43             </summary>
44             <param name="reader">The reader.</param>
45         </member>
46         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
47             <summary>
48             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
49             </summary>
50             <param name="stream">The stream.</param>
51             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
52             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
53         </member>
54         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
55             <summary>
56             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
57             </summary>
58             <param name="reader">The reader.</param>
59             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
60             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
61         </member>
62         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
63             <summary>
64             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
65             </summary>
66             <returns>
67             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
68             </returns>
69         </member>
70         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
71             <summary>
72             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
73             </summary>
74             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
75         </member>
76         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
77             <summary>
78             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
79             </summary>
80             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
81         </member>
82         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
83             <summary>
84             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
85             </summary>
86             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
87         </member>
88         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
89             <summary>
90             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
91             </summary>
92             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
93         </member>
94         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
95             <summary>
96             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
97             </summary>
98             <returns>
99             A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
100             </returns>
101         </member>
102         <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
103             <summary>
104             Reads the next JSON token from the stream.
105             </summary>
106             <returns>
107             true if the next token was read successfully; false if there are no more tokens to read.
108             </returns>
109         </member>
110         <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
111             <summary>
112             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
113             </summary>
114         </member>
115         <member name="T:Newtonsoft.Json.Bson.BsonWriter">
116             <summary>
117             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
118             </summary>
119         </member>
120         <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
121             <summary>
122             Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
123             When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
124             </summary>
125             <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
126         </member>
127         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
128             <summary>
129             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
130             </summary>
131             <param name="stream">The stream.</param>
132         </member>
133         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
134             <summary>
135             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
136             </summary>
137             <param name="writer">The writer.</param>
138         </member>
139         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
140             <summary>
141             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
142             </summary>
143         </member>
144         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
145             <summary>
146             Writes the end.
147             </summary>
148             <param name="token">The token.</param>
149         </member>
150         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
151             <summary>
152             Writes out a comment <code>/*...*/</code> containing the specified text.
153             </summary>
154             <param name="text">Text to place inside the comment.</param>
155         </member>
156         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
157             <summary>
158             Writes the start of a constructor with the given name.
159             </summary>
160             <param name="name">The name of the constructor.</param>
161         </member>
162         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
163             <summary>
164             Writes raw JSON.
165             </summary>
166             <param name="json">The raw JSON to write.</param>
167         </member>
168         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
169             <summary>
170             Writes raw JSON where a value is expected and updates the writer's state.
171             </summary>
172             <param name="json">The raw JSON to write.</param>
173         </member>
174         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
175             <summary>
176             Writes the beginning of a JSON array.
177             </summary>
178         </member>
179         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
180             <summary>
181             Writes the beginning of a JSON object.
182             </summary>
183         </member>
184         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
185             <summary>
186             Writes the property name of a name/value pair on a JSON object.
187             </summary>
188             <param name="name">The name of the property.</param>
189         </member>
190         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
191             <summary>
192             Closes this stream and the underlying stream.
193             </summary>
194         </member>
195         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
196             <summary>
197             Writes a <see cref="T:System.Object"/> value.
198             An error will raised if the value cannot be written as a single JSON token.
199             </summary>
200             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
201         </member>
202         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
203             <summary>
204             Writes a null value.
205             </summary>
206         </member>
207         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
208             <summary>
209             Writes an undefined value.
210             </summary>
211         </member>
212         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
213             <summary>
214             Writes a <see cref="T:System.String"/> value.
215             </summary>
216             <param name="value">The <see cref="T:System.String"/> value to write.</param>
217         </member>
218         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
219             <summary>
220             Writes a <see cref="T:System.Int32"/> value.
221             </summary>
222             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
223         </member>
224         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
225             <summary>
226             Writes a <see cref="T:System.UInt32"/> value.
227             </summary>
228             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
229         </member>
230         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
231             <summary>
232             Writes a <see cref="T:System.Int64"/> value.
233             </summary>
234             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
235         </member>
236         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
237             <summary>
238             Writes a <see cref="T:System.UInt64"/> value.
239             </summary>
240             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
241         </member>
242         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
243             <summary>
244             Writes a <see cref="T:System.Single"/> value.
245             </summary>
246             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
247         </member>
248         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
249             <summary>
250             Writes a <see cref="T:System.Double"/> value.
251             </summary>
252             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
253         </member>
254         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
255             <summary>
256             Writes a <see cref="T:System.Boolean"/> value.
257             </summary>
258             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
259         </member>
260         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
261             <summary>
262             Writes a <see cref="T:System.Int16"/> value.
263             </summary>
264             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
265         </member>
266         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
267             <summary>
268             Writes a <see cref="T:System.UInt16"/> value.
269             </summary>
270             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
271         </member>
272         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
273             <summary>
274             Writes a <see cref="T:System.Char"/> value.
275             </summary>
276             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
277         </member>
278         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
279             <summary>
280             Writes a <see cref="T:System.Byte"/> value.
281             </summary>
282             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
283         </member>
284         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
285             <summary>
286             Writes a <see cref="T:System.SByte"/> value.
287             </summary>
288             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
289         </member>
290         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
291             <summary>
292             Writes a <see cref="T:System.Decimal"/> value.
293             </summary>
294             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
295         </member>
296         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
297             <summary>
298             Writes a <see cref="T:System.DateTime"/> value.
299             </summary>
300             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
301         </member>
302         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
303             <summary>
304             Writes a <see cref="T:System.DateTimeOffset"/> value.
305             </summary>
306             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
307         </member>
308         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
309             <summary>
310             Writes a <see cref="T:System.Byte"/>[] value.
311             </summary>
312             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
313         </member>
314         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
315             <summary>
316             Writes a <see cref="T:System.Guid"/> value.
317             </summary>
318             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
319         </member>
320         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
321             <summary>
322             Writes a <see cref="T:System.TimeSpan"/> value.
323             </summary>
324             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
325         </member>
326         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
327             <summary>
328             Writes a <see cref="T:System.Uri"/> value.
329             </summary>
330             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
331         </member>
332         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
333             <summary>
334             Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
335             </summary>
336             <param name="value">The Object ID value to write.</param>
337         </member>
338         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
339             <summary>
340             Writes a BSON regex.
341             </summary>
342             <param name="pattern">The regex pattern.</param>
343             <param name="options">The regex options.</param>
344         </member>
345         <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
346             <summary>
347             Represents a BSON Oid (object id).
348             </summary>
349         </member>
350         <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
351             <summary>
352             Gets or sets the value of the Oid.
353             </summary>
354             <value>The value of the Oid.</value>
355         </member>
356         <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
357             <summary>
358             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
359             </summary>
360             <param name="value">The Oid value.</param>
361         </member>
362         <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
363             <summary>
364             Converts a binary value to and from a base 64 string value.
365             </summary>
366         </member>
367         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
368             <summary>
369             Writes the JSON representation of the object.
370             </summary>
371             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
372             <param name="value">The value.</param>
373             <param name="serializer">The calling serializer.</param>
374         </member>
375         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
376             <summary>
377             Reads the JSON representation of the object.
378             </summary>
379             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
380             <param name="objectType">Type of the object.</param>
381             <param name="existingValue">The existing value of object being read.</param>
382             <param name="serializer">The calling serializer.</param>
383             <returns>The object value.</returns>
384         </member>
385         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
386             <summary>
387             Determines whether this instance can convert the specified object type.
388             </summary>
389             <param name="objectType">Type of the object.</param>
390             <returns>
391                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
392             </returns>
393         </member>
394         <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
395             <summary>
396             Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
397             </summary>
398         </member>
399         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
400             <summary>
401             Writes the JSON representation of the object.
402             </summary>
403             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
404             <param name="value">The value.</param>
405             <param name="serializer">The calling serializer.</param>
406         </member>
407         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
408             <summary>
409             Reads the JSON representation of the object.
410             </summary>
411             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
412             <param name="objectType">Type of the object.</param>
413             <param name="existingValue">The existing value of object being read.</param>
414             <param name="serializer">The calling serializer.</param>
415             <returns>The object value.</returns>
416         </member>
417         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
418             <summary>
419             Determines whether this instance can convert the specified value type.
420             </summary>
421             <param name="valueType">Type of the value.</param>
422             <returns>
423                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
424             </returns>
425         </member>
426         <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
427             <summary>
428             Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
429             </summary>
430         </member>
431         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
432             <summary>
433             Writes the JSON representation of the object.
434             </summary>
435             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
436             <param name="value">The value.</param>
437             <param name="serializer">The calling serializer.</param>
438         </member>
439         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
440             <summary>
441             Reads the JSON representation of the object.
442             </summary>
443             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
444             <param name="objectType">Type of the object.</param>
445             <param name="existingValue">The existing value of object being read.</param>
446             <param name="serializer">The calling serializer.</param>
447             <returns>The object value.</returns>
448         </member>
449         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
450             <summary>
451             Determines whether this instance can convert the specified value type.
452             </summary>
453             <param name="valueType">Type of the value.</param>
454             <returns>
455                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
456             </returns>
457         </member>
458         <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
459             <summary>
460             Create a custom object
461             </summary>
462             <typeparam name="T">The object type to convert.</typeparam>
463         </member>
464         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
465             <summary>
466             Writes the JSON representation of the object.
467             </summary>
468             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
469             <param name="value">The value.</param>
470             <param name="serializer">The calling serializer.</param>
471         </member>
472         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
473             <summary>
474             Reads the JSON representation of the object.
475             </summary>
476             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
477             <param name="objectType">Type of the object.</param>
478             <param name="existingValue">The existing value of object being read.</param>
479             <param name="serializer">The calling serializer.</param>
480             <returns>The object value.</returns>
481         </member>
482         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
483             <summary>
484             Creates an object which will then be populated by the serializer.
485             </summary>
486             <param name="objectType">Type of the object.</param>
487             <returns>The created object.</returns>
488         </member>
489         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
490             <summary>
491             Determines whether this instance can convert the specified object type.
492             </summary>
493             <param name="objectType">Type of the object.</param>
494             <returns>
495                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
496             </returns>
497         </member>
498         <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
499             <summary>
500             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
501             </summary>
502             <value>
503                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
504             </value>
505         </member>
506         <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
507             <summary>
508             Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
509             </summary>
510         </member>
511         <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
512             <summary>
513             Determines whether this instance can convert the specified object type.
514             </summary>
515             <param name="objectType">Type of the object.</param>
516             <returns>
517                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
518             </returns>
519         </member>
520         <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
521             <summary>
522             Converts a F# discriminated union type to and from JSON.
523             </summary>
524         </member>
525         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
526             <summary>
527             Writes the JSON representation of the object.
528             </summary>
529             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
530             <param name="value">The value.</param>
531             <param name="serializer">The calling serializer.</param>
532         </member>
533         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
534             <summary>
535             Reads the JSON representation of the object.
536             </summary>
537             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
538             <param name="objectType">Type of the object.</param>
539             <param name="existingValue">The existing value of object being read.</param>
540             <param name="serializer">The calling serializer.</param>
541             <returns>The object value.</returns>
542         </member>
543         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
544             <summary>
545             Determines whether this instance can convert the specified object type.
546             </summary>
547             <param name="objectType">Type of the object.</param>
548             <returns>
549                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
550             </returns>
551         </member>
552         <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
553             <summary>
554             Converts an Entity Framework EntityKey to and from JSON.
555             </summary>
556         </member>
557         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
558             <summary>
559             Writes the JSON representation of the object.
560             </summary>
561             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
562             <param name="value">The value.</param>
563             <param name="serializer">The calling serializer.</param>
564         </member>
565         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
566             <summary>
567             Reads the JSON representation of the object.
568             </summary>
569             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
570             <param name="objectType">Type of the object.</param>
571             <param name="existingValue">The existing value of object being read.</param>
572             <param name="serializer">The calling serializer.</param>
573             <returns>The object value.</returns>
574         </member>
575         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
576             <summary>
577             Determines whether this instance can convert the specified object type.
578             </summary>
579             <param name="objectType">Type of the object.</param>
580             <returns>
581                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
582             </returns>
583         </member>
584         <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
585             <summary>
586             Converts an ExpandoObject to and from JSON.
587             </summary>
588         </member>
589         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
590             <summary>
591             Writes the JSON representation of the object.
592             </summary>
593             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
594             <param name="value">The value.</param>
595             <param name="serializer">The calling serializer.</param>
596         </member>
597         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
598             <summary>
599             Reads the JSON representation of the object.
600             </summary>
601             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
602             <param name="objectType">Type of the object.</param>
603             <param name="existingValue">The existing value of object being read.</param>
604             <param name="serializer">The calling serializer.</param>
605             <returns>The object value.</returns>
606         </member>
607         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
608             <summary>
609             Determines whether this instance can convert the specified object type.
610             </summary>
611             <param name="objectType">Type of the object.</param>
612             <returns>
613                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
614             </returns>
615         </member>
616         <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
617             <summary>
618             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
619             </summary>
620             <value>
621                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
622             </value>
623         </member>
624         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
625             <summary>
626             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
627             </summary>
628         </member>
629         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
630             <summary>
631             Writes the JSON representation of the object.
632             </summary>
633             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
634             <param name="value">The value.</param>
635             <param name="serializer">The calling serializer.</param>
636         </member>
637         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
638             <summary>
639             Reads the JSON representation of the object.
640             </summary>
641             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
642             <param name="objectType">Type of the object.</param>
643             <param name="existingValue">The existing value of object being read.</param>
644             <param name="serializer">The calling serializer.</param>
645             <returns>The object value.</returns>
646         </member>
647         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
648             <summary>
649             Determines whether this instance can convert the specified object type.
650             </summary>
651             <param name="objectType">Type of the object.</param>
652             <returns>
653                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
654             </returns>
655         </member>
656         <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
657             <summary>
658             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
659             </summary>
660         </member>
661         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
662             <summary>
663             Writes the JSON representation of the object.
664             </summary>
665             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
666             <param name="value">The value.</param>
667             <param name="serializer">The calling serializer.</param>
668         </member>
669         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
670             <summary>
671             Reads the JSON representation of the object.
672             </summary>
673             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
674             <param name="objectType">Type of the object.</param>
675             <param name="existingValue">The existing value of object being read.</param>
676             <param name="serializer">The calling serializer.</param>
677             <returns>The object value.</returns>
678         </member>
679         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
680             <summary>
681             Determines whether this instance can convert the specified object type.
682             </summary>
683             <param name="objectType">Type of the object.</param>
684             <returns>
685                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
686             </returns>
687         </member>
688         <member name="T:Newtonsoft.Json.Converters.RegexConverter">
689             <summary>
690             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
691             </summary>
692         </member>
693         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
694             <summary>
695             Writes the JSON representation of the object.
696             </summary>
697             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
698             <param name="value">The value.</param>
699             <param name="serializer">The calling serializer.</param>
700         </member>
701         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
702             <summary>
703             Reads the JSON representation of the object.
704             </summary>
705             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
706             <param name="objectType">Type of the object.</param>
707             <param name="existingValue">The existing value of object being read.</param>
708             <param name="serializer">The calling serializer.</param>
709             <returns>The object value.</returns>
710         </member>
711         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
712             <summary>
713             Determines whether this instance can convert the specified object type.
714             </summary>
715             <param name="objectType">Type of the object.</param>
716             <returns>
717                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
718             </returns>
719         </member>
720         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
721             <summary>
722             Converts an <see cref="T:System.Enum"/> to and from its name string value.
723             </summary>
724         </member>
725         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
726             <summary>
727             Gets or sets a value indicating whether the written enum text should be camel case.
728             </summary>
729             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
730         </member>
731         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
732             <summary>
733             Gets or sets a value indicating whether integer values are allowed.
734             </summary>
735             <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
736         </member>
737         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
738             <summary>
739             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
740             </summary>
741         </member>
742         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
743             <summary>
744             Writes the JSON representation of the object.
745             </summary>
746             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
747             <param name="value">The value.</param>
748             <param name="serializer">The calling serializer.</param>
749         </member>
750         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
751             <summary>
752             Reads the JSON representation of the object.
753             </summary>
754             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
755             <param name="objectType">Type of the object.</param>
756             <param name="existingValue">The existing value of object being read.</param>
757             <param name="serializer">The calling serializer.</param>
758             <returns>The object value.</returns>
759         </member>
760         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
761             <summary>
762             Determines whether this instance can convert the specified object type.
763             </summary>
764             <param name="objectType">Type of the object.</param>
765             <returns>
766             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
767             </returns>
768         </member>
769         <member name="T:Newtonsoft.Json.Converters.VersionConverter">
770             <summary>
771             Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
772             </summary>
773         </member>
774         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
775             <summary>
776             Writes the JSON representation of the object.
777             </summary>
778             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
779             <param name="value">The value.</param>
780             <param name="serializer">The calling serializer.</param>
781         </member>
782         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
783             <summary>
784             Reads the JSON representation of the object.
785             </summary>
786             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
787             <param name="objectType">Type of the object.</param>
788             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
789             <param name="serializer">The calling serializer.</param>
790             <returns>The object value.</returns>
791         </member>
792         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
793             <summary>
794             Determines whether this instance can convert the specified object type.
795             </summary>
796             <param name="objectType">Type of the object.</param>
797             <returns>
798                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
799             </returns>
800         </member>
801         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
802             <summary>
803             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
804             </summary>
805         </member>
806         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
807             <summary>
808             Gets or sets the date time styles used when converting a date to and from JSON.
809             </summary>
810             <value>The date time styles used when converting a date to and from JSON.</value>
811         </member>
812         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
813             <summary>
814             Gets or sets the date time format used when converting a date to and from JSON.
815             </summary>
816             <value>The date time format used when converting a date to and from JSON.</value>
817         </member>
818         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
819             <summary>
820             Gets or sets the culture used when converting a date to and from JSON.
821             </summary>
822             <value>The culture used when converting a date to and from JSON.</value>
823         </member>
824         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
825             <summary>
826             Writes the JSON representation of the object.
827             </summary>
828             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
829             <param name="value">The value.</param>
830             <param name="serializer">The calling serializer.</param>
831         </member>
832         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
833             <summary>
834             Reads the JSON representation of the object.
835             </summary>
836             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
837             <param name="objectType">Type of the object.</param>
838             <param name="existingValue">The existing value of object being read.</param>
839             <param name="serializer">The calling serializer.</param>
840             <returns>The object value.</returns>
841         </member>
842         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
843             <summary>
844             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
845             </summary>
846         </member>
847         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
848             <summary>
849             Writes the JSON representation of the object.
850             </summary>
851             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
852             <param name="value">The value.</param>
853             <param name="serializer">The calling serializer.</param>
854         </member>
855         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
856             <summary>
857             Reads the JSON representation of the object.
858             </summary>
859             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
860             <param name="objectType">Type of the object.</param>
861             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
862             <param name="serializer">The calling serializer.</param>
863             <returns>The object value.</returns>
864         </member>
865         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
866             <summary>
867             Converts XML to and from JSON.
868             </summary>
869         </member>
870         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
871             <summary>
872             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
873             </summary>
874             <value>The name of the deserialize root element.</value>
875         </member>
876         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
877             <summary>
878             Gets or sets a flag to indicate whether to write the Json.NET array attribute.
879             This attribute helps preserve arrays when converting the written XML back to JSON.
880             </summary>
881             <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
882         </member>
883         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
884             <summary>
885             Gets or sets a value indicating whether to write the root JSON object.
886             </summary>
887             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
888         </member>
889         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
890             <summary>
891             Writes the JSON representation of the object.
892             </summary>
893             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
894             <param name="serializer">The calling serializer.</param>
895             <param name="value">The value.</param>
896         </member>
897         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
898             <summary>
899             Reads the JSON representation of the object.
900             </summary>
901             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
902             <param name="objectType">Type of the object.</param>
903             <param name="existingValue">The existing value of object being read.</param>
904             <param name="serializer">The calling serializer.</param>
905             <returns>The object value.</returns>
906         </member>
907         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
908             <summary>
909             Checks if the attributeName is a namespace attribute.
910             </summary>
911             <param name="attributeName">Attribute name to test.</param>
912             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
913             <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
914         </member>
915         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
916             <summary>
917             Determines whether this instance can convert the specified value type.
918             </summary>
919             <param name="valueType">Type of the value.</param>
920             <returns>
921                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
922             </returns>
923         </member>
924         <member name="T:Newtonsoft.Json.ConstructorHandling">
925             <summary>
926             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
927             </summary>
928         </member>
929         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
930             <summary>
931             First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
932             </summary>
933         </member>
934         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
935             <summary>
936             Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
937             </summary>
938         </member>
939         <member name="T:Newtonsoft.Json.FloatFormatHandling">
940             <summary>
941             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
942             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
943             </summary>
944         </member>
945         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
946             <summary>
947             Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
948             </summary>
949         </member>
950         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
951             <summary>
952             Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
953             Note that this will produce non-valid JSON.
954             </summary>
955         </member>
956         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
957             <summary>
958             Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.
959             </summary>
960         </member>
961         <member name="T:Newtonsoft.Json.FloatParseHandling">
962             <summary>
963             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
964             </summary>
965         </member>
966         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
967             <summary>
968             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
969             </summary>
970         </member>
971         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
972             <summary>
973             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
974             </summary>
975         </member>
976         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
977             <summary>
978             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
979             </summary>
980         </member>
981         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
982             <summary>
983             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
984             </summary>
985         </member>
986         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
987             <summary>
988             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
989             </summary>
990             <param name="id">The container Id.</param>
991         </member>
992         <member name="T:Newtonsoft.Json.JsonException">
993             <summary>
994             The exception thrown when an error occurs during JSON serialization or deserialization.
995             </summary>
996         </member>
997         <member name="M:Newtonsoft.Json.JsonException.#ctor">
998             <summary>
999             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1000             </summary>
1001         </member>
1002         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1003             <summary>
1004             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1005             with a specified error message.
1006             </summary>
1007             <param name="message">The error message that explains the reason for the exception.</param>
1008         </member>
1009         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1010             <summary>
1011             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1012             with a specified error message and a reference to the inner exception that is the cause of this exception.
1013             </summary>
1014             <param name="message">The error message that explains the reason for the exception.</param>
1015             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
1016         </member>
1017         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1018             <summary>
1019             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1020             </summary>
1021             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1022             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1023             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1024             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1025         </member>
1026         <member name="T:Newtonsoft.Json.DateFormatHandling">
1027             <summary>
1028             Specifies how dates are formatted when writing JSON text.
1029             </summary>
1030         </member>
1031         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1032             <summary>
1033             Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
1034             </summary>
1035         </member>
1036         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1037             <summary>
1038             Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
1039             </summary>
1040         </member>
1041         <member name="T:Newtonsoft.Json.DateParseHandling">
1042             <summary>
1043             Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
1044             </summary>
1045         </member>
1046         <member name="F:Newtonsoft.Json.DateParseHandling.None">
1047             <summary>
1048             Date formatted strings are not parsed to a date type and are read as strings.
1049             </summary>
1050         </member>
1051         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1052             <summary>
1053             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1054             </summary>
1055         </member>
1056         <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1057             <summary>
1058             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1059             </summary>
1060         </member>
1061         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1062             <summary>
1063             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1064             </summary>
1065         </member>
1066         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1067             <summary>
1068             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.
1069             </summary>
1070         </member>
1071         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1072             <summary>
1073             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1074             </summary>
1075         </member>
1076         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1077             <summary>
1078             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1079             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1080             </summary>
1081         </member>
1082         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1083             <summary>
1084             Time zone information should be preserved when converting.
1085             </summary>
1086         </member>
1087         <member name="T:Newtonsoft.Json.Formatting">
1088             <summary>
1089             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1090             </summary>
1091         </member>
1092         <member name="F:Newtonsoft.Json.Formatting.None">
1093             <summary>
1094             No special formatting is applied. This is the default.
1095             </summary>
1096         </member>
1097         <member name="F:Newtonsoft.Json.Formatting.Indented">
1098             <summary>
1099             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.
1100             </summary>
1101         </member>
1102         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1103             <summary>
1104             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1105             </summary>
1106         </member>
1107         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1108             <summary>
1109             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1110             and write values during serialization.
1111             </summary>
1112         </member>
1113         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1114             <summary>
1115             Gets or sets a value that indicates whether to write extension data when serializing the object.
1116             </summary>
1117             <value>
1118                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1119             </value>
1120         </member>
1121         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1122             <summary>
1123             Gets or sets a value that indicates whether to read extension data when deserializing the object.
1124             </summary>
1125             <value>
1126                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1127             </value>
1128         </member>
1129         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1130             <summary>
1131             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1132             </summary>
1133         </member>
1134         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
1135             <summary>
1136             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.
1137             </summary>
1138         </member>
1139         <member name="T:Newtonsoft.Json.Linq.CommentHandling">
1140             <summary>
1141             Specifies how JSON comments are handled when loading JSON.
1142             </summary>
1143         </member>
1144         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
1145             <summary>
1146             Ignore comments.
1147             </summary>
1148         </member>
1149         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
1150             <summary>
1151             Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
1152             </summary>
1153         </member>
1154         <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
1155             <summary>
1156             Specifies the settings used when loading JSON.
1157             </summary>
1158         </member>
1159         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
1160             <summary>
1161             Gets or sets how JSON comments are handled when loading JSON.
1162             </summary>
1163             <value>The JSON comment handling.</value>
1164         </member>
1165         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1166             <summary>
1167             Specifies the settings used when merging JSON.
1168             </summary>
1169         </member>
1170         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1171             <summary>
1172             Gets or sets the method used when merging JSON arrays.
1173             </summary>
1174             <value>The method used when merging JSON arrays.</value>
1175         </member>
1176         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1177             <summary>
1178             Specifies how JSON arrays are merged together.
1179             </summary>
1180         </member>
1181         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1182             <summary>Concatenate arrays.</summary>
1183         </member>
1184         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1185             <summary>Union arrays, skipping items that already exist.</summary>
1186         </member>
1187         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1188             <summary>Replace all array items.</summary>
1189         </member>
1190         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1191             <summary>Merge array items together, matched by index.</summary>
1192         </member>
1193         <member name="T:Newtonsoft.Json.Linq.JRaw">
1194             <summary>
1195             Represents a raw JSON string.
1196             </summary>
1197         </member>
1198         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
1199             <summary>
1200             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
1201             </summary>
1202             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
1203         </member>
1204         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
1205             <summary>
1206             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
1207             </summary>
1208             <param name="rawJson">The raw json.</param>
1209         </member>
1210         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
1211             <summary>
1212             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
1213             </summary>
1214             <param name="reader">The reader.</param>
1215             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
1216         </member>
1217         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1218             <summary>
1219             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1220             </summary>
1221         </member>
1222         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1223             <summary>
1224             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1225             </summary>
1226             <param name="name">The name.</param>
1227         </member>
1228         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1229             <summary>
1230             When overridden in a derived class, returns whether resetting an object changes its value.
1231             </summary>
1232             <returns>
1233             true if resetting the component changes its value; otherwise, false.
1234             </returns>
1235             <param name="component">The component to test for reset capability. 
1236                             </param>
1237         </member>
1238         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1239             <summary>
1240             When overridden in a derived class, gets the current value of the property on a component.
1241             </summary>
1242             <returns>
1243             The value of a property for a given component.
1244             </returns>
1245             <param name="component">The component with the property for which to retrieve the value. 
1246                             </param>
1247         </member>
1248         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1249             <summary>
1250             When overridden in a derived class, resets the value for this property of the component to the default value.
1251             </summary>
1252             <param name="component">The component with the property value that is to be reset to the default value. 
1253                             </param>
1254         </member>
1255         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1256             <summary>
1257             When overridden in a derived class, sets the value of the component to a different value.
1258             </summary>
1259             <param name="component">The component with the property value that is to be set. 
1260                             </param><param name="value">The new value. 
1261                             </param>
1262         </member>
1263         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1264             <summary>
1265             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1266             </summary>
1267             <returns>
1268             true if the property should be persisted; otherwise, false.
1269             </returns>
1270             <param name="component">The component with the property to be examined for persistence. 
1271                             </param>
1272         </member>
1273         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1274             <summary>
1275             When overridden in a derived class, gets the type of the component this property is bound to.
1276             </summary>
1277             <returns>
1278             A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
1279             </returns>
1280         </member>
1281         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1282             <summary>
1283             When overridden in a derived class, gets a value indicating whether this property is read-only.
1284             </summary>
1285             <returns>
1286             true if the property is read-only; otherwise, false.
1287             </returns>
1288         </member>
1289         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1290             <summary>
1291             When overridden in a derived class, gets the type of the property.
1292             </summary>
1293             <returns>
1294             A <see cref="T:System.Type"/> that represents the type of the property.
1295             </returns>
1296         </member>
1297         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1298             <summary>
1299             Gets the hash code for the name of the member.
1300             </summary>
1301             <value></value>
1302             <returns>
1303             The hash code for the name of the member.
1304             </returns>
1305         </member>
1306         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1307             <summary>
1308             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1309             </summary>
1310             <typeparam name="T">The type of token</typeparam>
1311         </member>
1312         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1313             <summary>
1314             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1315             </summary>
1316             <value></value>
1317         </member>
1318         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
1319             <summary>
1320             Compares tokens to determine whether they are equal.
1321             </summary>
1322         </member>
1323         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1324             <summary>
1325             Determines whether the specified objects are equal.
1326             </summary>
1327             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1328             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1329             <returns>
1330             true if the specified objects are equal; otherwise, false.
1331             </returns>
1332         </member>
1333         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
1334             <summary>
1335             Returns a hash code for the specified object.
1336             </summary>
1337             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
1338             <returns>A hash code for the specified object.</returns>
1339             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
1340         </member>
1341         <member name="T:Newtonsoft.Json.Linq.Extensions">
1342             <summary>
1343             Contains the LINQ to JSON extension methods.
1344             </summary>
1345         </member>
1346         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
1347             <summary>
1348             Returns a collection of tokens that contains the ancestors of every token in the source collection.
1349             </summary>
1350             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1351             <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>
1352             <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>
1353         </member>
1354         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1355             <summary>
1356             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
1357             </summary>
1358             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1359             <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>
1360             <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>
1361         </member>
1362         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
1363             <summary>
1364             Returns a collection of tokens that contains the descendants of every token in the source collection.
1365             </summary>
1366             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1367             <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>
1368             <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>
1369         </member>
1370         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1371             <summary>
1372             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
1373             </summary>
1374             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1375             <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>
1376             <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>
1377         </member>
1378         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
1379             <summary>
1380             Returns a collection of child properties of every object in the source collection.
1381             </summary>
1382             <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>
1383             <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>
1384         </member>
1385         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1386             <summary>
1387             Returns a collection of child values of every object in the source collection with the given key.
1388             </summary>
1389             <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>
1390             <param name="key">The token key.</param>
1391             <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>
1392         </member>
1393         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1394             <summary>
1395             Returns a collection of child values of every object in the source collection.
1396             </summary>
1397             <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>
1398             <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>
1399         </member>
1400         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1401             <summary>
1402             Returns a collection of converted child values of every object in the source collection with the given key.
1403             </summary>
1404             <typeparam name="U">The type to convert the values to.</typeparam>
1405             <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>
1406             <param name="key">The token key.</param>
1407             <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>
1408         </member>
1409         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1410             <summary>
1411             Returns a collection of converted child values of every object in the source collection.
1412             </summary>
1413             <typeparam name="U">The type to convert the values to.</typeparam>
1414             <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>
1415             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1416         </member>
1417         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1418             <summary>
1419             Converts the value.
1420             </summary>
1421             <typeparam name="U">The type to convert the value to.</typeparam>
1422             <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>
1423             <returns>A converted value.</returns>
1424         </member>
1425         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
1426             <summary>
1427             Converts the value.
1428             </summary>
1429             <typeparam name="T">The source collection type.</typeparam>
1430             <typeparam name="U">The type to convert the value to.</typeparam>
1431             <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>
1432             <returns>A converted value.</returns>
1433         </member>
1434         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
1435             <summary>
1436             Returns a collection of child tokens of every array in the source collection.
1437             </summary>
1438             <typeparam name="T">The source collection type.</typeparam>
1439             <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>
1440             <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>
1441         </member>
1442         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
1443             <summary>
1444             Returns a collection of converted child tokens of every array in the source collection.
1445             </summary>
1446             <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>
1447             <typeparam name="U">The type to convert the values to.</typeparam>
1448             <typeparam name="T">The source collection type.</typeparam>
1449             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1450         </member>
1451         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1452             <summary>
1453             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1454             </summary>
1455             <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>
1456             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1457         </member>
1458         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
1459             <summary>
1460             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1461             </summary>
1462             <typeparam name="T">The source collection type.</typeparam>
1463             <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>
1464             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1465         </member>
1466         <member name="T:Newtonsoft.Json.Linq.JConstructor">
1467             <summary>
1468             Represents a JSON constructor.
1469             </summary>
1470         </member>
1471         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
1472             <summary>
1473             Gets the container's children tokens.
1474             </summary>
1475             <value>The container's children tokens.</value>
1476         </member>
1477         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
1478             <summary>
1479             Gets or sets the name of this constructor.
1480             </summary>
1481             <value>The constructor name.</value>
1482         </member>
1483         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
1484             <summary>
1485             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1486             </summary>
1487             <value>The type.</value>
1488         </member>
1489         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
1490             <summary>
1491             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
1492             </summary>
1493         </member>
1494         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
1495             <summary>
1496             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
1497             </summary>
1498             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
1499         </member>
1500         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
1501             <summary>
1502             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1503             </summary>
1504             <param name="name">The constructor name.</param>
1505             <param name="content">The contents of the constructor.</param>
1506         </member>
1507         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
1508             <summary>
1509             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1510             </summary>
1511             <param name="name">The constructor name.</param>
1512             <param name="content">The contents of the constructor.</param>
1513         </member>
1514         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
1515             <summary>
1516             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
1517             </summary>
1518             <param name="name">The constructor name.</param>
1519         </member>
1520         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1521             <summary>
1522             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1523             </summary>
1524             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1525             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1526         </member>
1527         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
1528             <summary>
1529             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1530             </summary>
1531             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1532         </member>
1533         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
1534             <summary>
1535             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1536             </summary>
1537             <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>
1538             <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>
1539         </member>
1540         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1541             <summary>
1542             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1543             </summary>
1544             <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>
1545             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1546             If this is null, default load settings will be used.</param>
1547             <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>
1548         </member>
1549         <member name="T:Newtonsoft.Json.Linq.JContainer">
1550             <summary>
1551             Represents a token that can contain other tokens.
1552             </summary>
1553         </member>
1554         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
1555             <summary>
1556             Occurs when the list changes or an item in the list changes.
1557             </summary>
1558         </member>
1559         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
1560             <summary>
1561             Occurs before an item is added to the collection.
1562             </summary>
1563         </member>
1564         <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
1565             <summary>
1566             Occurs when the items list of the collection has changed, or the collection is reset.
1567             </summary>
1568         </member>
1569         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
1570             <summary>
1571             Gets the container's children tokens.
1572             </summary>
1573             <value>The container's children tokens.</value>
1574         </member>
1575         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
1576             <summary>
1577             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
1578             </summary>
1579             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
1580         </member>
1581         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
1582             <summary>
1583             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
1584             </summary>
1585             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
1586         </member>
1587         <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
1588             <summary>
1589             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
1590             </summary>
1591             <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
1592         </member>
1593         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
1594             <summary>
1595             Gets a value indicating whether this token has child tokens.
1596             </summary>
1597             <value>
1598                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
1599             </value>
1600         </member>
1601         <member name="P:Newtonsoft.Json.Linq.JContainer.First">
1602             <summary>
1603             Get the first child token of this token.
1604             </summary>
1605             <value>
1606             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1607             </value>
1608         </member>
1609         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
1610             <summary>
1611             Get the last child token of this token.
1612             </summary>
1613             <value>
1614             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1615             </value>
1616         </member>
1617         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
1618             <summary>
1619             Returns a collection of the child tokens of this token, in document order.
1620             </summary>
1621             <returns>
1622             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.
1623             </returns>
1624         </member>
1625         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
1626             <summary>
1627             Returns a collection of the child values of this token, in document order.
1628             </summary>
1629             <typeparam name="T">The type to convert the values to.</typeparam>
1630             <returns>
1631             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.
1632             </returns>
1633         </member>
1634         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
1635             <summary>
1636             Returns a collection of the descendant tokens for this token in document order.
1637             </summary>
1638             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1639         </member>
1640         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
1641             <summary>
1642             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
1643             </summary>
1644             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1645         </member>
1646         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
1647             <summary>
1648             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1649             </summary>
1650             <param name="content">The content to be added.</param>
1651         </member>
1652         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
1653             <summary>
1654             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1655             </summary>
1656             <param name="content">The content to be added.</param>
1657         </member>
1658         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
1659             <summary>
1660             Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1661             </summary>
1662             <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
1663         </member>
1664         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
1665             <summary>
1666             Replaces the children nodes of this token with the specified content.
1667             </summary>
1668             <param name="content">The content.</param>
1669         </member>
1670         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
1671             <summary>
1672             Removes the child nodes from this token.
1673             </summary>
1674         </member>
1675         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
1676             <summary>
1677             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1678             </summary>
1679             <param name="content">The content to be merged.</param>
1680         </member>
1681         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
1682             <summary>
1683             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
1684             </summary>
1685             <param name="content">The content to be merged.</param>
1686             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
1687         </member>
1688         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
1689             <summary>
1690             Gets the count of child JSON tokens.
1691             </summary>
1692             <value>The count of child JSON tokens</value>
1693         </member>
1694         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
1695             <summary>
1696             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1697             </summary>
1698             <typeparam name="T">The type of token</typeparam>
1699         </member>
1700         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
1701             <summary>
1702             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1703             </summary>
1704         </member>
1705         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1706             <summary>
1707             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
1708             </summary>
1709             <param name="enumerable">The enumerable.</param>
1710         </member>
1711         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
1712             <summary>
1713             Returns an enumerator that iterates through the collection.
1714             </summary>
1715             <returns>
1716             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1717             </returns>
1718         </member>
1719         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
1720             <summary>
1721             Returns an enumerator that iterates through a collection.
1722             </summary>
1723             <returns>
1724             An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
1725             </returns>
1726         </member>
1727         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
1728             <summary>
1729             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1730             </summary>
1731             <value></value>
1732         </member>
1733         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
1734             <summary>
1735             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
1736             </summary>
1737             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
1738             <returns>
1739                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
1740             </returns>
1741         </member>
1742         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
1743             <summary>
1744             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
1745             </summary>
1746             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
1747             <returns>
1748                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
1749             </returns>
1750         </member>
1751         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
1752             <summary>
1753             Returns a hash code for this instance.
1754             </summary>
1755             <returns>
1756             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
1757             </returns>
1758         </member>
1759         <member name="T:Newtonsoft.Json.Linq.JObject">
1760             <summary>
1761             Represents a JSON object.
1762             </summary>
1763             <example>
1764               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1765             </example>
1766         </member>
1767         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
1768             <summary>
1769             Gets the container's children tokens.
1770             </summary>
1771             <value>The container's children tokens.</value>
1772         </member>
1773         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
1774             <summary>
1775             Occurs when a property value changes.
1776             </summary>
1777         </member>
1778         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
1779             <summary>
1780             Occurs when a property value is changing.
1781             </summary>
1782         </member>
1783         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
1784             <summary>
1785             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
1786             </summary>
1787         </member>
1788         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
1789             <summary>
1790             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
1791             </summary>
1792             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
1793         </member>
1794         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
1795             <summary>
1796             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1797             </summary>
1798             <param name="content">The contents of the object.</param>
1799         </member>
1800         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
1801             <summary>
1802             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1803             </summary>
1804             <param name="content">The contents of the object.</param>
1805         </member>
1806         <member name="P:Newtonsoft.Json.Linq.JObject.Type">
1807             <summary>
1808             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1809             </summary>
1810             <value>The type.</value>
1811         </member>
1812         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
1813             <summary>
1814             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
1815             </summary>
1816             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
1817         </member>
1818         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
1819             <summary>
1820             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
1821             </summary>
1822             <param name="name">The property name.</param>
1823             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
1824         </member>
1825         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
1826             <summary>
1827             Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
1828             </summary>
1829             <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
1830         </member>
1831         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
1832             <summary>
1833             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1834             </summary>
1835             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1836         </member>
1837         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
1838             <summary>
1839             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1840             </summary>
1841             <value></value>
1842         </member>
1843         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
1844             <summary>
1845             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1846             </summary>
1847             <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>
1848             <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>
1849         </member>
1850         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1851             <summary>
1852             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1853             </summary>
1854             <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>
1855             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1856             If this is null, default load settings will be used.</param>
1857             <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>
1858         </member>
1859         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
1860             <summary>
1861             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1862             </summary>
1863             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1864             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1865             <example>
1866               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1867             </example>
1868         </member>
1869         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
1870             <summary>
1871             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1872             </summary>
1873             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1874             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1875             If this is null, default load settings will be used.</param>
1876             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1877             <example>
1878               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1879             </example>
1880         </member>
1881         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
1882             <summary>
1883             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1884             </summary>
1885             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1886             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1887         </member>
1888         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
1889             <summary>
1890             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1891             </summary>
1892             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1893             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
1894             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1895         </member>
1896         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1897             <summary>
1898             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1899             </summary>
1900             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1901             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1902         </member>
1903         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
1904             <summary>
1905             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1906             </summary>
1907             <param name="propertyName">Name of the property.</param>
1908             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1909         </member>
1910         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
1911             <summary>
1912             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1913             The exact property name will be searched for first and if no matching property is found then
1914             the <see cref="T:System.StringComparison"/> will be used to match a property.
1915             </summary>
1916             <param name="propertyName">Name of the property.</param>
1917             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1918             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1919         </member>
1920         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
1921             <summary>
1922             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1923             The exact property name will be searched for first and if no matching property is found then
1924             the <see cref="T:System.StringComparison"/> will be used to match a property.
1925             </summary>
1926             <param name="propertyName">Name of the property.</param>
1927             <param name="value">The value.</param>
1928             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1929             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1930         </member>
1931         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
1932             <summary>
1933             Adds the specified property name.
1934             </summary>
1935             <param name="propertyName">Name of the property.</param>
1936             <param name="value">The value.</param>
1937         </member>
1938         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
1939             <summary>
1940             Removes the property with the specified name.
1941             </summary>
1942             <param name="propertyName">Name of the property.</param>
1943             <returns>true if item was successfully removed; otherwise, false.</returns>
1944         </member>
1945         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
1946             <summary>
1947             Tries the get value.
1948             </summary>
1949             <param name="propertyName">Name of the property.</param>
1950             <param name="value">The value.</param>
1951             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1952         </member>
1953         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
1954             <summary>
1955             Returns an enumerator that iterates through the collection.
1956             </summary>
1957             <returns>
1958             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1959             </returns>
1960         </member>
1961         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
1962             <summary>
1963             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
1964             </summary>
1965             <param name="propertyName">Name of the property.</param>
1966         </member>
1967         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
1968             <summary>
1969             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
1970             </summary>
1971             <param name="propertyName">Name of the property.</param>
1972         </member>
1973         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
1974             <summary>
1975             Returns the properties for this instance of a component.
1976             </summary>
1977             <returns>
1978             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
1979             </returns>
1980         </member>
1981         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
1982             <summary>
1983             Returns the properties for this instance of a component using the attribute array as a filter.
1984             </summary>
1985             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
1986             <returns>
1987             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
1988             </returns>
1989         </member>
1990         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
1991             <summary>
1992             Returns a collection of custom attributes for this instance of a component.
1993             </summary>
1994             <returns>
1995             An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
1996             </returns>
1997         </member>
1998         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
1999             <summary>
2000             Returns the class name of this instance of a component.
2001             </summary>
2002             <returns>
2003             The class name of the object, or null if the class does not have a name.
2004             </returns>
2005         </member>
2006         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
2007             <summary>
2008             Returns the name of this instance of a component.
2009             </summary>
2010             <returns>
2011             The name of the object, or null if the object does not have a name.
2012             </returns>
2013         </member>
2014         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
2015             <summary>
2016             Returns a type converter for this instance of a component.
2017             </summary>
2018             <returns>
2019             A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object.
2020             </returns>
2021         </member>
2022         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
2023             <summary>
2024             Returns the default event for this instance of a component.
2025             </summary>
2026             <returns>
2027             An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
2028             </returns>
2029         </member>
2030         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
2031             <summary>
2032             Returns the default property for this instance of a component.
2033             </summary>
2034             <returns>
2035             A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
2036             </returns>
2037         </member>
2038         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
2039             <summary>
2040             Returns an editor of the specified type for this instance of a component.
2041             </summary>
2042             <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
2043             <returns>
2044             An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found.
2045             </returns>
2046         </member>
2047         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
2048             <summary>
2049             Returns the events for this instance of a component using the specified attribute array as a filter.
2050             </summary>
2051             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
2052             <returns>
2053             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
2054             </returns>
2055         </member>
2056         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
2057             <summary>
2058             Returns the events for this instance of a component.
2059             </summary>
2060             <returns>
2061             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
2062             </returns>
2063         </member>
2064         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
2065             <summary>
2066             Returns an object that contains the property described by the specified property descriptor.
2067             </summary>
2068             <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
2069             <returns>
2070             An <see cref="T:System.Object"/> that represents the owner of the specified property.
2071             </returns>
2072         </member>
2073         <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
2074             <summary>
2075             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
2076             </summary>
2077             <param name="parameter">The expression tree representation of the runtime value.</param>
2078             <returns>
2079             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2080             </returns>
2081         </member>
2082         <member name="T:Newtonsoft.Json.Linq.JArray">
2083             <summary>
2084             Represents a JSON array.
2085             </summary>
2086             <example>
2087               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2088             </example>
2089         </member>
2090         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
2091             <summary>
2092             Gets the container's children tokens.
2093             </summary>
2094             <value>The container's children tokens.</value>
2095         </member>
2096         <member name="P:Newtonsoft.Json.Linq.JArray.Type">
2097             <summary>
2098             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2099             </summary>
2100             <value>The type.</value>
2101         </member>
2102         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
2103             <summary>
2104             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
2105             </summary>
2106         </member>
2107         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
2108             <summary>
2109             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
2110             </summary>
2111             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
2112         </member>
2113         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
2114             <summary>
2115             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2116             </summary>
2117             <param name="content">The contents of the array.</param>
2118         </member>
2119         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
2120             <summary>
2121             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2122             </summary>
2123             <param name="content">The contents of the array.</param>
2124         </member>
2125         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
2126             <summary>
2127             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2128             </summary>
2129             <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>
2130             <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>
2131         </member>
2132         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
2133             <summary>
2134             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2135             </summary>
2136             <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>
2137             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2138             If this is null, default load settings will be used.</param>
2139             <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>
2140         </member>
2141         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
2142             <summary>
2143             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2144             </summary>
2145             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2146             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2147             <example>
2148               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2149             </example>
2150         </member>
2151         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
2152             <summary>
2153             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2154             </summary>
2155             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2156             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2157             If this is null, default load settings will be used.</param>
2158             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2159             <example>
2160               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2161             </example>
2162         </member>
2163         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
2164             <summary>
2165             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2166             </summary>
2167             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2168             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2169         </member>
2170         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2171             <summary>
2172             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2173             </summary>
2174             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2175             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
2176             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2177         </member>
2178         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2179             <summary>
2180             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2181             </summary>
2182             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2183             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2184         </member>
2185         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
2186             <summary>
2187             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2188             </summary>
2189             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2190         </member>
2191         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
2192             <summary>
2193             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
2194             </summary>
2195             <value></value>
2196         </member>
2197         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
2198             <summary>
2199             Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
2200             </summary>
2201             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2202             <returns>
2203             The index of <paramref name="item"/> if found in the list; otherwise, -1.
2204             </returns>
2205         </member>
2206         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
2207             <summary>
2208             Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
2209             </summary>
2210             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
2211             <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2212             <exception cref="T:System.ArgumentOutOfRangeException">
2213                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2214             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2215         </member>
2216         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
2217             <summary>
2218             Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
2219             </summary>
2220             <param name="index">The zero-based index of the item to remove.</param>
2221             <exception cref="T:System.ArgumentOutOfRangeException">
2222                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2223             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2224         </member>
2225         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
2226             <summary>
2227             Returns an enumerator that iterates through the collection.
2228             </summary>
2229             <returns>
2230             A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
2231             </returns>
2232         </member>
2233         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
2234             <summary>
2235             Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2236             </summary>
2237             <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2238             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2239         </member>
2240         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
2241             <summary>
2242             Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2243             </summary>
2244             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
2245         </member>
2246         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
2247             <summary>
2248             Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
2249             </summary>
2250             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2251             <returns>
2252             true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
2253             </returns>
2254         </member>
2255         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
2256             <summary>
2257             Copies to.
2258             </summary>
2259             <param name="array">The array.</param>
2260             <param name="arrayIndex">Index of the array.</param>
2261         </member>
2262         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
2263             <summary>
2264             Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
2265             </summary>
2266             <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
2267         </member>
2268         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
2269             <summary>
2270             Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2271             </summary>
2272             <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2273             <returns>
2274             true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
2275             </returns>
2276             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2277         </member>
2278         <member name="T:Newtonsoft.Json.Linq.JTokenReader">
2279             <summary>
2280             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2281             </summary>
2282         </member>
2283         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
2284             <summary>
2285             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
2286             </summary>
2287         </member>
2288         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
2289             <summary>
2290             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
2291             </summary>
2292             <param name="token">The token to read from.</param>
2293         </member>
2294         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
2295             <summary>
2296             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
2297             </summary>
2298             <returns>
2299             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
2300             </returns>
2301         </member>
2302         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
2303             <summary>
2304             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2305             </summary>
2306             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2307         </member>
2308         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
2309             <summary>
2310             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2311             </summary>
2312             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2313         </member>
2314         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
2315             <summary>
2316             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
2317             </summary>
2318             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2319         </member>
2320         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
2321             <summary>
2322             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2323             </summary>
2324             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2325         </member>
2326         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
2327             <summary>
2328             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2329             </summary>
2330             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2331         </member>
2332         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
2333             <summary>
2334             Reads the next JSON token from the stream.
2335             </summary>
2336             <returns>
2337             true if the next token was read successfully; false if there are no more tokens to read.
2338             </returns>
2339         </member>
2340         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
2341             <summary>
2342             Gets the path of the current JSON token. 
2343             </summary>
2344         </member>
2345         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
2346             <summary>
2347             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
2348             </summary>
2349         </member>
2350         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
2351             <summary>
2352             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
2353             </summary>
2354         </member>
2355         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
2356             <summary>
2357             Gets the token being writen.
2358             </summary>
2359             <value>The token being writen.</value>
2360         </member>
2361         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
2362             <summary>
2363             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"/>.
2364             </summary>
2365             <param name="container">The container being written to.</param>
2366         </member>
2367         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
2368             <summary>
2369             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
2370             </summary>
2371         </member>
2372         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
2373             <summary>
2374             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
2375             </summary>
2376         </member>
2377         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
2378             <summary>
2379             Closes this stream and the underlying stream.
2380             </summary>
2381         </member>
2382         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
2383             <summary>
2384             Writes the beginning of a JSON object.
2385             </summary>
2386         </member>
2387         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
2388             <summary>
2389             Writes the beginning of a JSON array.
2390             </summary>
2391         </member>
2392         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
2393             <summary>
2394             Writes the start of a constructor with the given name.
2395             </summary>
2396             <param name="name">The name of the constructor.</param>
2397         </member>
2398         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
2399             <summary>
2400             Writes the end.
2401             </summary>
2402             <param name="token">The token.</param>
2403         </member>
2404         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
2405             <summary>
2406             Writes the property name of a name/value pair on a JSON object.
2407             </summary>
2408             <param name="name">The name of the property.</param>
2409         </member>
2410         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
2411             <summary>
2412             Writes a <see cref="T:System.Object"/> value.
2413             An error will raised if the value cannot be written as a single JSON token.
2414             </summary>
2415             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
2416         </member>
2417         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
2418             <summary>
2419             Writes a null value.
2420             </summary>
2421         </member>
2422         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
2423             <summary>
2424             Writes an undefined value.
2425             </summary>
2426         </member>
2427         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
2428             <summary>
2429             Writes raw JSON.
2430             </summary>
2431             <param name="json">The raw JSON to write.</param>
2432         </member>
2433         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
2434             <summary>
2435             Writes out a comment <code>/*...*/</code> containing the specified text.
2436             </summary>
2437             <param name="text">Text to place inside the comment.</param>
2438         </member>
2439         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
2440             <summary>
2441             Writes a <see cref="T:System.String"/> value.
2442             </summary>
2443             <param name="value">The <see cref="T:System.String"/> value to write.</param>
2444         </member>
2445         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
2446             <summary>
2447             Writes a <see cref="T:System.Int32"/> value.
2448             </summary>
2449             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
2450         </member>
2451         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
2452             <summary>
2453             Writes a <see cref="T:System.UInt32"/> value.
2454             </summary>
2455             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
2456         </member>
2457         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
2458             <summary>
2459             Writes a <see cref="T:System.Int64"/> value.
2460             </summary>
2461             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
2462         </member>
2463         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
2464             <summary>
2465             Writes a <see cref="T:System.UInt64"/> value.
2466             </summary>
2467             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
2468         </member>
2469         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
2470             <summary>
2471             Writes a <see cref="T:System.Single"/> value.
2472             </summary>
2473             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
2474         </member>
2475         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
2476             <summary>
2477             Writes a <see cref="T:System.Double"/> value.
2478             </summary>
2479             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
2480         </member>
2481         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
2482             <summary>
2483             Writes a <see cref="T:System.Boolean"/> value.
2484             </summary>
2485             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
2486         </member>
2487         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
2488             <summary>
2489             Writes a <see cref="T:System.Int16"/> value.
2490             </summary>
2491             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
2492         </member>
2493         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
2494             <summary>
2495             Writes a <see cref="T:System.UInt16"/> value.
2496             </summary>
2497             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
2498         </member>
2499         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
2500             <summary>
2501             Writes a <see cref="T:System.Char"/> value.
2502             </summary>
2503             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
2504         </member>
2505         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
2506             <summary>
2507             Writes a <see cref="T:System.Byte"/> value.
2508             </summary>
2509             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
2510         </member>
2511         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
2512             <summary>
2513             Writes a <see cref="T:System.SByte"/> value.
2514             </summary>
2515             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
2516         </member>
2517         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
2518             <summary>
2519             Writes a <see cref="T:System.Decimal"/> value.
2520             </summary>
2521             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
2522         </member>
2523         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
2524             <summary>
2525             Writes a <see cref="T:System.DateTime"/> value.
2526             </summary>
2527             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
2528         </member>
2529         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
2530             <summary>
2531             Writes a <see cref="T:System.DateTimeOffset"/> value.
2532             </summary>
2533             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
2534         </member>
2535         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
2536             <summary>
2537             Writes a <see cref="T:System.Byte"/>[] value.
2538             </summary>
2539             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
2540         </member>
2541         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
2542             <summary>
2543             Writes a <see cref="T:System.TimeSpan"/> value.
2544             </summary>
2545             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
2546         </member>
2547         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
2548             <summary>
2549             Writes a <see cref="T:System.Guid"/> value.
2550             </summary>
2551             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
2552         </member>
2553         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
2554             <summary>
2555             Writes a <see cref="T:System.Uri"/> value.
2556             </summary>
2557             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
2558         </member>
2559         <member name="T:Newtonsoft.Json.Linq.JToken">
2560             <summary>
2561             Represents an abstract JSON token.
2562             </summary>
2563         </member>
2564         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2565             <summary>
2566             Gets a comparer that can compare two tokens for value equality.
2567             </summary>
2568             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2569         </member>
2570         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2571             <summary>
2572             Gets or sets the parent.
2573             </summary>
2574             <value>The parent.</value>
2575         </member>
2576         <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2577             <summary>
2578             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2579             </summary>
2580             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2581         </member>
2582         <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2583             <summary>
2584             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2585             </summary>
2586             <value>The type.</value>
2587         </member>
2588         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2589             <summary>
2590             Gets a value indicating whether this token has child tokens.
2591             </summary>
2592             <value>
2593                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2594             </value>
2595         </member>
2596         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2597             <summary>
2598             Compares the values of two tokens, including the values of all descendant tokens.
2599             </summary>
2600             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2601             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2602             <returns>true if the tokens are equal; otherwise false.</returns>
2603         </member>
2604         <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2605             <summary>
2606             Gets the next sibling token of this node.
2607             </summary>
2608             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2609         </member>
2610         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2611             <summary>
2612             Gets the previous sibling token of this node.
2613             </summary>
2614             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2615         </member>
2616         <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2617             <summary>
2618             Gets the path of the JSON token. 
2619             </summary>
2620         </member>
2621         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2622             <summary>
2623             Adds the specified content immediately after this token.
2624             </summary>
2625             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2626         </member>
2627         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2628             <summary>
2629             Adds the specified content immediately before this token.
2630             </summary>
2631             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2632         </member>
2633         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2634             <summary>
2635             Returns a collection of the ancestor tokens of this token.
2636             </summary>
2637             <returns>A collection of the ancestor tokens of this token.</returns>
2638         </member>
2639         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2640             <summary>
2641             Returns a collection of tokens that contain this token, and the ancestors of this token.
2642             </summary>
2643             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2644         </member>
2645         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2646             <summary>
2647             Returns a collection of the sibling tokens after this token, in document order.
2648             </summary>
2649             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2650         </member>
2651         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2652             <summary>
2653             Returns a collection of the sibling tokens before this token, in document order.
2654             </summary>
2655             <returns>A collection of the sibling tokens before this token, in document order.</returns>
2656         </member>
2657         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2658             <summary>
2659             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2660             </summary>
2661             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2662         </member>
2663         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2664             <summary>
2665             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2666             </summary>
2667             <typeparam name="T">The type to convert the token to.</typeparam>
2668             <param name="key">The token key.</param>
2669             <returns>The converted token value.</returns>
2670         </member>
2671         <member name="P:Newtonsoft.Json.Linq.JToken.First">
2672             <summary>
2673             Get the first child token of this token.
2674             </summary>
2675             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2676         </member>
2677         <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2678             <summary>
2679             Get the last child token of this token.
2680             </summary>
2681             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2682         </member>
2683         <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2684             <summary>
2685             Returns a collection of the child tokens of this token, in document order.
2686             </summary>
2687             <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>
2688         </member>
2689         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2690             <summary>
2691             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2692             </summary>
2693             <typeparam name="T">The type to filter the child tokens on.</typeparam>
2694             <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>
2695         </member>
2696         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2697             <summary>
2698             Returns a collection of the child values of this token, in document order.
2699             </summary>
2700             <typeparam name="T">The type to convert the values to.</typeparam>
2701             <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>
2702         </member>
2703         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2704             <summary>
2705             Removes this token from its parent.
2706             </summary>
2707         </member>
2708         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2709             <summary>
2710             Replaces this token with the specified token.
2711             </summary>
2712             <param name="value">The value.</param>
2713         </member>
2714         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2715             <summary>
2716             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2717             </summary>
2718             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2719             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2720         </member>
2721         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2722             <summary>
2723             Returns the indented JSON for this token.
2724             </summary>
2725             <returns>
2726             The indented JSON for this token.
2727             </returns>
2728         </member>
2729         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2730             <summary>
2731             Returns the JSON for this token using the given formatting and converters.
2732             </summary>
2733             <param name="formatting">Indicates how the output is formatted.</param>
2734             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2735             <returns>The JSON for this token using the given formatting and converters.</returns>
2736         </member>
2737         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2738             <summary>
2739             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2740             </summary>
2741             <param name="value">The value.</param>
2742             <returns>The result of the conversion.</returns>
2743         </member>
2744         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2745             <summary>
2746             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2747             </summary>
2748             <param name="value">The value.</param>
2749             <returns>The result of the conversion.</returns>
2750         </member>
2751         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2752             <summary>
2753             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2754             </summary>
2755             <param name="value">The value.</param>
2756             <returns>The result of the conversion.</returns>
2757         </member>
2758         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2759             <summary>
2760             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2761             </summary>
2762             <param name="value">The value.</param>
2763             <returns>The result of the conversion.</returns>
2764         </member>
2765         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2766             <summary>
2767             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2768             </summary>
2769             <param name="value">The value.</param>
2770             <returns>The result of the conversion.</returns>
2771         </member>
2772         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2773             <summary>
2774             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2775             </summary>
2776             <param name="value">The value.</param>
2777             <returns>The result of the conversion.</returns>
2778         </member>
2779         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2780             <summary>
2781             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2782             </summary>
2783             <param name="value">The value.</param>
2784             <returns>The result of the conversion.</returns>
2785         </member>
2786         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2787             <summary>
2788             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2789             </summary>
2790             <param name="value">The value.</param>
2791             <returns>The result of the conversion.</returns>
2792         </member>
2793         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2794             <summary>
2795             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2796             </summary>
2797             <param name="value">The value.</param>
2798             <returns>The result of the conversion.</returns>
2799         </member>
2800         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2801             <summary>
2802             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2803             </summary>
2804             <param name="value">The value.</param>
2805             <returns>The result of the conversion.</returns>
2806         </member>
2807         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2808             <summary>
2809             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2810             </summary>
2811             <param name="value">The value.</param>
2812             <returns>The result of the conversion.</returns>
2813         </member>
2814         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2815             <summary>
2816             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2817             </summary>
2818             <param name="value">The value.</param>
2819             <returns>The result of the conversion.</returns>
2820         </member>
2821         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2822             <summary>
2823             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2824             </summary>
2825             <param name="value">The value.</param>
2826             <returns>The result of the conversion.</returns>
2827         </member>
2828         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2829             <summary>
2830             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2831             </summary>
2832             <param name="value">The value.</param>
2833             <returns>The result of the conversion.</returns>
2834         </member>
2835         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2836             <summary>
2837             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2838             </summary>
2839             <param name="value">The value.</param>
2840             <returns>The result of the conversion.</returns>
2841         </member>
2842         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2843             <summary>
2844             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2845             </summary>
2846             <param name="value">The value.</param>
2847             <returns>The result of the conversion.</returns>
2848         </member>
2849         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2850             <summary>
2851             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2852             </summary>
2853             <param name="value">The value.</param>
2854             <returns>The result of the conversion.</returns>
2855         </member>
2856         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2857             <summary>
2858             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2859             </summary>
2860             <param name="value">The value.</param>
2861             <returns>The result of the conversion.</returns>
2862         </member>
2863         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2864             <summary>
2865             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2866             </summary>
2867             <param name="value">The value.</param>
2868             <returns>The result of the conversion.</returns>
2869         </member>
2870         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2871             <summary>
2872             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2873             </summary>
2874             <param name="value">The value.</param>
2875             <returns>The result of the conversion.</returns>
2876         </member>
2877         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2878             <summary>
2879             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2880             </summary>
2881             <param name="value">The value.</param>
2882             <returns>The result of the conversion.</returns>
2883         </member>
2884         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2885             <summary>
2886             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2887             </summary>
2888             <param name="value">The value.</param>
2889             <returns>The result of the conversion.</returns>
2890         </member>
2891         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2892             <summary>
2893             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2894             </summary>
2895             <param name="value">The value.</param>
2896             <returns>The result of the conversion.</returns>
2897         </member>
2898         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2899             <summary>
2900             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2901             </summary>
2902             <param name="value">The value.</param>
2903             <returns>The result of the conversion.</returns>
2904         </member>
2905         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2906             <summary>
2907             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2908             </summary>
2909             <param name="value">The value.</param>
2910             <returns>The result of the conversion.</returns>
2911         </member>
2912         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2913             <summary>
2914             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2915             </summary>
2916             <param name="value">The value.</param>
2917             <returns>The result of the conversion.</returns>
2918         </member>
2919         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2920             <summary>
2921             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2922             </summary>
2923             <param name="value">The value.</param>
2924             <returns>The result of the conversion.</returns>
2925         </member>
2926         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2927             <summary>
2928             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2929             </summary>
2930             <param name="value">The value.</param>
2931             <returns>The result of the conversion.</returns>
2932         </member>
2933         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2934             <summary>
2935             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2936             </summary>
2937             <param name="value">The value.</param>
2938             <returns>The result of the conversion.</returns>
2939         </member>
2940         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2941             <summary>
2942             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2943             </summary>
2944             <param name="value">The value.</param>
2945             <returns>The result of the conversion.</returns>
2946         </member>
2947         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2948             <summary>
2949             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2950             </summary>
2951             <param name="value">The value.</param>
2952             <returns>The result of the conversion.</returns>
2953         </member>
2954         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2955             <summary>
2956             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2957             </summary>
2958             <param name="value">The value.</param>
2959             <returns>The result of the conversion.</returns>
2960         </member>
2961         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2962             <summary>
2963             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2964             </summary>
2965             <param name="value">The value.</param>
2966             <returns>The result of the conversion.</returns>
2967         </member>
2968         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2969             <summary>
2970             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2971             </summary>
2972             <param name="value">The value.</param>
2973             <returns>The result of the conversion.</returns>
2974         </member>
2975         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2976             <summary>
2977             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2978             </summary>
2979             <param name="value">The value.</param>
2980             <returns>The result of the conversion.</returns>
2981         </member>
2982         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2983             <summary>
2984             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2985             </summary>
2986             <param name="value">The value.</param>
2987             <returns>The result of the conversion.</returns>
2988         </member>
2989         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2990             <summary>
2991             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2992             </summary>
2993             <param name="value">The value.</param>
2994             <returns>The result of the conversion.</returns>
2995         </member>
2996         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2997             <summary>
2998             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2999             </summary>
3000             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3001             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3002         </member>
3003         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
3004             <summary>
3005             Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3006             </summary>
3007             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3008             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3009         </member>
3010         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
3011             <summary>
3012             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3013             </summary>
3014             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3015             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3016         </member>
3017         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
3018             <summary>
3019             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3020             </summary>
3021             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3022             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3023         </member>
3024         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
3025             <summary>
3026             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3027             </summary>
3028             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3029             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3030         </member>
3031         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
3032             <summary>
3033             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3034             </summary>
3035             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3036             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3037         </member>
3038         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
3039             <summary>
3040             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3041             </summary>
3042             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3043             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3044         </member>
3045         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
3046             <summary>
3047             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3048             </summary>
3049             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3050             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3051         </member>
3052         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
3053             <summary>
3054             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3055             </summary>
3056             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3057             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3058         </member>
3059         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
3060             <summary>
3061             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3062             </summary>
3063             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3064             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3065         </member>
3066         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
3067             <summary>
3068             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3069             </summary>
3070             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3071             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3072         </member>
3073         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
3074             <summary>
3075             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3076             </summary>
3077             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3078             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3079         </member>
3080         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
3081             <summary>
3082             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3083             </summary>
3084             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3085             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3086         </member>
3087         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
3088             <summary>
3089             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3090             </summary>
3091             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3092             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3093         </member>
3094         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
3095             <summary>
3096             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3097             </summary>
3098             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3099             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3100         </member>
3101         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
3102             <summary>
3103             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3104             </summary>
3105             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3106             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3107         </member>
3108         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
3109             <summary>
3110             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3111             </summary>
3112             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3113             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3114         </member>
3115         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
3116             <summary>
3117             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3118             </summary>
3119             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3120             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3121         </member>
3122         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
3123             <summary>
3124             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3125             </summary>
3126             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3127             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3128         </member>
3129         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
3130             <summary>
3131             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3132             </summary>
3133             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3134             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3135         </member>
3136         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
3137             <summary>
3138             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3139             </summary>
3140             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3141             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3142         </member>
3143         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
3144             <summary>
3145             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3146             </summary>
3147             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3148             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3149         </member>
3150         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
3151             <summary>
3152             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3153             </summary>
3154             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3155             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3156         </member>
3157         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
3158             <summary>
3159             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3160             </summary>
3161             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3162             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3163         </member>
3164         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
3165             <summary>
3166             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3167             </summary>
3168             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3169             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3170         </member>
3171         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
3172             <summary>
3173             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3174             </summary>
3175             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3176             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3177         </member>
3178         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
3179             <summary>
3180             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3181             </summary>
3182             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3183             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3184         </member>
3185         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
3186             <summary>
3187             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3188             </summary>
3189             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3190             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3191         </member>
3192         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
3193             <summary>
3194             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3195             </summary>
3196             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3197             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3198         </member>
3199         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3200             <summary>
3201             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3202             </summary>
3203             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3204             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3205         </member>
3206         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3207             <summary>
3208             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3209             </summary>
3210             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3211             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3212         </member>
3213         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3214             <summary>
3215             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3216             </summary>
3217             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3218             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3219         </member>
3220         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3221             <summary>
3222             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3223             </summary>
3224             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3225             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3226         </member>
3227         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3228             <summary>
3229             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3230             </summary>
3231             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3232             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3233         </member>
3234         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3235             <summary>
3236             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3237             </summary>
3238             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3239             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3240         </member>
3241         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3242             <summary>
3243             Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3244             </summary>
3245             <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3246         </member>
3247         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3248             <summary>
3249             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3250             </summary>
3251             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3252             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3253         </member>
3254         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3255             <summary>
3256             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3257             </summary>
3258             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3259             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3260             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3261         </member>
3262         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3263             <summary>
3264             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3265             </summary>
3266             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3267             <returns>The new object created from the JSON value.</returns>
3268         </member>
3269         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3270             <summary>
3271             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3272             </summary>
3273             <param name="objectType">The object type that the token will be deserialized to.</param>
3274             <returns>The new object created from the JSON value.</returns>
3275         </member>
3276         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3277             <summary>
3278             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3279             </summary>
3280             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3281             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3282             <returns>The new object created from the JSON value.</returns>
3283         </member>
3284         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3285             <summary>
3286             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3287             </summary>
3288             <param name="objectType">The object type that the token will be deserialized to.</param>
3289             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3290             <returns>The new object created from the JSON value.</returns>
3291         </member>
3292         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3293             <summary>
3294             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3295             </summary>
3296             <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>
3297             <returns>
3298             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3299             that were read from the reader. The runtime type of the token is determined
3300             by the token type of the first token encountered in the reader.
3301             </returns>
3302         </member>
3303         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3304             <summary>
3305             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3306             </summary>
3307             <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>
3308             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3309             If this is null, default load settings will be used.</param>
3310             <returns>
3311             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3312             that were read from the reader. The runtime type of the token is determined
3313             by the token type of the first token encountered in the reader.
3314             </returns>
3315         </member>
3316         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3317             <summary>
3318             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3319             </summary>
3320             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3321             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3322         </member>
3323         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
3324             <summary>
3325             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3326             </summary>
3327             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3328             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3329             If this is null, default load settings will be used.</param>
3330             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3331         </member>
3332         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3333             <summary>
3334             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3335             </summary>
3336             <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>
3337             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3338             If this is null, default load settings will be used.</param>
3339             <returns>
3340             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3341             that were read from the reader. The runtime type of the token is determined
3342             by the token type of the first token encountered in the reader.
3343             </returns>
3344         </member>
3345         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3346             <summary>
3347             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3348             </summary>
3349             <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>
3350             <returns>
3351             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3352             that were read from the reader. The runtime type of the token is determined
3353             by the token type of the first token encountered in the reader.
3354             </returns>
3355         </member>
3356         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3357             <summary>
3358             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3359             </summary>
3360             <param name="path">
3361             A <see cref="T:System.String"/> that contains a JPath expression.
3362             </param>
3363             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
3364         </member>
3365         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3366             <summary>
3367             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3368             </summary>
3369             <param name="path">
3370             A <see cref="T:System.String"/> that contains a JPath expression.
3371             </param>
3372             <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>
3373             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3374         </member>
3375         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3376             <summary>
3377             Selects a collection of elements using a JPath expression.
3378             </summary>
3379             <param name="path">
3380             A <see cref="T:System.String"/> that contains a JPath expression.
3381             </param>
3382             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3383         </member>
3384         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3385             <summary>
3386             Selects a collection of elements using a JPath expression.
3387             </summary>
3388             <param name="path">
3389             A <see cref="T:System.String"/> that contains a JPath expression.
3390             </param>
3391             <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>
3392             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3393         </member>
3394         <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
3395             <summary>
3396             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3397             </summary>
3398             <param name="parameter">The expression tree representation of the runtime value.</param>
3399             <returns>
3400             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3401             </returns>
3402         </member>
3403         <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
3404             <summary>
3405             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3406             </summary>
3407             <param name="parameter">The expression tree representation of the runtime value.</param>
3408             <returns>
3409             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3410             </returns>
3411         </member>
3412         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3413             <summary>
3414             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3415             </summary>
3416             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3417         </member>
3418         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3419             <summary>
3420             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3421             </summary>
3422             <param name="annotation">The annotation to add.</param>
3423         </member>
3424         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3425             <summary>
3426             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3427             </summary>
3428             <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3429             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3430         </member>
3431         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3432             <summary>
3433             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3434             </summary>
3435             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3436             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3437         </member>
3438         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3439             <summary>
3440             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3441             </summary>
3442             <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3443             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3444         </member>
3445         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3446             <summary>
3447             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3448             </summary>
3449             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3450             <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>
3451         </member>
3452         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3453             <summary>
3454             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3455             </summary>
3456             <typeparam name="T">The type of annotations to remove.</typeparam>
3457         </member>
3458         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3459             <summary>
3460             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3461             </summary>
3462             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3463         </member>
3464         <member name="T:Newtonsoft.Json.Linq.JProperty">
3465             <summary>
3466             Represents a JSON property.
3467             </summary>
3468         </member>
3469         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
3470             <summary>
3471             Gets the container's children tokens.
3472             </summary>
3473             <value>The container's children tokens.</value>
3474         </member>
3475         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
3476             <summary>
3477             Gets the property name.
3478             </summary>
3479             <value>The property name.</value>
3480         </member>
3481         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
3482             <summary>
3483             Gets or sets the property value.
3484             </summary>
3485             <value>The property value.</value>
3486         </member>
3487         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
3488             <summary>
3489             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
3490             </summary>
3491             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
3492         </member>
3493         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
3494             <summary>
3495             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3496             </summary>
3497             <value>The type.</value>
3498         </member>
3499         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
3500             <summary>
3501             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3502             </summary>
3503             <param name="name">The property name.</param>
3504             <param name="content">The property content.</param>
3505         </member>
3506         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
3507             <summary>
3508             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3509             </summary>
3510             <param name="name">The property name.</param>
3511             <param name="content">The property content.</param>
3512         </member>
3513         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3514             <summary>
3515             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3516             </summary>
3517             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3518             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3519         </member>
3520         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
3521             <summary>
3522             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3523             </summary>
3524             <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>
3525             <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>
3526         </member>
3527         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3528             <summary>
3529             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3530             </summary>
3531             <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>
3532             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3533             If this is null, default load settings will be used.</param>
3534             <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>
3535         </member>
3536         <member name="T:Newtonsoft.Json.Linq.JTokenType">
3537             <summary>
3538             Specifies the type of token.
3539             </summary>
3540         </member>
3541         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
3542             <summary>
3543             No token type has been set.
3544             </summary>
3545         </member>
3546         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
3547             <summary>
3548             A JSON object.
3549             </summary>
3550         </member>
3551         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
3552             <summary>
3553             A JSON array.
3554             </summary>
3555         </member>
3556         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
3557             <summary>
3558             A JSON constructor.
3559             </summary>
3560         </member>
3561         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
3562             <summary>
3563             A JSON object property.
3564             </summary>
3565         </member>
3566         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
3567             <summary>
3568             A comment.
3569             </summary>
3570         </member>
3571         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
3572             <summary>
3573             An integer value.
3574             </summary>
3575         </member>
3576         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
3577             <summary>
3578             A float value.
3579             </summary>
3580         </member>
3581         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
3582             <summary>
3583             A string value.
3584             </summary>
3585         </member>
3586         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
3587             <summary>
3588             A boolean value.
3589             </summary>
3590         </member>
3591         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
3592             <summary>
3593             A null value.
3594             </summary>
3595         </member>
3596         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
3597             <summary>
3598             An undefined value.
3599             </summary>
3600         </member>
3601         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
3602             <summary>
3603             A date value.
3604             </summary>
3605         </member>
3606         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
3607             <summary>
3608             A raw JSON value.
3609             </summary>
3610         </member>
3611         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
3612             <summary>
3613             A collection of bytes value.
3614             </summary>
3615         </member>
3616         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
3617             <summary>
3618             A Guid value.
3619             </summary>
3620         </member>
3621         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
3622             <summary>
3623             A Uri value.
3624             </summary>
3625         </member>
3626         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
3627             <summary>
3628             A TimeSpan value.
3629             </summary>
3630         </member>
3631         <member name="T:Newtonsoft.Json.Linq.JValue">
3632             <summary>
3633             Represents a value in JSON (string, integer, date, etc).
3634             </summary>
3635         </member>
3636         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3637             <summary>
3638             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3639             </summary>
3640             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3641         </member>
3642         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3643             <summary>
3644             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3645             </summary>
3646             <param name="value">The value.</param>
3647         </member>
3648         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3649             <summary>
3650             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3651             </summary>
3652             <param name="value">The value.</param>
3653         </member>
3654         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3655             <summary>
3656             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3657             </summary>
3658             <param name="value">The value.</param>
3659         </member>
3660         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3661             <summary>
3662             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3663             </summary>
3664             <param name="value">The value.</param>
3665         </member>
3666         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3667             <summary>
3668             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3669             </summary>
3670             <param name="value">The value.</param>
3671         </member>
3672         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3673             <summary>
3674             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3675             </summary>
3676             <param name="value">The value.</param>
3677         </member>
3678         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3679             <summary>
3680             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3681             </summary>
3682             <param name="value">The value.</param>
3683         </member>
3684         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3685             <summary>
3686             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3687             </summary>
3688             <param name="value">The value.</param>
3689         </member>
3690         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3691             <summary>
3692             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3693             </summary>
3694             <param name="value">The value.</param>
3695         </member>
3696         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3697             <summary>
3698             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3699             </summary>
3700             <param name="value">The value.</param>
3701         </member>
3702         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3703             <summary>
3704             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3705             </summary>
3706             <param name="value">The value.</param>
3707         </member>
3708         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3709             <summary>
3710             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3711             </summary>
3712             <param name="value">The value.</param>
3713         </member>
3714         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3715             <summary>
3716             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3717             </summary>
3718             <param name="value">The value.</param>
3719         </member>
3720         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3721             <summary>
3722             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3723             </summary>
3724             <param name="value">The value.</param>
3725         </member>
3726         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3727             <summary>
3728             Gets a value indicating whether this token has child tokens.
3729             </summary>
3730             <value>
3731                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
3732             </value>
3733         </member>
3734         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3735             <summary>
3736             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3737             </summary>
3738             <param name="value">The value.</param>
3739             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3740         </member>
3741         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3742             <summary>
3743             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3744             </summary>
3745             <param name="value">The value.</param>
3746             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3747         </member>
3748         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3749             <summary>
3750             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3751             </summary>
3752             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3753         </member>
3754         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3755             <summary>
3756             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3757             </summary>
3758             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3759         </member>
3760         <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3761             <summary>
3762             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3763             </summary>
3764             <value>The type.</value>
3765         </member>
3766         <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3767             <summary>
3768             Gets or sets the underlying token value.
3769             </summary>
3770             <value>The underlying token value.</value>
3771         </member>
3772         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3773             <summary>
3774             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3775             </summary>
3776             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3777             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3778         </member>
3779         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3780             <summary>
3781             Indicates whether the current object is equal to another object of the same type.
3782             </summary>
3783             <returns>
3784             true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3785             </returns>
3786             <param name="other">An object to compare with this object.</param>
3787         </member>
3788         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3789             <summary>
3790             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3791             </summary>
3792             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3793             <returns>
3794             true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3795             </returns>
3796             <exception cref="T:System.NullReferenceException">
3797             The <paramref name="obj"/> parameter is null.
3798             </exception>
3799         </member>
3800         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3801             <summary>
3802             Serves as a hash function for a particular type.
3803             </summary>
3804             <returns>
3805             A hash code for the current <see cref="T:System.Object"/>.
3806             </returns>
3807         </member>
3808         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3809             <summary>
3810             Returns a <see cref="T:System.String"/> that represents this instance.
3811             </summary>
3812             <returns>
3813             A <see cref="T:System.String"/> that represents this instance.
3814             </returns>
3815         </member>
3816         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3817             <summary>
3818             Returns a <see cref="T:System.String"/> that represents this instance.
3819             </summary>
3820             <param name="format">The format.</param>
3821             <returns>
3822             A <see cref="T:System.String"/> that represents this instance.
3823             </returns>
3824         </member>
3825         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3826             <summary>
3827             Returns a <see cref="T:System.String"/> that represents this instance.
3828             </summary>
3829             <param name="formatProvider">The format provider.</param>
3830             <returns>
3831             A <see cref="T:System.String"/> that represents this instance.
3832             </returns>
3833         </member>
3834         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3835             <summary>
3836             Returns a <see cref="T:System.String"/> that represents this instance.
3837             </summary>
3838             <param name="format">The format.</param>
3839             <param name="formatProvider">The format provider.</param>
3840             <returns>
3841             A <see cref="T:System.String"/> that represents this instance.
3842             </returns>
3843         </member>
3844         <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
3845             <summary>
3846             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3847             </summary>
3848             <param name="parameter">The expression tree representation of the runtime value.</param>
3849             <returns>
3850             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3851             </returns>
3852         </member>
3853         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3854             <summary>
3855             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.
3856             </summary>
3857             <param name="obj">An object to compare with this instance.</param>
3858             <returns>
3859             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3860             Value
3861             Meaning
3862             Less than zero
3863             This instance is less than <paramref name="obj"/>.
3864             Zero
3865             This instance is equal to <paramref name="obj"/>.
3866             Greater than zero
3867             This instance is greater than <paramref name="obj"/>.
3868             </returns>
3869             <exception cref="T:System.ArgumentException">
3870                 <paramref name="obj"/> is not the same type as this instance.
3871             </exception>
3872         </member>
3873         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
3874             <summary>
3875             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3876             </summary>
3877         </member>
3878         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
3879             <summary>
3880             Read metadata properties located at the start of a JSON object.
3881             </summary>
3882         </member>
3883         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
3884             <summary>
3885             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
3886             </summary>
3887         </member>
3888         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
3889             <summary>
3890             Do not try to read metadata properties.
3891             </summary>
3892         </member>
3893         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
3894             <summary>
3895             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
3896             </summary>
3897         </member>
3898         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
3899             <summary>
3900             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3901             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3902             <code>Warning</code> and <code>Error</code> messages.
3903             </summary>
3904             <value>
3905             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3906             </value>
3907         </member>
3908         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3909             <summary>
3910             Writes the specified trace level, message and optional exception.
3911             </summary>
3912             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3913             <param name="message">The trace message.</param>
3914             <param name="ex">The trace exception. This parameter is optional.</param>
3915         </member>
3916         <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
3917             <summary>
3918             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3919             </summary>
3920         </member>
3921         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
3922             <summary>
3923             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
3924             </summary>
3925             <param name="memberInfo">The member info.</param>
3926         </member>
3927         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
3928             <summary>
3929             Sets the value.
3930             </summary>
3931             <param name="target">The target to set the value on.</param>
3932             <param name="value">The value to set on the target.</param>
3933         </member>
3934         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
3935             <summary>
3936             Gets the value.
3937             </summary>
3938             <param name="target">The target to get the value from.</param>
3939             <returns>The value.</returns>
3940         </member>
3941         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
3942             <summary>
3943             Provides methods to get attributes.
3944             </summary>
3945         </member>
3946         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
3947             <summary>
3948             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3949             </summary>
3950             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3951             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3952         </member>
3953         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3954             <summary>
3955             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3956             </summary>
3957             <param name="attributeType">The type of the attributes.</param>
3958             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3959             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3960         </member>
3961         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
3962             <summary>
3963             Represents a trace writer.
3964             </summary>
3965         </member>
3966         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
3967             <summary>
3968             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3969             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3970             <code>Warning</code> and <code>Error</code> messages.
3971             </summary>
3972             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
3973         </member>
3974         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3975             <summary>
3976             Writes the specified trace level, message and optional exception.
3977             </summary>
3978             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3979             <param name="message">The trace message.</param>
3980             <param name="ex">The trace exception. This parameter is optional.</param>
3981         </member>
3982         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
3983             <summary>
3984             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3985             </summary>
3986         </member>
3987         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
3988             <summary>
3989             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
3990             </summary>
3991             <value>The converter.</value>
3992         </member>
3993         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
3994             <summary>
3995             Gets or sets a value indicating whether the collection items preserve object references.
3996             </summary>
3997             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
3998         </member>
3999         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
4000             <summary>
4001             Gets or sets the collection item reference loop handling.
4002             </summary>
4003             <value>The reference loop handling.</value>
4004         </member>
4005         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
4006             <summary>
4007             Gets or sets the collection item type name handling.
4008             </summary>
4009             <value>The type name handling.</value>
4010         </member>
4011         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
4012             <summary>
4013             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
4014             </summary>
4015             <param name="underlyingType">The underlying type for the contract.</param>
4016         </member>
4017         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
4018             <summary>
4019             Represents a trace writer that writes to memory. When the trace message limit is
4020             reached then old trace messages will be removed as new messages are added.
4021             </summary>
4022         </member>
4023         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
4024             <summary>
4025             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
4026             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
4027             <code>Warning</code> and <code>Error</code> messages.
4028             </summary>
4029             <value>
4030             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
4031             </value>
4032         </member>
4033         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
4034             <summary>
4035             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
4036             </summary>
4037         </member>
4038         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
4039             <summary>
4040             Writes the specified trace level, message and optional exception.
4041             </summary>
4042             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
4043             <param name="message">The trace message.</param>
4044             <param name="ex">The trace exception. This parameter is optional.</param>
4045         </member>
4046         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
4047             <summary>
4048             Returns an enumeration of the most recent trace messages.
4049             </summary>
4050             <returns>An enumeration of the most recent trace messages.</returns>
4051         </member>
4052         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
4053             <summary>
4054             Returns a <see cref="T:System.String"/> of the most recent trace messages.
4055             </summary>
4056             <returns>
4057             A <see cref="T:System.String"/> of the most recent trace messages.
4058             </returns>
4059         </member>
4060         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
4061             <summary>
4062             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"/>.
4063             </summary>
4064         </member>
4065         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
4066             <summary>
4067             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
4068             </summary>
4069             <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>
4070         </member>
4071         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
4072             <summary>
4073             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
4074             </summary>
4075             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
4076             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
4077         </member>
4078         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
4079             <summary>
4080             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
4081             </summary>
4082             <param name="attributeType">The type of the attributes.</param>
4083             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
4084             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
4085         </member>
4086         <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
4087             <summary>
4088             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4089             </summary>
4090         </member>
4091         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
4092             <summary>
4093             Gets the object's properties.
4094             </summary>
4095             <value>The object's properties.</value>
4096         </member>
4097         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
4098             <summary>
4099             Gets or sets the property name resolver.
4100             </summary>
4101             <value>The property name resolver.</value>
4102         </member>
4103         <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
4104             <summary>
4105             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
4106             </summary>
4107             <param name="underlyingType">The underlying type for the contract.</param>
4108         </member>
4109         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
4110             <summary>
4111             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4112             </summary>
4113         </member>
4114         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
4115             <summary>
4116             Gets or sets the ISerializable object constructor.
4117             </summary>
4118             <value>The ISerializable object constructor.</value>
4119         </member>
4120         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
4121             <summary>
4122             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
4123             </summary>
4124             <param name="underlyingType">The underlying type for the contract.</param>
4125         </member>
4126         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
4127             <summary>
4128             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4129             </summary>
4130         </member>
4131         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
4132             <summary>
4133             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
4134             </summary>
4135             <param name="underlyingType">The underlying type for the contract.</param>
4136         </member>
4137         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
4138             <summary>
4139             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4140             </summary>
4141         </member>
4142         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
4143             <summary>
4144             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
4145             </summary>
4146             <param name="underlyingType">The underlying type for the contract.</param>
4147         </member>
4148         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
4149             <summary>
4150             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
4151             </summary>
4152         </member>
4153         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
4154             <summary>
4155             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
4156             </summary>
4157             <param name="memberInfo">The member info.</param>
4158         </member>
4159         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
4160             <summary>
4161             Sets the value.
4162             </summary>
4163             <param name="target">The target to set the value on.</param>
4164             <param name="value">The value to set on the target.</param>
4165         </member>
4166         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
4167             <summary>
4168             Gets the value.
4169             </summary>
4170             <param name="target">The target to get the value from.</param>
4171             <returns>The value.</returns>
4172         </member>
4173         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
4174             <summary>
4175             Provides data for the Error event.
4176             </summary>
4177         </member>
4178         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
4179             <summary>
4180             Gets the current object the error event is being raised against.
4181             </summary>
4182             <value>The current object the error event is being raised against.</value>
4183         </member>
4184         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
4185             <summary>
4186             Gets the error context.
4187             </summary>
4188             <value>The error context.</value>
4189         </member>
4190         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
4191             <summary>
4192             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
4193             </summary>
4194             <param name="currentObject">The current object.</param>
4195             <param name="errorContext">The error context.</param>
4196         </member>
4197         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
4198             <summary>
4199             Resolves member mappings for a type, camel casing property names.
4200             </summary>
4201         </member>
4202         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
4203             <summary>
4204             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
4205             </summary>
4206         </member>
4207         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
4208             <summary>
4209             Resolves the name of the property.
4210             </summary>
4211             <param name="propertyName">Name of the property.</param>
4212             <returns>The property name camel cased.</returns>
4213         </member>
4214         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
4215             <summary>
4216             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
4217             </summary>
4218         </member>
4219         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
4220             <summary>
4221             Gets a value indicating whether members are being get and set using dynamic code generation.
4222             This value is determined by the runtime permissions available.
4223             </summary>
4224             <value>
4225                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
4226             </value>
4227         </member>
4228         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
4229             <summary>
4230             Gets or sets the default members search flags.
4231             </summary>
4232             <value>The default members search flags.</value>
4233         </member>
4234         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
4235             <summary>
4236             Gets or sets a value indicating whether compiler generated members should be serialized.
4237             </summary>
4238             <value>
4239                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
4240             </value>
4241         </member>
4242         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
4243             <summary>
4244             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
4245             </summary>
4246             <value>
4247                 <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>.
4248             </value>
4249         </member>
4250         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
4251             <summary>
4252             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
4253             </summary>
4254             <value>
4255                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
4256             </value>
4257         </member>
4258         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
4259             <summary>
4260             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
4261             </summary>
4262         </member>
4263         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
4264             <summary>
4265             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
4266             </summary>
4267             <param name="shareCache">
4268             If set to <c>true</c> the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> will use a cached shared with other resolvers of the same type.
4269             Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
4270             happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
4271             results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4272             </param>
4273         </member>
4274         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
4275             <summary>
4276             Resolves the contract for a given type.
4277             </summary>
4278             <param name="type">The type to resolve a contract for.</param>
4279             <returns>The contract for a given type.</returns>
4280         </member>
4281         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
4282             <summary>
4283             Gets the serializable members for the type.
4284             </summary>
4285             <param name="objectType">The type to get serializable members for.</param>
4286             <returns>The serializable members for the type.</returns>
4287         </member>
4288         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
4289             <summary>
4290             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
4291             </summary>
4292             <param name="objectType">Type of the object.</param>
4293             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
4294         </member>
4295         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
4296             <summary>
4297             Creates the constructor parameters.
4298             </summary>
4299             <param name="constructor">The constructor to create properties for.</param>
4300             <param name="memberProperties">The type's member properties.</param>
4301             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
4302         </member>
4303         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
4304             <summary>
4305             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
4306             </summary>
4307             <param name="matchingMemberProperty">The matching member property.</param>
4308             <param name="parameterInfo">The constructor parameter.</param>
4309             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
4310         </member>
4311         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
4312             <summary>
4313             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
4314             </summary>
4315             <param name="objectType">Type of the object.</param>
4316             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
4317         </member>
4318         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
4319             <summary>
4320             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
4321             </summary>
4322             <param name="objectType">Type of the object.</param>
4323             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
4324         </member>
4325         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
4326             <summary>
4327             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
4328             </summary>
4329             <param name="objectType">Type of the object.</param>
4330             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
4331         </member>
4332         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
4333             <summary>
4334             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
4335             </summary>
4336             <param name="objectType">Type of the object.</param>
4337             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
4338         </member>
4339         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
4340             <summary>
4341             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
4342             </summary>
4343             <param name="objectType">Type of the object.</param>
4344             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
4345         </member>
4346         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
4347             <summary>
4348             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
4349             </summary>
4350             <param name="objectType">Type of the object.</param>
4351             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
4352         </member>
4353         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
4354             <summary>
4355             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
4356             </summary>
4357             <param name="objectType">Type of the object.</param>
4358             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
4359         </member>
4360         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
4361             <summary>
4362             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
4363             </summary>
4364             <param name="objectType">Type of the object.</param>
4365             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
4366         </member>
4367         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
4368             <summary>
4369             Determines which contract type is created for the given type.
4370             </summary>
4371             <param name="objectType">Type of the object.</param>
4372             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
4373         </member>
4374         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
4375             <summary>
4376             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
4377             </summary>
4378             <param name="type">The type to create properties for.</param>
4379             /// <param name="memberSerialization">The member serialization mode for the type.</param>
4380             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
4381         </member>
4382         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
4383             <summary>
4384             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
4385             </summary>
4386             <param name="member">The member.</param>
4387             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
4388         </member>
4389         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
4390             <summary>
4391             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
4392             </summary>
4393             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
4394             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
4395             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
4396         </member>
4397         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
4398             <summary>
4399             Resolves the name of the property.
4400             </summary>
4401             <param name="propertyName">Name of the property.</param>
4402             <returns>Resolved name of the property.</returns>
4403         </member>
4404         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
4405             <summary>
4406             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
4407             </summary>
4408             <param name="dictionaryKey">Key of the dictionary.</param>
4409             <returns>Resolved key of the dictionary.</returns>
4410         </member>
4411         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
4412             <summary>
4413             Gets the resolved name of the property.
4414             </summary>
4415             <param name="propertyName">Name of the property.</param>
4416             <returns>Name of the property.</returns>
4417         </member>
4418         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
4419             <summary>
4420             The default serialization binder used when resolving and loading classes from type names.
4421             </summary>
4422         </member>
4423         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
4424             <summary>
4425             When overridden in a derived class, controls the binding of a serialized object to a type.
4426             </summary>
4427             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
4428             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
4429             <returns>
4430             The type of the object the formatter creates a new instance of.
4431             </returns>
4432         </member>
4433         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
4434             <summary>
4435             When overridden in a derived class, controls the binding of a serialized object to a type.
4436             </summary>
4437             <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
4438             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param>
4439             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
4440         </member>
4441         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
4442             <summary>
4443             Provides information surrounding an error.
4444             </summary>
4445         </member>
4446         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
4447             <summary>
4448             Gets the error.
4449             </summary>
4450             <value>The error.</value>
4451         </member>
4452         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
4453             <summary>
4454             Gets the original object that caused the error.
4455             </summary>
4456             <value>The original object that caused the error.</value>
4457         </member>
4458         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
4459             <summary>
4460             Gets the member that caused the error.
4461             </summary>
4462             <value>The member that caused the error.</value>
4463         </member>
4464         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
4465             <summary>
4466             Gets the path of the JSON location where the error occurred.
4467             </summary>
4468             <value>The path of the JSON location where the error occurred.</value>
4469         </member>
4470         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
4471             <summary>
4472             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
4473             </summary>
4474             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
4475         </member>
4476         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
4477             <summary>
4478             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
4479             </summary>
4480             <example>
4481               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
4482               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
4483             </example>
4484         </member>
4485         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
4486             <summary>
4487             Resolves the contract for a given type.
4488             </summary>
4489             <param name="type">The type to resolve a contract for.</param>
4490             <returns>The contract for a given type.</returns>
4491         </member>
4492         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
4493             <summary>
4494             Provides methods to get and set values.
4495             </summary>
4496         </member>
4497         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
4498             <summary>
4499             Sets the value.
4500             </summary>
4501             <param name="target">The target to set the value on.</param>
4502             <param name="value">The value to set on the target.</param>
4503         </member>
4504         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
4505             <summary>
4506             Gets the value.
4507             </summary>
4508             <param name="target">The target to get the value from.</param>
4509             <returns>The value.</returns>
4510         </member>
4511         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
4512             <summary>
4513             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4514             </summary>
4515         </member>
4516         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
4517             <summary>
4518             Gets the <see cref="T:System.Type"/> of the collection items.
4519             </summary>
4520             <value>The <see cref="T:System.Type"/> of the collection items.</value>
4521         </member>
4522         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
4523             <summary>
4524             Gets a value indicating whether the collection type is a multidimensional array.
4525             </summary>
4526             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
4527         </member>
4528         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
4529             <summary>
4530             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4531             </summary>
4532             <value>The function used to create the object.</value>
4533         </member>
4534         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
4535             <summary>
4536             Gets a value indicating whether the creator has a parameter with the collection values.
4537             </summary>
4538             <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
4539         </member>
4540         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
4541             <summary>
4542             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
4543             </summary>
4544             <param name="underlyingType">The underlying type for the contract.</param>
4545         </member>
4546         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
4547             <summary>
4548             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
4549             </summary>
4550             <param name="o">The object that raised the callback event.</param>
4551             <param name="context">The streaming context.</param>
4552         </member>
4553         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
4554             <summary>
4555             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
4556             </summary>
4557             <param name="o">The object that raised the callback event.</param>
4558             <param name="context">The streaming context.</param>
4559             <param name="errorContext">The error context.</param>
4560         </member>
4561         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
4562             <summary>
4563             Sets extension data for an object during deserialization.
4564             </summary>
4565             <param name="o">The object to set extension data on.</param>
4566             <param name="key">The extension data key.</param>
4567             <param name="value">The extension data value.</param>
4568         </member>
4569         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
4570             <summary>
4571             Gets extension data for an object during serialization.
4572             </summary>
4573             <param name="o">The object to set extension data on.</param>
4574         </member>
4575         <member name="T:Newtonsoft.Json.Serialization.JsonContract">
4576             <summary>
4577             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4578             </summary>
4579         </member>
4580         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
4581             <summary>
4582             Gets the underlying type for the contract.
4583             </summary>
4584             <value>The underlying type for the contract.</value>
4585         </member>
4586         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
4587             <summary>
4588             Gets or sets the type created during deserialization.
4589             </summary>
4590             <value>The type created during deserialization.</value>
4591         </member>
4592         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
4593             <summary>
4594             Gets or sets whether this type contract is serialized as a reference.
4595             </summary>
4596             <value>Whether this type contract is serialized as a reference.</value>
4597         </member>
4598         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
4599             <summary>
4600             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
4601             </summary>
4602             <value>The converter.</value>
4603         </member>
4604         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
4605             <summary>
4606             Gets or sets all methods called immediately after deserialization of the object.
4607             </summary>
4608             <value>The methods called immediately after deserialization of the object.</value>
4609         </member>
4610         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
4611             <summary>
4612             Gets or sets all methods called during deserialization of the object.
4613             </summary>
4614             <value>The methods called during deserialization of the object.</value>
4615         </member>
4616         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
4617             <summary>
4618             Gets or sets all methods called after serialization of the object graph.
4619             </summary>
4620             <value>The methods called after serialization of the object graph.</value>
4621         </member>
4622         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
4623             <summary>
4624             Gets or sets all methods called before serialization of the object.
4625             </summary>
4626             <value>The methods called before serialization of the object.</value>
4627         </member>
4628         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
4629             <summary>
4630             Gets or sets all method called when an error is thrown during the serialization of the object.
4631             </summary>
4632             <value>The methods called when an error is thrown during the serialization of the object.</value>
4633         </member>
4634         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
4635             <summary>
4636             Gets or sets the method called immediately after deserialization of the object.
4637             </summary>
4638             <value>The method called immediately after deserialization of the object.</value>
4639         </member>
4640         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
4641             <summary>
4642             Gets or sets the method called during deserialization of the object.
4643             </summary>
4644             <value>The method called during deserialization of the object.</value>
4645         </member>
4646         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
4647             <summary>
4648             Gets or sets the method called after serialization of the object graph.
4649             </summary>
4650             <value>The method called after serialization of the object graph.</value>
4651         </member>
4652         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
4653             <summary>
4654             Gets or sets the method called before serialization of the object.
4655             </summary>
4656             <value>The method called before serialization of the object.</value>
4657         </member>
4658         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
4659             <summary>
4660             Gets or sets the method called when an error is thrown during the serialization of the object.
4661             </summary>
4662             <value>The method called when an error is thrown during the serialization of the object.</value>
4663         </member>
4664         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
4665             <summary>
4666             Gets or sets the default creator method used to create the object.
4667             </summary>
4668             <value>The default creator method used to create the object.</value>
4669         </member>
4670         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
4671             <summary>
4672             Gets or sets a value indicating whether the default creator is non public.
4673             </summary>
4674             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
4675         </member>
4676         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
4677             <summary>
4678             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4679             </summary>
4680         </member>
4681         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
4682             <summary>
4683             Gets or sets the property name resolver.
4684             </summary>
4685             <value>The property name resolver.</value>
4686         </member>
4687         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
4688             <summary>
4689             Gets or sets the dictionary key resolver.
4690             </summary>
4691             <value>The dictionary key resolver.</value>
4692         </member>
4693         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
4694             <summary>
4695             Gets the <see cref="T:System.Type"/> of the dictionary keys.
4696             </summary>
4697             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
4698         </member>
4699         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
4700             <summary>
4701             Gets the <see cref="T:System.Type"/> of the dictionary values.
4702             </summary>
4703             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
4704         </member>
4705         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
4706             <summary>
4707             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4708             </summary>
4709             <value>The function used to create the object.</value>
4710         </member>
4711         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
4712             <summary>
4713             Gets a value indicating whether the creator has a parameter with the dictionary values.
4714             </summary>
4715             <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
4716         </member>
4717         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
4718             <summary>
4719             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
4720             </summary>
4721             <param name="underlyingType">The underlying type for the contract.</param>
4722         </member>
4723         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
4724             <summary>
4725             Maps a JSON property to a .NET member or constructor parameter.
4726             </summary>
4727         </member>
4728         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
4729             <summary>
4730             Gets or sets the name of the property.
4731             </summary>
4732             <value>The name of the property.</value>
4733         </member>
4734         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
4735             <summary>
4736             Gets or sets the type that declared this property.
4737             </summary>
4738             <value>The type that declared this property.</value>
4739         </member>
4740         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
4741             <summary>
4742             Gets or sets the order of serialization and deserialization of a member.
4743             </summary>
4744             <value>The numeric order of serialization or deserialization.</value>
4745         </member>
4746         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
4747             <summary>
4748             Gets or sets the name of the underlying member or parameter.
4749             </summary>
4750             <value>The name of the underlying member or parameter.</value>
4751         </member>
4752         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
4753             <summary>
4754             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
4755             </summary>
4756             <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>
4757         </member>
4758         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
4759             <summary>
4760             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
4761             </summary>
4762             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
4763         </member>
4764         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
4765             <summary>
4766             Gets or sets the type of the property.
4767             </summary>
4768             <value>The type of the property.</value>
4769         </member>
4770         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
4771             <summary>
4772             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
4773             If set this converter takes presidence over the contract converter for the property type.
4774             </summary>
4775             <value>The converter.</value>
4776         </member>
4777         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
4778             <summary>
4779             Gets or sets the member converter.
4780             </summary>
4781             <value>The member converter.</value>
4782         </member>
4783         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
4784             <summary>
4785             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
4786             </summary>
4787             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
4788         </member>
4789         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
4790             <summary>
4791             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
4792             </summary>
4793             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
4794         </member>
4795         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
4796             <summary>
4797             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
4798             </summary>
4799             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
4800         </member>
4801         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
4802             <summary>
4803             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
4804             </summary>
4805             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
4806         </member>
4807         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
4808             <summary>
4809             Gets the default value.
4810             </summary>
4811             <value>The default value.</value>
4812         </member>
4813         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
4814             <summary>
4815             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
4816             </summary>
4817             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
4818         </member>
4819         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
4820             <summary>
4821             Gets or sets a value indicating whether this property preserves object references.
4822             </summary>
4823             <value>
4824                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
4825             </value>
4826         </member>
4827         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
4828             <summary>
4829             Gets or sets the property null value handling.
4830             </summary>
4831             <value>The null value handling.</value>
4832         </member>
4833         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
4834             <summary>
4835             Gets or sets the property default value handling.
4836             </summary>
4837             <value>The default value handling.</value>
4838         </member>
4839         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
4840             <summary>
4841             Gets or sets the property reference loop handling.
4842             </summary>
4843             <value>The reference loop handling.</value>
4844         </member>
4845         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
4846             <summary>
4847             Gets or sets the property object creation handling.
4848             </summary>
4849             <value>The object creation handling.</value>
4850         </member>
4851         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
4852             <summary>
4853             Gets or sets or sets the type name handling.
4854             </summary>
4855             <value>The type name handling.</value>
4856         </member>
4857         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
4858             <summary>
4859             Gets or sets a predicate used to determine whether the property should be serialize.
4860             </summary>
4861             <value>A predicate used to determine whether the property should be serialize.</value>
4862         </member>
4863         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
4864             <summary>
4865             Gets or sets a predicate used to determine whether the property should be deserialized.
4866             </summary>
4867             <value>A predicate used to determine whether the property should be deserialized.</value>
4868         </member>
4869         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
4870             <summary>
4871             Gets or sets a predicate used to determine whether the property should be serialized.
4872             </summary>
4873             <value>A predicate used to determine whether the property should be serialized.</value>
4874         </member>
4875         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
4876             <summary>
4877             Gets or sets an action used to set whether the property has been deserialized.
4878             </summary>
4879             <value>An action used to set whether the property has been deserialized.</value>
4880         </member>
4881         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
4882             <summary>
4883             Returns a <see cref="T:System.String"/> that represents this instance.
4884             </summary>
4885             <returns>
4886             A <see cref="T:System.String"/> that represents this instance.
4887             </returns>
4888         </member>
4889         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
4890             <summary>
4891             Gets or sets the converter used when serializing the property's collection items.
4892             </summary>
4893             <value>The collection's items converter.</value>
4894         </member>
4895         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
4896             <summary>
4897             Gets or sets whether this property's collection items are serialized as a reference.
4898             </summary>
4899             <value>Whether this property's collection items are serialized as a reference.</value>
4900         </member>
4901         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
4902             <summary>
4903             Gets or sets the the type name handling used when serializing the property's collection items.
4904             </summary>
4905             <value>The collection's items type name handling.</value>
4906         </member>
4907         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
4908             <summary>
4909             Gets or sets the the reference loop handling used when serializing the property's collection items.
4910             </summary>
4911             <value>The collection's items reference loop handling.</value>
4912         </member>
4913         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
4914             <summary>
4915             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
4916             </summary>
4917         </member>
4918         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
4919             <summary>
4920             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
4921             </summary>
4922             <param name="type">The type.</param>
4923         </member>
4924         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
4925             <summary>
4926             When implemented in a derived class, extracts the key from the specified element.
4927             </summary>
4928             <param name="item">The element from which to extract the key.</param>
4929             <returns>The key for the specified element.</returns>
4930         </member>
4931         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
4932             <summary>
4933             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4934             </summary>
4935             <param name="property">The property to add to the collection.</param>
4936         </member>
4937         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
4938             <summary>
4939             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4940             First attempts to get an exact case match of propertyName and then
4941             a case insensitive match.
4942             </summary>
4943             <param name="propertyName">Name of the property.</param>
4944             <returns>A matching property if found.</returns>
4945         </member>
4946         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
4947             <summary>
4948             Gets a property by property name.
4949             </summary>
4950             <param name="propertyName">The name of the property to get.</param>
4951             <param name="comparisonType">Type property name string comparison.</param>
4952             <returns>A matching property if found.</returns>
4953         </member>
4954         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4955             <summary>
4956             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4957             </summary>
4958         </member>
4959         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4960             <summary>
4961             Resolves a reference to its object.
4962             </summary>
4963             <param name="context">The serialization context.</param>
4964             <param name="reference">The reference to resolve.</param>
4965             <returns>The object that</returns>
4966         </member>
4967         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4968             <summary>
4969             Gets the reference for the sepecified object.
4970             </summary>
4971             <param name="context">The serialization context.</param>
4972             <param name="value">The object to get a reference for.</param>
4973             <returns>The reference to the object.</returns>
4974         </member>
4975         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
4976             <summary>
4977             Determines whether the specified object is referenced.
4978             </summary>
4979             <param name="context">The serialization context.</param>
4980             <param name="value">The object to test for a reference.</param>
4981             <returns>
4982                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
4983             </returns>
4984         </member>
4985         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
4986             <summary>
4987             Adds a reference to the specified object.
4988             </summary>
4989             <param name="context">The serialization context.</param>
4990             <param name="reference">The reference.</param>
4991             <param name="value">The object to reference.</param>
4992         </member>
4993         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
4994             <summary>
4995             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4996             </summary>
4997         </member>
4998         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
4999             <summary>
5000             Gets or sets the object member serialization.
5001             </summary>
5002             <value>The member object serialization.</value>
5003         </member>
5004         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
5005             <summary>
5006             Gets or sets a value that indicates whether the object's properties are required.
5007             </summary>
5008             <value>
5009                 A value indicating whether the object's properties are required.
5010             </value>
5011         </member>
5012         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
5013             <summary>
5014             Gets the object's properties.
5015             </summary>
5016             <value>The object's properties.</value>
5017         </member>
5018         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
5019             <summary>
5020             Gets the constructor parameters required for any non-default constructor
5021             </summary>
5022         </member>
5023         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
5024             <summary>
5025             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"/>.
5026             </summary>
5027         </member>
5028         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
5029             <summary>
5030             Gets or sets the override constructor used to create the object.
5031             This is set when a constructor is marked up using the
5032             JsonConstructor attribute.
5033             </summary>
5034             <value>The override constructor.</value>
5035         </member>
5036         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
5037             <summary>
5038             Gets or sets the parametrized constructor used to create the object.
5039             </summary>
5040             <value>The parametrized constructor.</value>
5041         </member>
5042         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
5043             <summary>
5044             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
5045             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
5046             </summary>
5047             <value>The function used to create the object.</value>
5048         </member>
5049         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
5050             <summary>
5051             Gets or sets the extension data setter.
5052             </summary>
5053         </member>
5054         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
5055             <summary>
5056             Gets or sets the extension data getter.
5057             </summary>
5058         </member>
5059         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
5060             <summary>
5061             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
5062             </summary>
5063             <param name="underlyingType">The underlying type for the contract.</param>
5064         </member>
5065         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
5066             <summary>
5067             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5068             </summary>
5069         </member>
5070         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
5071             <summary>
5072             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
5073             </summary>
5074             <param name="underlyingType">The underlying type for the contract.</param>
5075         </member>
5076         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
5077             <summary>
5078             Lookup and create an instance of the JsonConverter type described by the argument.
5079             </summary>
5080             <param name="converterType">The JsonConverter type to create.</param>
5081             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
5082             If null, the default constructor is used.</param>
5083         </member>
5084         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
5085             <summary>
5086             Create a factory function that can be used to create instances of a JsonConverter described by the 
5087             argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
5088             parameterized constructors by way of an object array.
5089             </summary>
5090         </member>
5091         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
5092             <summary>
5093             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
5094             </summary>
5095         </member>
5096         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
5097             <summary>
5098             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
5099             </summary>
5100             <param name="memberInfo">The member info.</param>
5101         </member>
5102         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
5103             <summary>
5104             Sets the value.
5105             </summary>
5106             <param name="target">The target to set the value on.</param>
5107             <param name="value">The value to set on the target.</param>
5108         </member>
5109         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
5110             <summary>
5111             Gets the value.
5112             </summary>
5113             <param name="target">The target to get the value from.</param>
5114             <returns>The value.</returns>
5115         </member>
5116         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
5117             <summary>
5118             When applied to a method, specifies that the method is called when an error occurs serializing an object.
5119             </summary>
5120         </member>
5121         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
5122             <summary>
5123             Represents a method that constructs an object.
5124             </summary>
5125             <typeparam name="T">The object type to create.</typeparam>
5126         </member>
5127         <member name="T:Newtonsoft.Json.StringEscapeHandling">
5128             <summary>
5129             Specifies how strings are escaped when writing JSON text.
5130             </summary>
5131         </member>
5132         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
5133             <summary>
5134             Only control characters (e.g. newline) are escaped.
5135             </summary>
5136         </member>
5137         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
5138             <summary>
5139             All non-ASCII and control characters (e.g. newline) are escaped.
5140             </summary>
5141         </member>
5142         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
5143             <summary>
5144             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
5145             </summary>
5146         </member>
5147         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5148             <summary>
5149             Helper method for generating a MetaObject which calls a
5150             specific method on Dynamic that returns a result
5151             </summary>
5152         </member>
5153         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5154             <summary>
5155             Helper method for generating a MetaObject which calls a
5156             specific method on Dynamic, but uses one of the arguments for
5157             the result.
5158             </summary>
5159         </member>
5160         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5161             <summary>
5162             Helper method for generating a MetaObject which calls a
5163             specific method on Dynamic, but uses one of the arguments for
5164             the result.
5165             </summary>
5166         </member>
5167         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
5168             <summary>
5169             Returns a Restrictions object which includes our current restrictions merged
5170             with a restriction limiting our type
5171             </summary>
5172         </member>
5173         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
5174             <summary>
5175             Converts the value to the specified type. If the value is unable to be converted, the
5176             value is checked whether it assignable to the specified type.
5177             </summary>
5178             <param name="initialValue">The value to convert.</param>
5179             <param name="culture">The culture to use when converting.</param>
5180             <param name="targetType">The type to convert or cast the value to.</param>
5181             <returns>
5182             The converted type. If conversion was unsuccessful, the initial value
5183             is returned if assignable to the target type.
5184             </returns>
5185         </member>
5186         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
5187             <summary>
5188             Gets a dictionary of the names and values of an Enum type.
5189             </summary>
5190             <returns></returns>
5191         </member>
5192         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
5193             <summary>
5194             Gets a dictionary of the names and values of an Enum type.
5195             </summary>
5196             <param name="enumType">The enum type to get names and values for.</param>
5197             <returns></returns>
5198         </member>
5199         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
5200             <summary>
5201             Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
5202             </summary>
5203         </member>
5204         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
5205             <summary>
5206             Determines whether the collection is null or empty.
5207             </summary>
5208             <param name="collection">The collection.</param>
5209             <returns>
5210                 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
5211             </returns>
5212         </member>
5213         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
5214             <summary>
5215             Adds the elements of the specified collection to the specified generic IList.
5216             </summary>
5217             <param name="initial">The list to add to.</param>
5218             <param name="collection">The collection of elements to add.</param>
5219         </member>
5220         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
5221             <summary>
5222             Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer{TSource}.
5223             </summary>
5224             <typeparam name="TSource">The type of the elements of source.</typeparam>
5225             <param name="list">A sequence in which to locate a value.</param>
5226             <param name="value">The object to locate in the sequence</param>
5227             <param name="comparer">An equality comparer to compare values.</param>
5228             <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, â€“1.</returns>
5229         </member>
5230         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
5231             <summary>
5232             Gets the type of the typed collection's items.
5233             </summary>
5234             <param name="type">The type.</param>
5235             <returns>The type of the typed collection's items.</returns>
5236         </member>
5237         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
5238             <summary>
5239             Gets the member's underlying type.
5240             </summary>
5241             <param name="member">The member.</param>
5242             <returns>The underlying type of the member.</returns>
5243         </member>
5244         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
5245             <summary>
5246             Determines whether the member is an indexed property.
5247             </summary>
5248             <param name="member">The member.</param>
5249             <returns>
5250                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
5251             </returns>
5252         </member>
5253         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
5254             <summary>
5255             Determines whether the property is an indexed property.
5256             </summary>
5257             <param name="property">The property.</param>
5258             <returns>
5259                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
5260             </returns>
5261         </member>
5262         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
5263             <summary>
5264             Gets the member's value on the object.
5265             </summary>
5266             <param name="member">The member.</param>
5267             <param name="target">The target object.</param>
5268             <returns>The member's value on the object.</returns>
5269         </member>
5270         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
5271             <summary>
5272             Sets the member's value on the target object.
5273             </summary>
5274             <param name="member">The member.</param>
5275             <param name="target">The target.</param>
5276             <param name="value">The value.</param>
5277         </member>
5278         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
5279             <summary>
5280             Determines whether the specified MemberInfo can be read.
5281             </summary>
5282             <param name="member">The MemberInfo to determine whether can be read.</param>
5283             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
5284             <returns>
5285                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
5286             </returns>
5287         </member>
5288         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
5289             <summary>
5290             Determines whether the specified MemberInfo can be set.
5291             </summary>
5292             <param name="member">The MemberInfo to determine whether can be set.</param>
5293             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
5294             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
5295             <returns>
5296                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
5297             </returns>
5298         </member>
5299         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
5300             <summary>
5301             Determines whether the string is all white space. Empty string will return false.
5302             </summary>
5303             <param name="s">The string to test whether it is all white space.</param>
5304             <returns>
5305                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
5306             </returns>
5307         </member>
5308         <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
5309             <summary>
5310             Nulls an empty string.
5311             </summary>
5312             <param name="s">The string.</param>
5313             <returns>Null if the string was null, otherwise the string unchanged.</returns>
5314         </member>
5315         <member name="T:Newtonsoft.Json.Required">
5316             <summary>
5317             Indicating whether a property is required.
5318             </summary>
5319         </member>
5320         <member name="F:Newtonsoft.Json.Required.Default">
5321             <summary>
5322             The property is not required. The default state.
5323             </summary>
5324         </member>
5325         <member name="F:Newtonsoft.Json.Required.AllowNull">
5326             <summary>
5327             The property must be defined in JSON but can be a null value.
5328             </summary>
5329         </member>
5330         <member name="F:Newtonsoft.Json.Required.Always">
5331             <summary>
5332             The property must be defined in JSON and cannot be a null value.
5333             </summary>
5334         </member>
5335         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
5336             <summary>
5337             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5338             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
5339             </summary>
5340             <example>
5341               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
5342             </example>
5343         </member>
5344         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
5345             <summary>
5346             Do not preserve references when serializing types.
5347             </summary>
5348         </member>
5349         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
5350             <summary>
5351             Preserve references when serializing into a JSON object structure.
5352             </summary>
5353         </member>
5354         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
5355             <summary>
5356             Preserve references when serializing into a JSON array structure.
5357             </summary>
5358         </member>
5359         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
5360             <summary>
5361             Preserve references when serializing.
5362             </summary>
5363         </member>
5364         <member name="T:Newtonsoft.Json.IJsonLineInfo">
5365             <summary>
5366             Provides an interface to enable a class to return line and position information.
5367             </summary>
5368         </member>
5369         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
5370             <summary>
5371             Gets a value indicating whether the class can return line information.
5372             </summary>
5373             <returns>
5374                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
5375             </returns>
5376         </member>
5377         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
5378             <summary>
5379             Gets the current line number.
5380             </summary>
5381             <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
5382         </member>
5383         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
5384             <summary>
5385             Gets the current line position.
5386             </summary>
5387             <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
5388         </member>
5389         <member name="T:Newtonsoft.Json.JsonArrayAttribute">
5390             <summary>
5391             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
5392             </summary>
5393         </member>
5394         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
5395             <summary>
5396             Gets or sets a value indicating whether null items are allowed in the collection.
5397             </summary>
5398             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
5399         </member>
5400         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
5401             <summary>
5402             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
5403             </summary>
5404         </member>
5405         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
5406             <summary>
5407             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
5408             </summary>
5409             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
5410         </member>
5411         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
5412             <summary>
5413             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
5414             </summary>
5415             <param name="id">The container Id.</param>
5416         </member>
5417         <member name="T:Newtonsoft.Json.JsonContainerAttribute">
5418             <summary>
5419             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5420             </summary>
5421         </member>
5422         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
5423             <summary>
5424             Gets or sets the id.
5425             </summary>
5426             <value>The id.</value>
5427         </member>
5428         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
5429             <summary>
5430             Gets or sets the title.
5431             </summary>
5432             <value>The title.</value>
5433         </member>
5434         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
5435             <summary>
5436             Gets or sets the description.
5437             </summary>
5438             <value>The description.</value>
5439         </member>
5440         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
5441             <summary>
5442             Gets the collection's items converter.
5443             </summary>
5444             <value>The collection's items converter.</value>
5445         </member>
5446         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
5447             <summary>
5448             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
5449             If null, the default constructor is used.
5450             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
5451             order, and type of these parameters.
5452             </summary>
5453             <example>
5454             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
5455             </example>
5456         </member>
5457         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
5458             <summary>
5459             Gets or sets a value that indicates whether to preserve object references.
5460             </summary>
5461             <value>
5462                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
5463             </value>
5464         </member>
5465         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
5466             <summary>
5467             Gets or sets a value that indicates whether to preserve collection's items references.
5468             </summary>
5469             <value>
5470                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
5471             </value>
5472         </member>
5473         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
5474             <summary>
5475             Gets or sets the reference loop handling used when serializing the collection's items.
5476             </summary>
5477             <value>The reference loop handling.</value>
5478         </member>
5479         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
5480             <summary>
5481             Gets or sets the type name handling used when serializing the collection's items.
5482             </summary>
5483             <value>The type name handling.</value>
5484         </member>
5485         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
5486             <summary>
5487             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
5488             </summary>
5489         </member>
5490         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
5491             <summary>
5492             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
5493             </summary>
5494             <param name="id">The container Id.</param>
5495         </member>
5496         <member name="T:Newtonsoft.Json.DefaultValueHandling">
5497             <summary>
5498             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5499             </summary>
5500             <example>
5501               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
5502               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
5503             </example>
5504         </member>
5505         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
5506             <summary>
5507             Include members where the member value is the same as the member's default value when serializing objects.
5508             Included members are written to JSON. Has no effect when deserializing.
5509             </summary>
5510         </member>
5511         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
5512             <summary>
5513             Ignore members where the member value is the same as the member's default value when serializing objects
5514             so that is is not written to JSON.
5515             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
5516             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
5517             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
5518             </summary>
5519         </member>
5520         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
5521             <summary>
5522             Members with a default value but no JSON will be set to their default value when deserializing.
5523             </summary>
5524         </member>
5525         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
5526             <summary>
5527             Ignore members where the member value is the same as the member's default value when serializing objects
5528             and sets members to their default value when deserializing.
5529             </summary>
5530         </member>
5531         <member name="T:Newtonsoft.Json.JsonConverterAttribute">
5532             <summary>
5533             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
5534             </summary>
5535         </member>
5536         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
5537             <summary>
5538             Gets the <see cref="T:System.Type"/> of the converter.
5539             </summary>
5540             <value>The <see cref="T:System.Type"/> of the converter.</value>
5541         </member>
5542         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
5543             <summary>
5544             The parameter list to use when constructing the JsonConverter described by ConverterType.  
5545             If null, the default constructor is used.
5546             </summary>
5547         </member>
5548         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
5549             <summary>
5550             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5551             </summary>
5552             <param name="converterType">Type of the converter.</param>
5553         </member>
5554         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
5555             <summary>
5556             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5557             </summary>
5558             <param name="converterType">Type of the converter.</param>
5559             <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>
5560         </member>
5561         <member name="T:Newtonsoft.Json.JsonObjectAttribute">
5562             <summary>
5563             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5564             </summary>
5565         </member>
5566         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
5567             <summary>
5568             Gets or sets the member serialization.
5569             </summary>
5570             <value>The member serialization.</value>
5571         </member>
5572         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
5573             <summary>
5574             Gets or sets a value that indicates whether the object's properties are required.
5575             </summary>
5576             <value>
5577                 A value indicating whether the object's properties are required.
5578             </value>
5579         </member>
5580         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
5581             <summary>
5582             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
5583             </summary>
5584         </member>
5585         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
5586             <summary>
5587             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
5588             </summary>
5589             <param name="memberSerialization">The member serialization.</param>
5590         </member>
5591         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
5592             <summary>
5593             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
5594             </summary>
5595             <param name="id">The container Id.</param>
5596         </member>
5597         <member name="T:Newtonsoft.Json.JsonSerializerSettings">
5598             <summary>
5599             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
5600             </summary>
5601         </member>
5602         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
5603             <summary>
5604             Gets or sets how reference loops (e.g. a class referencing itself) is handled.
5605             </summary>
5606             <value>Reference loop handling.</value>
5607         </member>
5608         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
5609             <summary>
5610             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5611             </summary>
5612             <value>Missing member handling.</value>
5613         </member>
5614         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
5615             <summary>
5616             Gets or sets how objects are created during deserialization.
5617             </summary>
5618             <value>The object creation handling.</value>
5619         </member>
5620         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
5621             <summary>
5622             Gets or sets how null values are handled during serialization and deserialization.
5623             </summary>
5624             <value>Null value handling.</value>
5625         </member>
5626         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
5627             <summary>
5628             Gets or sets how null default are handled during serialization and deserialization.
5629             </summary>
5630             <value>The default value handling.</value>
5631         </member>
5632         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
5633             <summary>
5634             Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5635             </summary>
5636             <value>The converters.</value>
5637         </member>
5638         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
5639             <summary>
5640             Gets or sets how object references are preserved by the serializer.
5641             </summary>
5642             <value>The preserve references handling.</value>
5643         </member>
5644         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
5645             <summary>
5646             Gets or sets how type name writing and reading is handled by the serializer.
5647             </summary>
5648             <value>The type name handling.</value>
5649         </member>
5650         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
5651             <summary>
5652             Gets or sets how metadata properties are used during deserialization.
5653             </summary>
5654             <value>The metadata properties handling.</value>
5655         </member>
5656         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
5657             <summary>
5658             Gets or sets how a type name assembly is written and resolved by the serializer.
5659             </summary>
5660             <value>The type name assembly format.</value>
5661         </member>
5662         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
5663             <summary>
5664             Gets or sets how constructors are used during deserialization.
5665             </summary>
5666             <value>The constructor handling.</value>
5667         </member>
5668         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
5669             <summary>
5670             Gets or sets the contract resolver used by the serializer when
5671             serializing .NET objects to JSON and vice versa.
5672             </summary>
5673             <value>The contract resolver.</value>
5674         </member>
5675         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
5676             <summary>
5677             Gets or sets the equality comparer used by the serializer when comparing references.
5678             </summary>
5679             <value>The equality comparer.</value>
5680         </member>
5681         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
5682             <summary>
5683             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5684             </summary>
5685             <value>The reference resolver.</value>
5686         </member>
5687         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
5688             <summary>
5689             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5690             </summary>
5691             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
5692         </member>
5693         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
5694             <summary>
5695             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5696             </summary>
5697             <value>The trace writer.</value>
5698         </member>
5699         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
5700             <summary>
5701             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5702             </summary>
5703             <value>The binder.</value>
5704         </member>
5705         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
5706             <summary>
5707             Gets or sets the error handler called during serialization and deserialization.
5708             </summary>
5709             <value>The error handler called during serialization and deserialization.</value>
5710         </member>
5711         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
5712             <summary>
5713             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5714             </summary>
5715             <value>The context.</value>
5716         </member>
5717         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
5718             <summary>
5719             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.
5720             </summary>
5721         </member>
5722         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
5723             <summary>
5724             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5725             </summary>
5726         </member>
5727         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
5728             <summary>
5729             Indicates how JSON text output is formatted.
5730             </summary>
5731         </member>
5732         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
5733             <summary>
5734             Get or set how dates are written to JSON text.
5735             </summary>
5736         </member>
5737         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
5738             <summary>
5739             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5740             </summary>
5741         </member>
5742         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
5743             <summary>
5744             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5745             </summary>
5746         </member>
5747         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
5748             <summary>
5749             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5750             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5751             are written as JSON.
5752             </summary>
5753         </member>
5754         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
5755             <summary>
5756             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5757             </summary>
5758         </member>
5759         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
5760             <summary>
5761             Get or set how strings are escaped when writing JSON text.
5762             </summary>
5763         </member>
5764         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
5765             <summary>
5766             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5767             </summary>
5768         </member>
5769         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
5770             <summary>
5771             Gets a value indicating whether there will be a check for additional content after deserializing an object.
5772             </summary>
5773             <value>
5774                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
5775             </value>
5776         </member>
5777         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
5778             <summary>
5779             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
5780             </summary>
5781         </member>
5782         <member name="T:Newtonsoft.Json.JsonValidatingReader">
5783             <summary>
5784             <para>
5785             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
5786             </para>
5787             <note type="caution">
5788             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.
5789             </note>
5790             </summary>
5791         </member>
5792         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
5793             <summary>
5794             Sets an event handler for receiving schema validation errors.
5795             </summary>
5796         </member>
5797         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
5798             <summary>
5799             Gets the text value of the current JSON token.
5800             </summary>
5801             <value></value>
5802         </member>
5803         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
5804             <summary>
5805             Gets the depth of the current token in the JSON document.
5806             </summary>
5807             <value>The depth of the current token in the JSON document.</value>
5808         </member>
5809         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
5810             <summary>
5811             Gets the path of the current JSON token. 
5812             </summary>
5813         </member>
5814         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
5815             <summary>
5816             Gets the quotation mark character used to enclose the value of a string.
5817             </summary>
5818             <value></value>
5819         </member>
5820         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
5821             <summary>
5822             Gets the type of the current JSON token.
5823             </summary>
5824             <value></value>
5825         </member>
5826         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
5827             <summary>
5828             Gets the Common Language Runtime (CLR) type for the current JSON token.
5829             </summary>
5830             <value></value>
5831         </member>
5832         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
5833             <summary>
5834             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
5835             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
5836             </summary>
5837             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
5838         </member>
5839         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
5840             <summary>
5841             Gets or sets the schema.
5842             </summary>
5843             <value>The schema.</value>
5844         </member>
5845         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
5846             <summary>
5847             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
5848             </summary>
5849             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
5850         </member>
5851         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
5852             <summary>
5853             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5854             </summary>
5855             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5856         </member>
5857         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
5858             <summary>
5859             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
5860             </summary>
5861             <returns>
5862             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
5863             </returns>
5864         </member>
5865         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
5866             <summary>
5867             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5868             </summary>
5869             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5870         </member>
5871         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
5872             <summary>
5873             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5874             </summary>
5875             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5876         </member>
5877         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
5878             <summary>
5879             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5880             </summary>
5881             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5882         </member>
5883         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
5884             <summary>
5885             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5886             </summary>
5887             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5888         </member>
5889         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
5890             <summary>
5891             Reads the next JSON token from the stream.
5892             </summary>
5893             <returns>
5894             true if the next token was read successfully; false if there are no more tokens to read.
5895             </returns>
5896         </member>
5897         <member name="T:Newtonsoft.Json.MemberSerialization">
5898             <summary>
5899             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5900             </summary>
5901         </member>
5902         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
5903             <summary>
5904             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
5905             This is the default member serialization mode.
5906             </summary>
5907         </member>
5908         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
5909             <summary>
5910             Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
5911             This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
5912             </summary>
5913         </member>
5914         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
5915             <summary>
5916             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
5917             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
5918             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
5919             </summary>
5920         </member>
5921         <member name="T:Newtonsoft.Json.ObjectCreationHandling">
5922             <summary>
5923             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5924             </summary>
5925         </member>
5926         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
5927             <summary>
5928             Reuse existing objects, create new objects when needed.
5929             </summary>
5930         </member>
5931         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
5932             <summary>
5933             Only reuse existing objects.
5934             </summary>
5935         </member>
5936         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
5937             <summary>
5938             Always create new objects.
5939             </summary>
5940         </member>
5941         <member name="T:Newtonsoft.Json.JsonTextReader">
5942             <summary>
5943             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
5944             </summary>
5945         </member>
5946         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
5947             <summary>
5948             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
5949             </summary>
5950             <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
5951         </member>
5952         <member name="M:Newtonsoft.Json.JsonTextReader.Read">
5953             <summary>
5954             Reads the next JSON token from the stream.
5955             </summary>
5956             <returns>
5957             true if the next token was read successfully; false if there are no more tokens to read.
5958             </returns>
5959         </member>
5960         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
5961             <summary>
5962             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
5963             </summary>
5964             <returns>
5965             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
5966             </returns>
5967         </member>
5968         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
5969             <summary>
5970             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5971             </summary>
5972             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5973         </member>
5974         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
5975             <summary>
5976             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5977             </summary>
5978             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5979         </member>
5980         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
5981             <summary>
5982             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5983             </summary>
5984             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5985         </member>
5986         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
5987             <summary>
5988             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5989             </summary>
5990             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5991         </member>
5992         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
5993             <summary>
5994             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5995             </summary>
5996             <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
5997         </member>
5998         <member name="M:Newtonsoft.Json.JsonTextReader.Close">
5999             <summary>
6000             Changes the state to closed. 
6001             </summary>
6002         </member>
6003         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
6004             <summary>
6005             Gets a value indicating whether the class can return line information.
6006             </summary>
6007             <returns>
6008                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
6009             </returns>
6010         </member>
6011         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
6012             <summary>
6013             Gets the current line number.
6014             </summary>
6015             <value>
6016             The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
6017             </value>
6018         </member>
6019         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
6020             <summary>
6021             Gets the current line position.
6022             </summary>
6023             <value>
6024             The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
6025             </value>
6026         </member>
6027         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
6028             <summary>
6029             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
6030             </summary>
6031         </member>
6032         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
6033             <summary>
6034             Gets or sets the converter used when serializing the property's collection items.
6035             </summary>
6036             <value>The collection's items converter.</value>
6037         </member>
6038         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
6039             <summary>
6040             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
6041             If null, the default constructor is used.
6042             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
6043             order, and type of these parameters.
6044             </summary>
6045             <example>
6046             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
6047             </example>
6048         </member>
6049         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
6050             <summary>
6051             Gets or sets the null value handling used when serializing this property.
6052             </summary>
6053             <value>The null value handling.</value>
6054         </member>
6055         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
6056             <summary>
6057             Gets or sets the default value handling used when serializing this property.
6058             </summary>
6059             <value>The default value handling.</value>
6060         </member>
6061         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
6062             <summary>
6063             Gets or sets the reference loop handling used when serializing this property.
6064             </summary>
6065             <value>The reference loop handling.</value>
6066         </member>
6067         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
6068             <summary>
6069             Gets or sets the object creation handling used when deserializing this property.
6070             </summary>
6071             <value>The object creation handling.</value>
6072         </member>
6073         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
6074             <summary>
6075             Gets or sets the type name handling used when serializing this property.
6076             </summary>
6077             <value>The type name handling.</value>
6078         </member>
6079         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
6080             <summary>
6081             Gets or sets whether this property's value is serialized as a reference.
6082             </summary>
6083             <value>Whether this property's value is serialized as a reference.</value>
6084         </member>
6085         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
6086             <summary>
6087             Gets or sets the order of serialization and deserialization of a member.
6088             </summary>
6089             <value>The numeric order of serialization or deserialization.</value>
6090         </member>
6091         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
6092             <summary>
6093             Gets or sets a value indicating whether this property is required.
6094             </summary>
6095             <value>
6096                 A value indicating whether this property is required.
6097             </value>
6098         </member>
6099         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
6100             <summary>
6101             Gets or sets the name of the property.
6102             </summary>
6103             <value>The name of the property.</value>
6104         </member>
6105         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
6106             <summary>
6107             Gets or sets the the reference loop handling used when serializing the property's collection items.
6108             </summary>
6109             <value>The collection's items reference loop handling.</value>
6110         </member>
6111         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
6112             <summary>
6113             Gets or sets the the type name handling used when serializing the property's collection items.
6114             </summary>
6115             <value>The collection's items type name handling.</value>
6116         </member>
6117         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
6118             <summary>
6119             Gets or sets whether this property's collection items are serialized as a reference.
6120             </summary>
6121             <value>Whether this property's collection items are serialized as a reference.</value>
6122         </member>
6123         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
6124             <summary>
6125             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
6126             </summary>
6127         </member>
6128         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
6129             <summary>
6130             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
6131             </summary>
6132             <param name="propertyName">Name of the property.</param>
6133         </member>
6134         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
6135             <summary>
6136             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
6137             </summary>
6138         </member>
6139         <member name="T:Newtonsoft.Json.JsonTextWriter">
6140             <summary>
6141             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6142             </summary>
6143         </member>
6144         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
6145             <summary>
6146             Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
6147             </summary>
6148         </member>
6149         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
6150             <summary>
6151             Gets or sets which character to use to quote attribute values.
6152             </summary>
6153         </member>
6154         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
6155             <summary>
6156             Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
6157             </summary>
6158         </member>
6159         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
6160             <summary>
6161             Gets or sets a value indicating whether object names will be surrounded with quotes.
6162             </summary>
6163         </member>
6164         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
6165             <summary>
6166             Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
6167             </summary>
6168             <param name="textWriter">The <c>TextWriter</c> to write to.</param>
6169         </member>
6170         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
6171             <summary>
6172             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6173             </summary>
6174         </member>
6175         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
6176             <summary>
6177             Closes this stream and the underlying stream.
6178             </summary>
6179         </member>
6180         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
6181             <summary>
6182             Writes the beginning of a JSON object.
6183             </summary>
6184         </member>
6185         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
6186             <summary>
6187             Writes the beginning of a JSON array.
6188             </summary>
6189         </member>
6190         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
6191             <summary>
6192             Writes the start of a constructor with the given name.
6193             </summary>
6194             <param name="name">The name of the constructor.</param>
6195         </member>
6196         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6197             <summary>
6198             Writes the specified end token.
6199             </summary>
6200             <param name="token">The end token to write.</param>
6201         </member>
6202         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
6203             <summary>
6204             Writes the property name of a name/value pair on a JSON object.
6205             </summary>
6206             <param name="name">The name of the property.</param>
6207         </member>
6208         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
6209             <summary>
6210             Writes the property name of a name/value pair on a JSON object.
6211             </summary>
6212             <param name="name">The name of the property.</param>
6213             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
6214         </member>
6215         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
6216             <summary>
6217             Writes indent characters.
6218             </summary>
6219         </member>
6220         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
6221             <summary>
6222             Writes the JSON value delimiter.
6223             </summary>
6224         </member>
6225         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
6226             <summary>
6227             Writes an indent space.
6228             </summary>
6229         </member>
6230         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
6231             <summary>
6232             Writes a <see cref="T:System.Object"/> value.
6233             An error will raised if the value cannot be written as a single JSON token.
6234             </summary>
6235             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6236         </member>
6237         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
6238             <summary>
6239             Writes a null value.
6240             </summary>
6241         </member>
6242         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
6243             <summary>
6244             Writes an undefined value.
6245             </summary>
6246         </member>
6247         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
6248             <summary>
6249             Writes raw JSON.
6250             </summary>
6251             <param name="json">The raw JSON to write.</param>
6252         </member>
6253         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
6254             <summary>
6255             Writes a <see cref="T:System.String"/> value.
6256             </summary>
6257             <param name="value">The <see cref="T:System.String"/> value to write.</param>
6258         </member>
6259         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
6260             <summary>
6261             Writes a <see cref="T:System.Int32"/> value.
6262             </summary>
6263             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6264         </member>
6265         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
6266             <summary>
6267             Writes a <see cref="T:System.UInt32"/> value.
6268             </summary>
6269             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6270         </member>
6271         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
6272             <summary>
6273             Writes a <see cref="T:System.Int64"/> value.
6274             </summary>
6275             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6276         </member>
6277         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
6278             <summary>
6279             Writes a <see cref="T:System.UInt64"/> value.
6280             </summary>
6281             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6282         </member>
6283         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
6284             <summary>
6285             Writes a <see cref="T:System.Single"/> value.
6286             </summary>
6287             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6288         </member>
6289         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
6290             <summary>
6291             Writes a <see cref="T:System.Nullable`1"/> value.
6292             </summary>
6293             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
6294         </member>
6295         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
6296             <summary>
6297             Writes a <see cref="T:System.Double"/> value.
6298             </summary>
6299             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6300         </member>
6301         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
6302             <summary>
6303             Writes a <see cref="T:System.Nullable`1"/> value.
6304             </summary>
6305             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
6306         </member>
6307         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
6308             <summary>
6309             Writes a <see cref="T:System.Boolean"/> value.
6310             </summary>
6311             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6312         </member>
6313         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
6314             <summary>
6315             Writes a <see cref="T:System.Int16"/> value.
6316             </summary>
6317             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6318         </member>
6319         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
6320             <summary>
6321             Writes a <see cref="T:System.UInt16"/> value.
6322             </summary>
6323             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6324         </member>
6325         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
6326             <summary>
6327             Writes a <see cref="T:System.Char"/> value.
6328             </summary>
6329             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6330         </member>
6331         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
6332             <summary>
6333             Writes a <see cref="T:System.Byte"/> value.
6334             </summary>
6335             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6336         </member>
6337         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
6338             <summary>
6339             Writes a <see cref="T:System.SByte"/> value.
6340             </summary>
6341             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6342         </member>
6343         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
6344             <summary>
6345             Writes a <see cref="T:System.Decimal"/> value.
6346             </summary>
6347             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6348         </member>
6349         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
6350             <summary>
6351             Writes a <see cref="T:System.DateTime"/> value.
6352             </summary>
6353             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6354         </member>
6355         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
6356             <summary>
6357             Writes a <see cref="T:System.Byte"/>[] value.
6358             </summary>
6359             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6360         </member>
6361         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
6362             <summary>
6363             Writes a <see cref="T:System.DateTimeOffset"/> value.
6364             </summary>
6365             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6366         </member>
6367         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
6368             <summary>
6369             Writes a <see cref="T:System.Guid"/> value.
6370             </summary>
6371             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6372         </member>
6373         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
6374             <summary>
6375             Writes a <see cref="T:System.TimeSpan"/> value.
6376             </summary>
6377             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6378         </member>
6379         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
6380             <summary>
6381             Writes a <see cref="T:System.Uri"/> value.
6382             </summary>
6383             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6384         </member>
6385         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
6386             <summary>
6387             Writes out a comment <code>/*...*/</code> containing the specified text. 
6388             </summary>
6389             <param name="text">Text to place inside the comment.</param>
6390         </member>
6391         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
6392             <summary>
6393             Writes out the given white space.
6394             </summary>
6395             <param name="ws">The string of white space characters.</param>
6396         </member>
6397         <member name="T:Newtonsoft.Json.JsonWriterException">
6398             <summary>
6399             The exception thrown when an error occurs while reading JSON text.
6400             </summary>
6401         </member>
6402         <member name="P:Newtonsoft.Json.JsonWriterException.Path">
6403             <summary>
6404             Gets the path to the JSON where the error occurred.
6405             </summary>
6406             <value>The path to the JSON where the error occurred.</value>
6407         </member>
6408         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
6409             <summary>
6410             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
6411             </summary>
6412         </member>
6413         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
6414             <summary>
6415             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6416             with a specified error message.
6417             </summary>
6418             <param name="message">The error message that explains the reason for the exception.</param>
6419         </member>
6420         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
6421             <summary>
6422             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6423             with a specified error message and a reference to the inner exception that is the cause of this exception.
6424             </summary>
6425             <param name="message">The error message that explains the reason for the exception.</param>
6426             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
6427         </member>
6428         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6429             <summary>
6430             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
6431             </summary>
6432             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6433             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6434             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6435             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6436         </member>
6437         <member name="T:Newtonsoft.Json.JsonReaderException">
6438             <summary>
6439             The exception thrown when an error occurs while reading JSON text.
6440             </summary>
6441         </member>
6442         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
6443             <summary>
6444             Gets the line number indicating where the error occurred.
6445             </summary>
6446             <value>The line number indicating where the error occurred.</value>
6447         </member>
6448         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
6449             <summary>
6450             Gets the line position indicating where the error occurred.
6451             </summary>
6452             <value>The line position indicating where the error occurred.</value>
6453         </member>
6454         <member name="P:Newtonsoft.Json.JsonReaderException.Path">
6455             <summary>
6456             Gets the path to the JSON where the error occurred.
6457             </summary>
6458             <value>The path to the JSON where the error occurred.</value>
6459         </member>
6460         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
6461             <summary>
6462             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
6463             </summary>
6464         </member>
6465         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
6466             <summary>
6467             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6468             with a specified error message.
6469             </summary>
6470             <param name="message">The error message that explains the reason for the exception.</param>
6471         </member>
6472         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
6473             <summary>
6474             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6475             with a specified error message and a reference to the inner exception that is the cause of this exception.
6476             </summary>
6477             <param name="message">The error message that explains the reason for the exception.</param>
6478             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
6479         </member>
6480         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6481             <summary>
6482             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
6483             </summary>
6484             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6485             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6486             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6487             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6488         </member>
6489         <member name="T:Newtonsoft.Json.JsonConverter">
6490             <summary>
6491             Converts an object to and from JSON.
6492             </summary>
6493         </member>
6494         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
6495             <summary>
6496             Writes the JSON representation of the object.
6497             </summary>
6498             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
6499             <param name="value">The value.</param>
6500             <param name="serializer">The calling serializer.</param>
6501         </member>
6502         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
6503             <summary>
6504             Reads the JSON representation of the object.
6505             </summary>
6506             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
6507             <param name="objectType">Type of the object.</param>
6508             <param name="existingValue">The existing value of object being read.</param>
6509             <param name="serializer">The calling serializer.</param>
6510             <returns>The object value.</returns>
6511         </member>
6512         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
6513             <summary>
6514             Determines whether this instance can convert the specified object type.
6515             </summary>
6516             <param name="objectType">Type of the object.</param>
6517             <returns>
6518                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
6519             </returns>
6520         </member>
6521         <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
6522             <summary>
6523             <para>
6524             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
6525             </para>
6526             <note type="caution">
6527             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.
6528             </note>
6529             </summary>
6530             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
6531         </member>
6532         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
6533             <summary>
6534             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
6535             </summary>
6536             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
6537         </member>
6538         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
6539             <summary>
6540             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
6541             </summary>
6542             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
6543         </member>
6544         <member name="T:Newtonsoft.Json.JsonConverterCollection">
6545             <summary>
6546             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6547             </summary>
6548         </member>
6549         <member name="T:Newtonsoft.Json.JsonReader">
6550             <summary>
6551             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6552             </summary>
6553         </member>
6554         <member name="T:Newtonsoft.Json.JsonReader.State">
6555             <summary>
6556             Specifies the state of the reader.
6557             </summary>
6558         </member>
6559         <member name="F:Newtonsoft.Json.JsonReader.State.Start">
6560             <summary>
6561             The Read method has not been called.
6562             </summary>
6563         </member>
6564         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
6565             <summary>
6566             The end of the file has been reached successfully.
6567             </summary>
6568         </member>
6569         <member name="F:Newtonsoft.Json.JsonReader.State.Property">
6570             <summary>
6571             Reader is at a property.
6572             </summary>
6573         </member>
6574         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
6575             <summary>
6576             Reader is at the start of an object.
6577             </summary>
6578         </member>
6579         <member name="F:Newtonsoft.Json.JsonReader.State.Object">
6580             <summary>
6581             Reader is in an object.
6582             </summary>
6583         </member>
6584         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
6585             <summary>
6586             Reader is at the start of an array.
6587             </summary>
6588         </member>
6589         <member name="F:Newtonsoft.Json.JsonReader.State.Array">
6590             <summary>
6591             Reader is in an array.
6592             </summary>
6593         </member>
6594         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
6595             <summary>
6596             The Close method has been called.
6597             </summary>
6598         </member>
6599         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
6600             <summary>
6601             Reader has just read a value.
6602             </summary>
6603         </member>
6604         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
6605             <summary>
6606             Reader is at the start of a constructor.
6607             </summary>
6608         </member>
6609         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
6610             <summary>
6611             Reader in a constructor.
6612             </summary>
6613         </member>
6614         <member name="F:Newtonsoft.Json.JsonReader.State.Error">
6615             <summary>
6616             An error occurred that prevents the read operation from continuing.
6617             </summary>
6618         </member>
6619         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
6620             <summary>
6621             The end of the file has been reached successfully.
6622             </summary>
6623         </member>
6624         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
6625             <summary>
6626             Gets the current reader state.
6627             </summary>
6628             <value>The current reader state.</value>
6629         </member>
6630         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
6631             <summary>
6632             Gets or sets a value indicating whether the underlying stream or
6633             <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
6634             </summary>
6635             <value>
6636             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
6637             the reader is closed; otherwise false. The default is true.
6638             </value>
6639         </member>
6640         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
6641             <summary>
6642             Gets or sets a value indicating whether multiple pieces of JSON content can
6643             be read from a continuous stream without erroring.
6644             </summary>
6645             <value>
6646             true to support reading multiple pieces of JSON content; otherwise false. The default is false.
6647             </value>
6648         </member>
6649         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
6650             <summary>
6651             Gets the quotation mark character used to enclose the value of a string.
6652             </summary>
6653         </member>
6654         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
6655             <summary>
6656             Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
6657             </summary>
6658         </member>
6659         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
6660             <summary>
6661             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6662             </summary>
6663         </member>
6664         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
6665             <summary>
6666             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6667             </summary>
6668         </member>
6669         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
6670             <summary>
6671             Get or set how custom date formatted strings are parsed when reading JSON.
6672             </summary>
6673         </member>
6674         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
6675             <summary>
6676             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6677             </summary>
6678         </member>
6679         <member name="P:Newtonsoft.Json.JsonReader.TokenType">
6680             <summary>
6681             Gets the type of the current JSON token. 
6682             </summary>
6683         </member>
6684         <member name="P:Newtonsoft.Json.JsonReader.Value">
6685             <summary>
6686             Gets the text value of the current JSON token.
6687             </summary>
6688         </member>
6689         <member name="P:Newtonsoft.Json.JsonReader.ValueType">
6690             <summary>
6691             Gets The Common Language Runtime (CLR) type for the current JSON token.
6692             </summary>
6693         </member>
6694         <member name="P:Newtonsoft.Json.JsonReader.Depth">
6695             <summary>
6696             Gets the depth of the current token in the JSON document.
6697             </summary>
6698             <value>The depth of the current token in the JSON document.</value>
6699         </member>
6700         <member name="P:Newtonsoft.Json.JsonReader.Path">
6701             <summary>
6702             Gets the path of the current JSON token. 
6703             </summary>
6704         </member>
6705         <member name="P:Newtonsoft.Json.JsonReader.Culture">
6706             <summary>
6707             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6708             </summary>
6709         </member>
6710         <member name="M:Newtonsoft.Json.JsonReader.#ctor">
6711             <summary>
6712             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
6713             </summary>
6714         </member>
6715         <member name="M:Newtonsoft.Json.JsonReader.Read">
6716             <summary>
6717             Reads the next JSON token from the stream.
6718             </summary>
6719             <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
6720         </member>
6721         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
6722             <summary>
6723             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6724             </summary>
6725             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6726         </member>
6727         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
6728             <summary>
6729             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6730             </summary>
6731             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6732         </member>
6733         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
6734             <summary>
6735             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6736             </summary>
6737             <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
6738         </member>
6739         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
6740             <summary>
6741             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6742             </summary>
6743             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6744         </member>
6745         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
6746             <summary>
6747             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6748             </summary>
6749             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6750         </member>
6751         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
6752             <summary>
6753             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6754             </summary>
6755             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6756         </member>
6757         <member name="M:Newtonsoft.Json.JsonReader.Skip">
6758             <summary>
6759             Skips the children of the current token.
6760             </summary>
6761         </member>
6762         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
6763             <summary>
6764             Sets the current token.
6765             </summary>
6766             <param name="newToken">The new token.</param>
6767         </member>
6768         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
6769             <summary>
6770             Sets the current token and value.
6771             </summary>
6772             <param name="newToken">The new token.</param>
6773             <param name="value">The value.</param>
6774         </member>
6775         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
6776             <summary>
6777             Sets the state based on current token type.
6778             </summary>
6779         </member>
6780         <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
6781             <summary>
6782             Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
6783             </summary>
6784         </member>
6785         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
6786             <summary>
6787             Releases unmanaged and - optionally - managed resources
6788             </summary>
6789             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
6790         </member>
6791         <member name="M:Newtonsoft.Json.JsonReader.Close">
6792             <summary>
6793             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
6794             </summary>
6795         </member>
6796         <member name="T:Newtonsoft.Json.JsonConvert">
6797             <summary>
6798             Provides methods for converting between common language runtime types and JSON types.
6799             </summary>
6800             <example>
6801               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
6802             </example>
6803         </member>
6804         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
6805             <summary>
6806             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6807             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
6808             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"/>.
6809             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
6810             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
6811             </summary>
6812         </member>
6813         <member name="F:Newtonsoft.Json.JsonConvert.True">
6814             <summary>
6815             Represents JavaScript's boolean value true as a string. This field is read-only.
6816             </summary>
6817         </member>
6818         <member name="F:Newtonsoft.Json.JsonConvert.False">
6819             <summary>
6820             Represents JavaScript's boolean value false as a string. This field is read-only.
6821             </summary>
6822         </member>
6823         <member name="F:Newtonsoft.Json.JsonConvert.Null">
6824             <summary>
6825             Represents JavaScript's null as a string. This field is read-only.
6826             </summary>
6827         </member>
6828         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
6829             <summary>
6830             Represents JavaScript's undefined as a string. This field is read-only.
6831             </summary>
6832         </member>
6833         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
6834             <summary>
6835             Represents JavaScript's positive infinity as a string. This field is read-only.
6836             </summary>
6837         </member>
6838         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
6839             <summary>
6840             Represents JavaScript's negative infinity as a string. This field is read-only.
6841             </summary>
6842         </member>
6843         <member name="F:Newtonsoft.Json.JsonConvert.NaN">
6844             <summary>
6845             Represents JavaScript's NaN as a string. This field is read-only.
6846             </summary>
6847         </member>
6848         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
6849             <summary>
6850             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
6851             </summary>
6852             <param name="value">The value to convert.</param>
6853             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
6854         </member>
6855         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
6856             <summary>
6857             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
6858             </summary>
6859             <param name="value">The value to convert.</param>
6860             <param name="format">The format the date will be converted to.</param>
6861             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
6862             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
6863         </member>
6864         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
6865             <summary>
6866             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
6867             </summary>
6868             <param name="value">The value to convert.</param>
6869             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
6870         </member>
6871         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
6872             <summary>
6873             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
6874             </summary>
6875             <param name="value">The value to convert.</param>
6876             <param name="format">The format the date will be converted to.</param>
6877             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
6878         </member>
6879         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
6880             <summary>
6881             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
6882             </summary>
6883             <param name="value">The value to convert.</param>
6884             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
6885         </member>
6886         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
6887             <summary>
6888             Converts the <see cref="T:System.Char"/> to its JSON string representation.
6889             </summary>
6890             <param name="value">The value to convert.</param>
6891             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
6892         </member>
6893         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
6894             <summary>
6895             Converts the <see cref="T:System.Enum"/> to its JSON string representation.
6896             </summary>
6897             <param name="value">The value to convert.</param>
6898             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
6899         </member>
6900         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
6901             <summary>
6902             Converts the <see cref="T:System.Int32"/> to its JSON string representation.
6903             </summary>
6904             <param name="value">The value to convert.</param>
6905             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
6906         </member>
6907         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
6908             <summary>
6909             Converts the <see cref="T:System.Int16"/> to its JSON string representation.
6910             </summary>
6911             <param name="value">The value to convert.</param>
6912             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
6913         </member>
6914         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
6915             <summary>
6916             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
6917             </summary>
6918             <param name="value">The value to convert.</param>
6919             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
6920         </member>
6921         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
6922             <summary>
6923             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
6924             </summary>
6925             <param name="value">The value to convert.</param>
6926             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
6927         </member>
6928         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
6929             <summary>
6930             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
6931             </summary>
6932             <param name="value">The value to convert.</param>
6933             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
6934         </member>
6935         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
6936             <summary>
6937             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
6938             </summary>
6939             <param name="value">The value to convert.</param>
6940             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
6941         </member>
6942         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
6943             <summary>
6944             Converts the <see cref="T:System.Single"/> to its JSON string representation.
6945             </summary>
6946             <param name="value">The value to convert.</param>
6947             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
6948         </member>
6949         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
6950             <summary>
6951             Converts the <see cref="T:System.Double"/> to its JSON string representation.
6952             </summary>
6953             <param name="value">The value to convert.</param>
6954             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
6955         </member>
6956         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
6957             <summary>
6958             Converts the <see cref="T:System.Byte"/> to its JSON string representation.
6959             </summary>
6960             <param name="value">The value to convert.</param>
6961             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
6962         </member>
6963         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
6964             <summary>
6965             Converts the <see cref="T:System.SByte"/> to its JSON string representation.
6966             </summary>
6967             <param name="value">The value to convert.</param>
6968             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
6969         </member>
6970         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
6971             <summary>
6972             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
6973             </summary>
6974             <param name="value">The value to convert.</param>
6975             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
6976         </member>
6977         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
6978             <summary>
6979             Converts the <see cref="T:System.Guid"/> to its JSON string representation.
6980             </summary>
6981             <param name="value">The value to convert.</param>
6982             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
6983         </member>
6984         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
6985             <summary>
6986             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
6987             </summary>
6988             <param name="value">The value to convert.</param>
6989             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
6990         </member>
6991         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
6992             <summary>
6993             Converts the <see cref="T:System.Uri"/> to its JSON string representation.
6994             </summary>
6995             <param name="value">The value to convert.</param>
6996             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
6997         </member>
6998         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
6999             <summary>
7000             Converts the <see cref="T:System.String"/> to its JSON string representation.
7001             </summary>
7002             <param name="value">The value to convert.</param>
7003             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7004         </member>
7005         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
7006             <summary>
7007             Converts the <see cref="T:System.String"/> to its JSON string representation.
7008             </summary>
7009             <param name="value">The value to convert.</param>
7010             <param name="delimiter">The string delimiter character.</param>
7011             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7012         </member>
7013         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
7014             <summary>
7015             Converts the <see cref="T:System.String"/> to its JSON string representation.
7016             </summary>
7017             <param name="value">The value to convert.</param>
7018             <param name="delimiter">The string delimiter character.</param>
7019             <param name="stringEscapeHandling">The string escape handling.</param>
7020             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7021         </member>
7022         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
7023             <summary>
7024             Converts the <see cref="T:System.Object"/> to its JSON string representation.
7025             </summary>
7026             <param name="value">The value to convert.</param>
7027             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
7028         </member>
7029         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
7030             <summary>
7031             Serializes the specified object to a JSON string.
7032             </summary>
7033             <param name="value">The object to serialize.</param>
7034             <returns>A JSON string representation of the object.</returns>
7035         </member>
7036         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
7037             <summary>
7038             Serializes the specified object to a JSON string using formatting.
7039             </summary>
7040             <param name="value">The object to serialize.</param>
7041             <param name="formatting">Indicates how the output is formatted.</param>
7042             <returns>
7043             A JSON string representation of the object.
7044             </returns>
7045         </member>
7046         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
7047             <summary>
7048             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7049             </summary>
7050             <param name="value">The object to serialize.</param>
7051             <param name="converters">A collection converters used while serializing.</param>
7052             <returns>A JSON string representation of the object.</returns>
7053         </member>
7054         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
7055             <summary>
7056             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7057             </summary>
7058             <param name="value">The object to serialize.</param>
7059             <param name="formatting">Indicates how the output is formatted.</param>
7060             <param name="converters">A collection converters used while serializing.</param>
7061             <returns>A JSON string representation of the object.</returns>
7062         </member>
7063         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7064             <summary>
7065             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7066             </summary>
7067             <param name="value">The object to serialize.</param>
7068             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7069             If this is null, default serialization settings will be used.</param>
7070             <returns>
7071             A JSON string representation of the object.
7072             </returns>
7073         </member>
7074         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7075             <summary>
7076             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7077             </summary>
7078             <param name="value">The object to serialize.</param>
7079             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7080             If this is null, default serialization settings will be used.</param>
7081             <param name="type">
7082             The type of the value being serialized.
7083             This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
7084             Specifing the type is optional.
7085             </param>
7086             <returns>
7087             A JSON string representation of the object.
7088             </returns>
7089         </member>
7090         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7091             <summary>
7092             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7093             </summary>
7094             <param name="value">The object to serialize.</param>
7095             <param name="formatting">Indicates how the output is formatted.</param>
7096             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7097             If this is null, default serialization settings will be used.</param>
7098             <returns>
7099             A JSON string representation of the object.
7100             </returns>
7101         </member>
7102         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7103             <summary>
7104             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7105             </summary>
7106             <param name="value">The object to serialize.</param>
7107             <param name="formatting">Indicates how the output is formatted.</param>
7108             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7109             If this is null, default serialization settings will be used.</param>
7110             <param name="type">
7111             The type of the value being serialized.
7112             This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
7113             Specifing the type is optional.
7114             </param>
7115             <returns>
7116             A JSON string representation of the object.
7117             </returns>
7118         </member>
7119         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)">
7120             <summary>
7121             Asynchronously serializes the specified object to a JSON string.
7122             Serialization will happen on a new thread.
7123             </summary>
7124             <param name="value">The object to serialize.</param>
7125             <returns>
7126             A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
7127             </returns>
7128         </member>
7129         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)">
7130             <summary>
7131             Asynchronously serializes the specified object to a JSON string using formatting.
7132             Serialization will happen on a new thread.
7133             </summary>
7134             <param name="value">The object to serialize.</param>
7135             <param name="formatting">Indicates how the output is formatted.</param>
7136             <returns>
7137             A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
7138             </returns>
7139         </member>
7140         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7141             <summary>
7142             Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7143             Serialization will happen on a new thread.
7144             </summary>
7145             <param name="value">The object to serialize.</param>
7146             <param name="formatting">Indicates how the output is formatted.</param>
7147             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7148             If this is null, default serialization settings will be used.</param>
7149             <returns>
7150             A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
7151             </returns>
7152         </member>
7153         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
7154             <summary>
7155             Deserializes the JSON to a .NET object.
7156             </summary>
7157             <param name="value">The JSON to deserialize.</param>
7158             <returns>The deserialized object from the JSON string.</returns>
7159         </member>
7160         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7161             <summary>
7162             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7163             </summary>
7164             <param name="value">The JSON to deserialize.</param>
7165             <param name="settings">
7166             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7167             If this is null, default serialization settings will be used.
7168             </param>
7169             <returns>The deserialized object from the JSON string.</returns>
7170         </member>
7171         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
7172             <summary>
7173             Deserializes the JSON to the specified .NET type.
7174             </summary>
7175             <param name="value">The JSON to deserialize.</param>
7176             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
7177             <returns>The deserialized object from the JSON string.</returns>
7178         </member>
7179         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
7180             <summary>
7181             Deserializes the JSON to the specified .NET type.
7182             </summary>
7183             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7184             <param name="value">The JSON to deserialize.</param>
7185             <returns>The deserialized object from the JSON string.</returns>
7186         </member>
7187         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
7188             <summary>
7189             Deserializes the JSON to the given anonymous type.
7190             </summary>
7191             <typeparam name="T">
7192             The anonymous type to deserialize to. This can't be specified
7193             traditionally and must be infered from the anonymous type passed
7194             as a parameter.
7195             </typeparam>
7196             <param name="value">The JSON to deserialize.</param>
7197             <param name="anonymousTypeObject">The anonymous type object.</param>
7198             <returns>The deserialized anonymous type from the JSON string.</returns>
7199         </member>
7200         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
7201             <summary>
7202             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7203             </summary>
7204             <typeparam name="T">
7205             The anonymous type to deserialize to. This can't be specified
7206             traditionally and must be infered from the anonymous type passed
7207             as a parameter.
7208             </typeparam>
7209             <param name="value">The JSON to deserialize.</param>
7210             <param name="anonymousTypeObject">The anonymous type object.</param>
7211             <param name="settings">
7212             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7213             If this is null, default serialization settings will be used.
7214             </param>
7215             <returns>The deserialized anonymous type from the JSON string.</returns>
7216         </member>
7217         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
7218             <summary>
7219             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7220             </summary>
7221             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7222             <param name="value">The JSON to deserialize.</param>
7223             <param name="converters">Converters to use while deserializing.</param>
7224             <returns>The deserialized object from the JSON string.</returns>
7225         </member>
7226         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7227             <summary>
7228             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7229             </summary>
7230             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7231             <param name="value">The object to deserialize.</param>
7232             <param name="settings">
7233             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7234             If this is null, default serialization settings will be used.
7235             </param>
7236             <returns>The deserialized object from the JSON string.</returns>
7237         </member>
7238         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
7239             <summary>
7240             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7241             </summary>
7242             <param name="value">The JSON to deserialize.</param>
7243             <param name="type">The type of the object to deserialize.</param>
7244             <param name="converters">Converters to use while deserializing.</param>
7245             <returns>The deserialized object from the JSON string.</returns>
7246         </member>
7247         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7248             <summary>
7249             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7250             </summary>
7251             <param name="value">The JSON to deserialize.</param>
7252             <param name="type">The type of the object to deserialize to.</param>
7253             <param name="settings">
7254             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7255             If this is null, default serialization settings will be used.
7256             </param>
7257             <returns>The deserialized object from the JSON string.</returns>
7258         </member>
7259         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)">
7260             <summary>
7261             Asynchronously deserializes the JSON to the specified .NET type.
7262             Deserialization will happen on a new thread.
7263             </summary>
7264             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7265             <param name="value">The JSON to deserialize.</param>
7266             <returns>
7267             A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
7268             </returns>
7269         </member>
7270         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7271             <summary>
7272             Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7273             Deserialization will happen on a new thread.
7274             </summary>
7275             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7276             <param name="value">The JSON to deserialize.</param>
7277             <param name="settings">
7278             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7279             If this is null, default serialization settings will be used.
7280             </param>
7281             <returns>
7282             A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
7283             </returns>
7284         </member>
7285         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)">
7286             <summary>
7287             Asynchronously deserializes the JSON to the specified .NET type.
7288             Deserialization will happen on a new thread.
7289             </summary>
7290             <param name="value">The JSON to deserialize.</param>
7291             <returns>
7292             A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
7293             </returns>
7294         </member>
7295         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7296             <summary>
7297             Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7298             Deserialization will happen on a new thread.
7299             </summary>
7300             <param name="value">The JSON to deserialize.</param>
7301             <param name="type">The type of the object to deserialize to.</param>
7302             <param name="settings">
7303             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7304             If this is null, default serialization settings will be used.
7305             </param>
7306             <returns>
7307             A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
7308             </returns>
7309         </member>
7310         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
7311             <summary>
7312             Populates the object with values from the JSON string.
7313             </summary>
7314             <param name="value">The JSON to populate values from.</param>
7315             <param name="target">The target object to populate values onto.</param>
7316         </member>
7317         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7318             <summary>
7319             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7320             </summary>
7321             <param name="value">The JSON to populate values from.</param>
7322             <param name="target">The target object to populate values onto.</param>
7323             <param name="settings">
7324             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7325             If this is null, default serialization settings will be used.
7326             </param>
7327         </member>
7328         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7329             <summary>
7330             Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7331             </summary>
7332             <param name="value">The JSON to populate values from.</param>
7333             <param name="target">The target object to populate values onto.</param>
7334             <param name="settings">
7335             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7336             If this is null, default serialization settings will be used.
7337             </param>
7338             <returns>
7339             A task that represents the asynchronous populate operation.
7340             </returns>
7341         </member>
7342         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
7343             <summary>
7344             Serializes the XML node to a JSON string.
7345             </summary>
7346             <param name="node">The node to serialize.</param>
7347             <returns>A JSON string of the XmlNode.</returns>
7348         </member>
7349         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
7350             <summary>
7351             Serializes the XML node to a JSON string using formatting.
7352             </summary>
7353             <param name="node">The node to serialize.</param>
7354             <param name="formatting">Indicates how the output is formatted.</param>
7355             <returns>A JSON string of the XmlNode.</returns>
7356         </member>
7357         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
7358             <summary>
7359             Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
7360             </summary>
7361             <param name="node">The node to serialize.</param>
7362             <param name="formatting">Indicates how the output is formatted.</param>
7363             <param name="omitRootObject">Omits writing the root object.</param>
7364             <returns>A JSON string of the XmlNode.</returns>
7365         </member>
7366         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
7367             <summary>
7368             Deserializes the XmlNode from a JSON string.
7369             </summary>
7370             <param name="value">The JSON string.</param>
7371             <returns>The deserialized XmlNode</returns>
7372         </member>
7373         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
7374             <summary>
7375             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
7376             </summary>
7377             <param name="value">The JSON string.</param>
7378             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7379             <returns>The deserialized XmlNode</returns>
7380         </member>
7381         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
7382             <summary>
7383             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
7384             and writes a .NET array attribute for collections.
7385             </summary>
7386             <param name="value">The JSON string.</param>
7387             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7388             <param name="writeArrayAttribute">
7389             A flag to indicate whether to write the Json.NET array attribute.
7390             This attribute helps preserve arrays when converting the written XML back to JSON.
7391             </param>
7392             <returns>The deserialized XmlNode</returns>
7393         </member>
7394         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
7395             <summary>
7396             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
7397             </summary>
7398             <param name="node">The node to convert to JSON.</param>
7399             <returns>A JSON string of the XNode.</returns>
7400         </member>
7401         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
7402             <summary>
7403             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
7404             </summary>
7405             <param name="node">The node to convert to JSON.</param>
7406             <param name="formatting">Indicates how the output is formatted.</param>
7407             <returns>A JSON string of the XNode.</returns>
7408         </member>
7409         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
7410             <summary>
7411             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>.
7412             </summary>
7413             <param name="node">The node to serialize.</param>
7414             <param name="formatting">Indicates how the output is formatted.</param>
7415             <param name="omitRootObject">Omits writing the root object.</param>
7416             <returns>A JSON string of the XNode.</returns>
7417         </member>
7418         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
7419             <summary>
7420             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
7421             </summary>
7422             <param name="value">The JSON string.</param>
7423             <returns>The deserialized XNode</returns>
7424         </member>
7425         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
7426             <summary>
7427             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
7428             </summary>
7429             <param name="value">The JSON string.</param>
7430             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7431             <returns>The deserialized XNode</returns>
7432         </member>
7433         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
7434             <summary>
7435             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
7436             and writes a .NET array attribute for collections.
7437             </summary>
7438             <param name="value">The JSON string.</param>
7439             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7440             <param name="writeArrayAttribute">
7441             A flag to indicate whether to write the Json.NET array attribute.
7442             This attribute helps preserve arrays when converting the written XML back to JSON.
7443             </param>
7444             <returns>The deserialized XNode</returns>
7445         </member>
7446         <member name="T:Newtonsoft.Json.JsonSerializationException">
7447             <summary>
7448             The exception thrown when an error occurs during JSON serialization or deserialization.
7449             </summary>
7450         </member>
7451         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
7452             <summary>
7453             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
7454             </summary>
7455         </member>
7456         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
7457             <summary>
7458             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7459             with a specified error message.
7460             </summary>
7461             <param name="message">The error message that explains the reason for the exception.</param>
7462         </member>
7463         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
7464             <summary>
7465             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7466             with a specified error message and a reference to the inner exception that is the cause of this exception.
7467             </summary>
7468             <param name="message">The error message that explains the reason for the exception.</param>
7469             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
7470         </member>
7471         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7472             <summary>
7473             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
7474             </summary>
7475             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7476             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7477             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7478             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7479         </member>
7480         <member name="T:Newtonsoft.Json.JsonSerializer">
7481             <summary>
7482             Serializes and deserializes objects into and from the JSON format.
7483             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
7484             </summary>
7485         </member>
7486         <member name="E:Newtonsoft.Json.JsonSerializer.Error">
7487             <summary>
7488             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
7489             </summary>
7490         </member>
7491         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
7492             <summary>
7493             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
7494             </summary>
7495         </member>
7496         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
7497             <summary>
7498             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
7499             </summary>
7500         </member>
7501         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
7502             <summary>
7503             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
7504             </summary>
7505             <value>The trace writer.</value>
7506         </member>
7507         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
7508             <summary>
7509             Gets or sets the equality comparer used by the serializer when comparing references.
7510             </summary>
7511             <value>The equality comparer.</value>
7512         </member>
7513         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
7514             <summary>
7515             Gets or sets how type name writing and reading is handled by the serializer.
7516             </summary>
7517         </member>
7518         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
7519             <summary>
7520             Gets or sets how a type name assembly is written and resolved by the serializer.
7521             </summary>
7522             <value>The type name assembly format.</value>
7523         </member>
7524         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
7525             <summary>
7526             Gets or sets how object references are preserved by the serializer.
7527             </summary>
7528         </member>
7529         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
7530             <summary>
7531             Get or set how reference loops (e.g. a class referencing itself) is handled.
7532             </summary>
7533         </member>
7534         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
7535             <summary>
7536             Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
7537             </summary>
7538         </member>
7539         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
7540             <summary>
7541             Get or set how null values are handled during serialization and deserialization.
7542             </summary>
7543         </member>
7544         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
7545             <summary>
7546             Get or set how null default are handled during serialization and deserialization.
7547             </summary>
7548         </member>
7549         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
7550             <summary>
7551             Gets or sets how objects are created during deserialization.
7552             </summary>
7553             <value>The object creation handling.</value>
7554         </member>
7555         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
7556             <summary>
7557             Gets or sets how constructors are used during deserialization.
7558             </summary>
7559             <value>The constructor handling.</value>
7560         </member>
7561         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
7562             <summary>
7563             Gets or sets how metadata properties are used during deserialization.
7564             </summary>
7565             <value>The metadata properties handling.</value>
7566         </member>
7567         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
7568             <summary>
7569             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
7570             </summary>
7571             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
7572         </member>
7573         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
7574             <summary>
7575             Gets or sets the contract resolver used by the serializer when
7576             serializing .NET objects to JSON and vice versa.
7577             </summary>
7578         </member>
7579         <member name="P:Newtonsoft.Json.JsonSerializer.Context">
7580             <summary>
7581             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
7582             </summary>
7583             <value>The context.</value>
7584         </member>
7585         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
7586             <summary>
7587             Indicates how JSON text output is formatted.
7588             </summary>
7589         </member>
7590         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
7591             <summary>
7592             Get or set how dates are written to JSON text.
7593             </summary>
7594         </member>
7595         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
7596             <summary>
7597             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
7598             </summary>
7599         </member>
7600         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
7601             <summary>
7602             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
7603             </summary>
7604         </member>
7605         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
7606             <summary>
7607             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
7608             </summary>
7609         </member>
7610         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
7611             <summary>
7612             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
7613             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
7614             are written as JSON text.
7615             </summary>
7616         </member>
7617         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
7618             <summary>
7619             Get or set how strings are escaped when writing JSON text.
7620             </summary>
7621         </member>
7622         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
7623             <summary>
7624             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.
7625             </summary>
7626         </member>
7627         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
7628             <summary>
7629             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
7630             </summary>
7631         </member>
7632         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
7633             <summary>
7634             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
7635             </summary>
7636         </member>
7637         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
7638             <summary>
7639             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
7640             </summary>
7641             <value>
7642                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
7643             </value>
7644         </member>
7645         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
7646             <summary>
7647             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
7648             </summary>
7649         </member>
7650         <member name="M:Newtonsoft.Json.JsonSerializer.Create">
7651             <summary>
7652             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7653             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7654             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7655             </summary>
7656             <returns>
7657             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7658             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7659             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7660             </returns>
7661         </member>
7662         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
7663             <summary>
7664             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7665             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7666             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7667             </summary>
7668             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7669             <returns>
7670             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7671             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7672             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7673             </returns>
7674         </member>
7675         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
7676             <summary>
7677             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7678             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7679             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7680             </summary>
7681             <returns>
7682             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7683             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7684             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7685             </returns>
7686         </member>
7687         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
7688             <summary>
7689             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7690             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7691             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7692             </summary>
7693             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7694             <returns>
7695             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7696             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7697             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7698             </returns>
7699         </member>
7700         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
7701             <summary>
7702             Populates the JSON values onto the target object.
7703             </summary>
7704             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
7705             <param name="target">The target object to populate values onto.</param>
7706         </member>
7707         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
7708             <summary>
7709             Populates the JSON values onto the target object.
7710             </summary>
7711             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
7712             <param name="target">The target object to populate values onto.</param>
7713         </member>
7714         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
7715             <summary>
7716             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7717             </summary>
7718             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
7719             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
7720         </member>
7721         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
7722             <summary>
7723             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
7724             into an instance of the specified type.
7725             </summary>
7726             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
7727             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7728             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7729         </member>
7730         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
7731             <summary>
7732             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7733             into an instance of the specified type.
7734             </summary>
7735             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7736             <typeparam name="T">The type of the object to deserialize.</typeparam>
7737             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
7738         </member>
7739         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
7740             <summary>
7741             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7742             into an instance of the specified type.
7743             </summary>
7744             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7745             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7746             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7747         </member>
7748         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
7749             <summary>
7750             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7751             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7752             </summary>
7753             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7754             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7755         </member>
7756         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
7757             <summary>
7758             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7759             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7760             </summary>
7761             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7762             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7763             <param name="objectType">
7764             The type of the value being serialized.
7765             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.
7766             Specifing the type is optional.
7767             </param>
7768         </member>
7769         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
7770             <summary>
7771             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7772             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7773             </summary>
7774             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7775             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7776             <param name="objectType">
7777             The type of the value being serialized.
7778             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.
7779             Specifing the type is optional.
7780             </param>
7781         </member>
7782         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
7783             <summary>
7784             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7785             to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
7786             </summary>
7787             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7788             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7789         </member>
7790         <member name="T:Newtonsoft.Json.Schema.Extensions">
7791             <summary>
7792             <para>
7793             Contains the JSON schema extension methods.
7794             </para>
7795             <note type="caution">
7796             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.
7797             </note>
7798             </summary>
7799         </member>
7800         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7801             <summary>
7802             <para>
7803             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7804             </para>
7805             <note type="caution">
7806             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.
7807             </note>
7808             </summary>
7809             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7810             <param name="schema">The schema to test with.</param>
7811             <returns>
7812                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7813             </returns>
7814         </member>
7815         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7816             <summary>
7817             <para>
7818             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7819             </para>
7820             <note type="caution">
7821             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.
7822             </note>
7823             </summary>
7824             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7825             <param name="schema">The schema to test with.</param>
7826             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7827             <returns>
7828                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7829             </returns>
7830         </member>
7831         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7832             <summary>
7833             <para>
7834             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7835             </para>
7836             <note type="caution">
7837             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.
7838             </note>
7839             </summary>
7840             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7841             <param name="schema">The schema to test with.</param>
7842         </member>
7843         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7844             <summary>
7845             <para>
7846             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7847             </para>
7848             <note type="caution">
7849             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.
7850             </note>
7851             </summary>
7852             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7853             <param name="schema">The schema to test with.</param>
7854             <param name="validationEventHandler">The validation event handler.</param>
7855         </member>
7856         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7857             <summary>
7858             <para>
7859             Returns detailed information about the schema exception.
7860             </para>
7861             <note type="caution">
7862             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.
7863             </note>
7864             </summary>
7865         </member>
7866         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7867             <summary>
7868             Gets the line number indicating where the error occurred.
7869             </summary>
7870             <value>The line number indicating where the error occurred.</value>
7871         </member>
7872         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7873             <summary>
7874             Gets the line position indicating where the error occurred.
7875             </summary>
7876             <value>The line position indicating where the error occurred.</value>
7877         </member>
7878         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7879             <summary>
7880             Gets the path to the JSON where the error occurred.
7881             </summary>
7882             <value>The path to the JSON where the error occurred.</value>
7883         </member>
7884         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7885             <summary>
7886             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7887             </summary>
7888         </member>
7889         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7890             <summary>
7891             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7892             with a specified error message.
7893             </summary>
7894             <param name="message">The error message that explains the reason for the exception.</param>
7895         </member>
7896         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7897             <summary>
7898             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7899             with a specified error message and a reference to the inner exception that is the cause of this exception.
7900             </summary>
7901             <param name="message">The error message that explains the reason for the exception.</param>
7902             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
7903         </member>
7904         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7905             <summary>
7906             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7907             </summary>
7908             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7909             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7910             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7911             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7912         </member>
7913         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7914             <summary>
7915             <para>
7916             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7917             </para>
7918             <note type="caution">
7919             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.
7920             </note>
7921             </summary>
7922         </member>
7923         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7924             <summary>
7925             Gets or sets the loaded schemas.
7926             </summary>
7927             <value>The loaded schemas.</value>
7928         </member>
7929         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7930             <summary>
7931             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7932             </summary>
7933         </member>
7934         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7935             <summary>
7936             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7937             </summary>
7938             <param name="reference">The id.</param>
7939             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7940         </member>
7941         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7942             <summary>
7943             <para>
7944             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7945             </para>
7946             <note type="caution">
7947             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.
7948             </note>
7949             </summary>
7950         </member>
7951         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7952             <summary>
7953             Do not infer a schema Id.
7954             </summary>
7955         </member>
7956         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7957             <summary>
7958             Use the .NET type name as the schema Id.
7959             </summary>
7960         </member>
7961         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7962             <summary>
7963             Use the assembly qualified .NET type name as the schema Id.
7964             </summary>
7965         </member>
7966         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7967             <summary>
7968             <para>
7969             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7970             </para>
7971             <note type="caution">
7972             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.
7973             </note>
7974             </summary>
7975         </member>
7976         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7977             <summary>
7978             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7979             </summary>
7980             <value>The JsonSchemaException associated with the validation error.</value>
7981         </member>
7982         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7983             <summary>
7984             Gets the path of the JSON location where the validation error occurred.
7985             </summary>
7986             <value>The path of the JSON location where the validation error occurred.</value>
7987         </member>
7988         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7989             <summary>
7990             Gets the text description corresponding to the validation error.
7991             </summary>
7992             <value>The text description.</value>
7993         </member>
7994         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7995             <summary>
7996             <para>
7997             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7998             </para>
7999             <note type="caution">
8000             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.
8001             </note>
8002             </summary>
8003         </member>
8004         <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8005             <summary>
8006             <para>
8007             An in-memory representation of a JSON Schema.
8008             </para>
8009             <note type="caution">
8010             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.
8011             </note>
8012             </summary>
8013         </member>
8014         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8015             <summary>
8016             Gets or sets the id.
8017             </summary>
8018         </member>
8019         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8020             <summary>
8021             Gets or sets the title.
8022             </summary>
8023         </member>
8024         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8025             <summary>
8026             Gets or sets whether the object is required.
8027             </summary>
8028         </member>
8029         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8030             <summary>
8031             Gets or sets whether the object is read only.
8032             </summary>
8033         </member>
8034         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8035             <summary>
8036             Gets or sets whether the object is visible to users.
8037             </summary>
8038         </member>
8039         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8040             <summary>
8041             Gets or sets whether the object is transient.
8042             </summary>
8043         </member>
8044         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8045             <summary>
8046             Gets or sets the description of the object.
8047             </summary>
8048         </member>
8049         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8050             <summary>
8051             Gets or sets the types of values allowed by the object.
8052             </summary>
8053             <value>The type.</value>
8054         </member>
8055         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8056             <summary>
8057             Gets or sets the pattern.
8058             </summary>
8059             <value>The pattern.</value>
8060         </member>
8061         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8062             <summary>
8063             Gets or sets the minimum length.
8064             </summary>
8065             <value>The minimum length.</value>
8066         </member>
8067         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8068             <summary>
8069             Gets or sets the maximum length.
8070             </summary>
8071             <value>The maximum length.</value>
8072         </member>
8073         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8074             <summary>
8075             Gets or sets a number that the value should be divisble by.
8076             </summary>
8077             <value>A number that the value should be divisble by.</value>
8078         </member>
8079         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8080             <summary>
8081             Gets or sets the minimum.
8082             </summary>
8083             <value>The minimum.</value>
8084         </member>
8085         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8086             <summary>
8087             Gets or sets the maximum.
8088             </summary>
8089             <value>The maximum.</value>
8090         </member>
8091         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8092             <summary>
8093             Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
8094             </summary>
8095             <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
8096         </member>
8097         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8098             <summary>
8099             Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
8100             </summary>
8101             <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
8102         </member>
8103         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8104             <summary>
8105             Gets or sets the minimum number of items.
8106             </summary>
8107             <value>The minimum number of items.</value>
8108         </member>
8109         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8110             <summary>
8111             Gets or sets the maximum number of items.
8112             </summary>
8113             <value>The maximum number of items.</value>
8114         </member>
8115         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8116             <summary>
8117             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8118             </summary>
8119             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8120         </member>
8121         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8122             <summary>
8123             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"/>.
8124             </summary>
8125             <value>
8126                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8127             </value>
8128         </member>
8129         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8130             <summary>
8131             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8132             </summary>
8133             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8134         </member>
8135         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8136             <summary>
8137             Gets or sets a value indicating whether additional items are allowed.
8138             </summary>
8139             <value>
8140                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8141             </value>
8142         </member>
8143         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8144             <summary>
8145             Gets or sets whether the array items must be unique.
8146             </summary>
8147         </member>
8148         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8149             <summary>
8150             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8151             </summary>
8152             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8153         </member>
8154         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8155             <summary>
8156             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8157             </summary>
8158             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8159         </member>
8160         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8161             <summary>
8162             Gets or sets the pattern properties.
8163             </summary>
8164             <value>The pattern properties.</value>
8165         </member>
8166         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8167             <summary>
8168             Gets or sets a value indicating whether additional properties are allowed.
8169             </summary>
8170             <value>
8171                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8172             </value>
8173         </member>
8174         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8175             <summary>
8176             Gets or sets the required property if this property is present.
8177             </summary>
8178             <value>The required property if this property is present.</value>
8179         </member>
8180         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8181             <summary>
8182             Gets or sets the a collection of valid enum values allowed.
8183             </summary>
8184             <value>A collection of valid enum values allowed.</value>
8185         </member>
8186         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8187             <summary>
8188             Gets or sets disallowed types.
8189             </summary>
8190             <value>The disallow types.</value>
8191         </member>
8192         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8193             <summary>
8194             Gets or sets the default value.
8195             </summary>
8196             <value>The default value.</value>
8197         </member>
8198         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8199             <summary>
8200             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8201             </summary>
8202             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8203         </member>
8204         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8205             <summary>
8206             Gets or sets the format.
8207             </summary>
8208             <value>The format.</value>
8209         </member>
8210         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8211             <summary>
8212             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8213             </summary>
8214         </member>
8215         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8216             <summary>
8217             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8218             </summary>
8219             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8220             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8221         </member>
8222         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8223             <summary>
8224             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8225             </summary>
8226             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8227             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8228             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8229         </member>
8230         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8231             <summary>
8232             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
8233             </summary>
8234             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
8235             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8236         </member>
8237         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8238             <summary>
8239             Parses the specified json.
8240             </summary>
8241             <param name="json">The json.</param>
8242             <param name="resolver">The resolver.</param>
8243             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8244         </member>
8245         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8246             <summary>
8247             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8248             </summary>
8249             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8250         </member>
8251         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8252             <summary>
8253             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8254             </summary>
8255             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8256             <param name="resolver">The resolver used.</param>
8257         </member>
8258         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8259             <summary>
8260             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8261             </summary>
8262             <returns>
8263             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8264             </returns>
8265         </member>
8266         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8267             <summary>
8268             <para>
8269             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8270             </para>
8271             <note type="caution">
8272             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.
8273             </note>
8274             </summary>
8275         </member>
8276         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8277             <summary>
8278             Gets or sets how undefined schemas are handled by the serializer.
8279             </summary>
8280         </member>
8281         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8282             <summary>
8283             Gets or sets the contract resolver.
8284             </summary>
8285             <value>The contract resolver.</value>
8286         </member>
8287         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8288             <summary>
8289             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8290             </summary>
8291             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8292             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8293         </member>
8294         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8295             <summary>
8296             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8297             </summary>
8298             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8299             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8300             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8301         </member>
8302         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8303             <summary>
8304             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8305             </summary>
8306             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8307             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8308             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8309         </member>
8310         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8311             <summary>
8312             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8313             </summary>
8314             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8315             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8316             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8317             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8318         </member>
8319         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8320             <summary>
8321             <para>
8322             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8323             </para>
8324             <note type="caution">
8325             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.
8326             </note>
8327             </summary>
8328         </member>
8329         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8330             <summary>
8331             No type specified.
8332             </summary>
8333         </member>
8334         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8335             <summary>
8336             String type.
8337             </summary>
8338         </member>
8339         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8340             <summary>
8341             Float type.
8342             </summary>
8343         </member>
8344         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8345             <summary>
8346             Integer type.
8347             </summary>
8348         </member>
8349         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8350             <summary>
8351             Boolean type.
8352             </summary>
8353         </member>
8354         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8355             <summary>
8356             Object type.
8357             </summary>
8358         </member>
8359         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8360             <summary>
8361             Array type.
8362             </summary>
8363         </member>
8364         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8365             <summary>
8366             Null type.
8367             </summary>
8368         </member>
8369         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8370             <summary>
8371             Any type.
8372             </summary>
8373         </member>
8374         <member name="T:Newtonsoft.Json.MissingMemberHandling">
8375             <summary>
8376             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8377             </summary>
8378         </member>
8379         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8380             <summary>
8381             Ignore a missing member and do not attempt to deserialize it.
8382             </summary>
8383         </member>
8384         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8385             <summary>
8386             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8387             </summary>
8388         </member>
8389         <member name="T:Newtonsoft.Json.NullValueHandling">
8390             <summary>
8391             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8392             </summary>
8393             <example>
8394               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8395               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8396             </example>
8397         </member>
8398         <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8399             <summary>
8400             Include null values when serializing and deserializing objects.
8401             </summary>
8402         </member>
8403         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8404             <summary>
8405             Ignore null values when serializing and deserializing objects.
8406             </summary>
8407         </member>
8408         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8409             <summary>
8410             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8411             </summary>
8412         </member>
8413         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8414             <summary>
8415             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8416             </summary>
8417         </member>
8418         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8419             <summary>
8420             Ignore loop references and do not serialize.
8421             </summary>
8422         </member>
8423         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8424             <summary>
8425             Serialize loop references.
8426             </summary>
8427         </member>
8428         <member name="T:Newtonsoft.Json.TypeNameHandling">
8429             <summary>
8430             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8431             </summary>
8432         </member>
8433         <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8434             <summary>
8435             Do not include the .NET type name when serializing types.
8436             </summary>
8437         </member>
8438         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8439             <summary>
8440             Include the .NET type name when serializing into a JSON object structure.
8441             </summary>
8442         </member>
8443         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8444             <summary>
8445             Include the .NET type name when serializing into a JSON array structure.
8446             </summary>
8447         </member>
8448         <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8449             <summary>
8450             Always include the .NET type name when serializing.
8451             </summary>
8452         </member>
8453         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8454             <summary>
8455             Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8456             </summary>
8457         </member>
8458         <member name="T:Newtonsoft.Json.JsonToken">
8459             <summary>
8460             Specifies the type of JSON token.
8461             </summary>
8462         </member>
8463         <member name="F:Newtonsoft.Json.JsonToken.None">
8464             <summary>
8465             This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a <see cref="M:Newtonsoft.Json.JsonReader.Read"/> method has not been called. 
8466             </summary>
8467         </member>
8468         <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8469             <summary>
8470             An object start token.
8471             </summary>
8472         </member>
8473         <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8474             <summary>
8475             An array start token.
8476             </summary>
8477         </member>
8478         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8479             <summary>
8480             A constructor start token.
8481             </summary>
8482         </member>
8483         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8484             <summary>
8485             An object property name.
8486             </summary>
8487         </member>
8488         <member name="F:Newtonsoft.Json.JsonToken.Comment">
8489             <summary>
8490             A comment.
8491             </summary>
8492         </member>
8493         <member name="F:Newtonsoft.Json.JsonToken.Raw">
8494             <summary>
8495             Raw JSON.
8496             </summary>
8497         </member>
8498         <member name="F:Newtonsoft.Json.JsonToken.Integer">
8499             <summary>
8500             An integer.
8501             </summary>
8502         </member>
8503         <member name="F:Newtonsoft.Json.JsonToken.Float">
8504             <summary>
8505             A float.
8506             </summary>
8507         </member>
8508         <member name="F:Newtonsoft.Json.JsonToken.String">
8509             <summary>
8510             A string.
8511             </summary>
8512         </member>
8513         <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8514             <summary>
8515             A boolean.
8516             </summary>
8517         </member>
8518         <member name="F:Newtonsoft.Json.JsonToken.Null">
8519             <summary>
8520             A null token.
8521             </summary>
8522         </member>
8523         <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8524             <summary>
8525             An undefined token.
8526             </summary>
8527         </member>
8528         <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8529             <summary>
8530             An object end token.
8531             </summary>
8532         </member>
8533         <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8534             <summary>
8535             An array end token.
8536             </summary>
8537         </member>
8538         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8539             <summary>
8540             A constructor end token.
8541             </summary>
8542         </member>
8543         <member name="F:Newtonsoft.Json.JsonToken.Date">
8544             <summary>
8545             A Date.
8546             </summary>
8547         </member>
8548         <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8549             <summary>
8550             Byte data.
8551             </summary>
8552         </member>
8553         <member name="T:Newtonsoft.Json.JsonWriter">
8554             <summary>
8555             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
8556             </summary>
8557         </member>
8558         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
8559             <summary>
8560             Gets or sets a value indicating whether the underlying stream or
8561             <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
8562             </summary>
8563             <value>
8564             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
8565             the writer is closed; otherwise false. The default is true.
8566             </value>
8567         </member>
8568         <member name="P:Newtonsoft.Json.JsonWriter.Top">
8569             <summary>
8570             Gets the top.
8571             </summary>
8572             <value>The top.</value>
8573         </member>
8574         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
8575             <summary>
8576             Gets the state of the writer.
8577             </summary>
8578         </member>
8579         <member name="P:Newtonsoft.Json.JsonWriter.Path">
8580             <summary>
8581             Gets the path of the writer. 
8582             </summary>
8583         </member>
8584         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
8585             <summary>
8586             Indicates how JSON text output is formatted.
8587             </summary>
8588         </member>
8589         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
8590             <summary>
8591             Get or set how dates are written to JSON text.
8592             </summary>
8593         </member>
8594         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
8595             <summary>
8596             Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
8597             </summary>
8598         </member>
8599         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
8600             <summary>
8601             Get or set how strings are escaped when writing JSON text.
8602             </summary>
8603         </member>
8604         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
8605             <summary>
8606             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
8607             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
8608             are written to JSON text.
8609             </summary>
8610         </member>
8611         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
8612             <summary>
8613             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
8614             </summary>
8615         </member>
8616         <member name="P:Newtonsoft.Json.JsonWriter.Culture">
8617             <summary>
8618             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
8619             </summary>
8620         </member>
8621         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
8622             <summary>
8623             Creates an instance of the <c>JsonWriter</c> class. 
8624             </summary>
8625         </member>
8626         <member name="M:Newtonsoft.Json.JsonWriter.Flush">
8627             <summary>
8628             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
8629             </summary>
8630         </member>
8631         <member name="M:Newtonsoft.Json.JsonWriter.Close">
8632             <summary>
8633             Closes this stream and the underlying stream.
8634             </summary>
8635         </member>
8636         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
8637             <summary>
8638             Writes the beginning of a JSON object.
8639             </summary>
8640         </member>
8641         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
8642             <summary>
8643             Writes the end of a JSON object.
8644             </summary>
8645         </member>
8646         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
8647             <summary>
8648             Writes the beginning of a JSON array.
8649             </summary>
8650         </member>
8651         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
8652             <summary>
8653             Writes the end of an array.
8654             </summary>
8655         </member>
8656         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
8657             <summary>
8658             Writes the start of a constructor with the given name.
8659             </summary>
8660             <param name="name">The name of the constructor.</param>
8661         </member>
8662         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
8663             <summary>
8664             Writes the end constructor.
8665             </summary>
8666         </member>
8667         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
8668             <summary>
8669             Writes the property name of a name/value pair on a JSON object.
8670             </summary>
8671             <param name="name">The name of the property.</param>
8672         </member>
8673         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
8674             <summary>
8675             Writes the property name of a name/value pair on a JSON object.
8676             </summary>
8677             <param name="name">The name of the property.</param>
8678             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
8679         </member>
8680         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
8681             <summary>
8682             Writes the end of the current JSON object or array.
8683             </summary>
8684         </member>
8685         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
8686             <summary>
8687             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
8688             </summary>
8689             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8690         </member>
8691         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
8692             <summary>
8693             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
8694             </summary>
8695             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8696             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
8697         </member>
8698         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
8699             <summary>
8700             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
8701             </summary>
8702             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8703             <param name="value">
8704             The value to write.
8705             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"/>.
8706             A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>
8707         </member>
8708         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
8709             <summary>
8710             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
8711             </summary>
8712             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8713         </member>
8714         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
8715             <summary>
8716             Writes the specified end token.
8717             </summary>
8718             <param name="token">The end token to write.</param>
8719         </member>
8720         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
8721             <summary>
8722             Writes indent characters.
8723             </summary>
8724         </member>
8725         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
8726             <summary>
8727             Writes the JSON value delimiter.
8728             </summary>
8729         </member>
8730         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
8731             <summary>
8732             Writes an indent space.
8733             </summary>
8734         </member>
8735         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
8736             <summary>
8737             Writes a null value.
8738             </summary>
8739         </member>
8740         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
8741             <summary>
8742             Writes an undefined value.
8743             </summary>
8744         </member>
8745         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
8746             <summary>
8747             Writes raw JSON without changing the writer's state.
8748             </summary>
8749             <param name="json">The raw JSON to write.</param>
8750         </member>
8751         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
8752             <summary>
8753             Writes raw JSON where a value is expected and updates the writer's state.
8754             </summary>
8755             <param name="json">The raw JSON to write.</param>
8756         </member>
8757         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
8758             <summary>
8759             Writes a <see cref="T:System.String"/> value.
8760             </summary>
8761             <param name="value">The <see cref="T:System.String"/> value to write.</param>
8762         </member>
8763         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
8764             <summary>
8765             Writes a <see cref="T:System.Int32"/> value.
8766             </summary>
8767             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
8768         </member>
8769         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
8770             <summary>
8771             Writes a <see cref="T:System.UInt32"/> value.
8772             </summary>
8773             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
8774         </member>
8775         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
8776             <summary>
8777             Writes a <see cref="T:System.Int64"/> value.
8778             </summary>
8779             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
8780         </member>
8781         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
8782             <summary>
8783             Writes a <see cref="T:System.UInt64"/> value.
8784             </summary>
8785             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
8786         </member>
8787         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
8788             <summary>
8789             Writes a <see cref="T:System.Single"/> value.
8790             </summary>
8791             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
8792         </member>
8793         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
8794             <summary>
8795             Writes a <see cref="T:System.Double"/> value.
8796             </summary>
8797             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
8798         </member>
8799         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
8800             <summary>
8801             Writes a <see cref="T:System.Boolean"/> value.
8802             </summary>
8803             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
8804         </member>
8805         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
8806             <summary>
8807             Writes a <see cref="T:System.Int16"/> value.
8808             </summary>
8809             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
8810         </member>
8811         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
8812             <summary>
8813             Writes a <see cref="T:System.UInt16"/> value.
8814             </summary>
8815             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
8816         </member>
8817         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
8818             <summary>
8819             Writes a <see cref="T:System.Char"/> value.
8820             </summary>
8821             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
8822         </member>
8823         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
8824             <summary>
8825             Writes a <see cref="T:System.Byte"/> value.
8826             </summary>
8827             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
8828         </member>
8829         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
8830             <summary>
8831             Writes a <see cref="T:System.SByte"/> value.
8832             </summary>
8833             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
8834         </member>
8835         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
8836             <summary>
8837             Writes a <see cref="T:System.Decimal"/> value.
8838             </summary>
8839             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
8840         </member>
8841         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
8842             <summary>
8843             Writes a <see cref="T:System.DateTime"/> value.
8844             </summary>
8845             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
8846         </member>
8847         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
8848             <summary>
8849             Writes a <see cref="T:System.DateTimeOffset"/> value.
8850             </summary>
8851             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
8852         </member>
8853         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
8854             <summary>
8855             Writes a <see cref="T:System.Guid"/> value.
8856             </summary>
8857             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
8858         </member>
8859         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
8860             <summary>
8861             Writes a <see cref="T:System.TimeSpan"/> value.
8862             </summary>
8863             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
8864         </member>
8865         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
8866             <summary>
8867             Writes a <see cref="T:System.Nullable`1"/> value.
8868             </summary>
8869             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8870         </member>
8871         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
8872             <summary>
8873             Writes a <see cref="T:System.Nullable`1"/> value.
8874             </summary>
8875             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8876         </member>
8877         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
8878             <summary>
8879             Writes a <see cref="T:System.Nullable`1"/> value.
8880             </summary>
8881             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8882         </member>
8883         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
8884             <summary>
8885             Writes a <see cref="T:System.Nullable`1"/> value.
8886             </summary>
8887             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8888         </member>
8889         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
8890             <summary>
8891             Writes a <see cref="T:System.Nullable`1"/> value.
8892             </summary>
8893             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8894         </member>
8895         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
8896             <summary>
8897             Writes a <see cref="T:System.Nullable`1"/> value.
8898             </summary>
8899             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8900         </member>
8901         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
8902             <summary>
8903             Writes a <see cref="T:System.Nullable`1"/> value.
8904             </summary>
8905             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8906         </member>
8907         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
8908             <summary>
8909             Writes a <see cref="T:System.Nullable`1"/> value.
8910             </summary>
8911             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8912         </member>
8913         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
8914             <summary>
8915             Writes a <see cref="T:System.Nullable`1"/> value.
8916             </summary>
8917             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8918         </member>
8919         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
8920             <summary>
8921             Writes a <see cref="T:System.Nullable`1"/> value.
8922             </summary>
8923             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8924         </member>
8925         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
8926             <summary>
8927             Writes a <see cref="T:System.Nullable`1"/> value.
8928             </summary>
8929             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8930         </member>
8931         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
8932             <summary>
8933             Writes a <see cref="T:System.Nullable`1"/> value.
8934             </summary>
8935             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8936         </member>
8937         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
8938             <summary>
8939             Writes a <see cref="T:System.Nullable`1"/> value.
8940             </summary>
8941             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8942         </member>
8943         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
8944             <summary>
8945             Writes a <see cref="T:System.Nullable`1"/> value.
8946             </summary>
8947             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8948         </member>
8949         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
8950             <summary>
8951             Writes a <see cref="T:System.Nullable`1"/> value.
8952             </summary>
8953             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8954         </member>
8955         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
8956             <summary>
8957             Writes a <see cref="T:System.Nullable`1"/> value.
8958             </summary>
8959             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8960         </member>
8961         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
8962             <summary>
8963             Writes a <see cref="T:System.Nullable`1"/> value.
8964             </summary>
8965             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8966         </member>
8967         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
8968             <summary>
8969             Writes a <see cref="T:System.Byte"/>[] value.
8970             </summary>
8971             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
8972         </member>
8973         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
8974             <summary>
8975             Writes a <see cref="T:System.Uri"/> value.
8976             </summary>
8977             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
8978         </member>
8979         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
8980             <summary>
8981             Writes a <see cref="T:System.Object"/> value.
8982             An error will raised if the value cannot be written as a single JSON token.
8983             </summary>
8984             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
8985         </member>
8986         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
8987             <summary>
8988             Writes out a comment <code>/*...*/</code> containing the specified text. 
8989             </summary>
8990             <param name="text">Text to place inside the comment.</param>
8991         </member>
8992         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
8993             <summary>
8994             Writes out the given white space.
8995             </summary>
8996             <param name="ws">The string of white space characters.</param>
8997         </member>
8998         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
8999             <summary>
9000             Sets the state of the JsonWriter,
9001             </summary>
9002             <param name="token">The JsonToken being written.</param>
9003             <param name="value">The value being written.</param>
9004         </member>
9005         <member name="T:Newtonsoft.Json.WriteState">
9006             <summary>
9007             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9008             </summary>
9009         </member>
9010         <member name="F:Newtonsoft.Json.WriteState.Error">
9011             <summary>
9012             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
9013             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.
9014             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
9015             </summary>
9016         </member>
9017         <member name="F:Newtonsoft.Json.WriteState.Closed">
9018             <summary>
9019             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
9020             </summary>
9021         </member>
9022         <member name="F:Newtonsoft.Json.WriteState.Object">
9023             <summary>
9024             An object is being written. 
9025             </summary>
9026         </member>
9027         <member name="F:Newtonsoft.Json.WriteState.Array">
9028             <summary>
9029             A array is being written.
9030             </summary>
9031         </member>
9032         <member name="F:Newtonsoft.Json.WriteState.Constructor">
9033             <summary>
9034             A constructor is being written.
9035             </summary>
9036         </member>
9037         <member name="F:Newtonsoft.Json.WriteState.Property">
9038             <summary>
9039             A property is being written.
9040             </summary>
9041         </member>
9042         <member name="F:Newtonsoft.Json.WriteState.Start">
9043             <summary>
9044             A write method has not been called.
9045             </summary>
9046         </member>
9047     </members>
9048 </doc>