Implement update check on startup
[ArchiSteamFarm.git] / packages / Newtonsoft.Json.8.0.1-beta1 / lib / net35 / Newtonsoft.Json.xml
blob9e21890769bf4f8d368562d014b3b8b7f968e352
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.EntityKeyMemberConverter">
521             <summary>
522             Converts an Entity Framework EntityKey to and from JSON.
523             </summary>
524         </member>
525         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.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.EntityKeyMemberConverter.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.EntityKeyMemberConverter.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.KeyValuePairConverter">
553             <summary>
554             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
555             </summary>
556         </member>
557         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.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.KeyValuePairConverter.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.KeyValuePairConverter.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.BsonObjectIdConverter">
585             <summary>
586             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
587             </summary>
588         </member>
589         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.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.BsonObjectIdConverter.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.BsonObjectIdConverter.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="T:Newtonsoft.Json.Converters.RegexConverter">
617             <summary>
618             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
619             </summary>
620         </member>
621         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
622             <summary>
623             Writes the JSON representation of the object.
624             </summary>
625             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
626             <param name="value">The value.</param>
627             <param name="serializer">The calling serializer.</param>
628         </member>
629         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
630             <summary>
631             Reads the JSON representation of the object.
632             </summary>
633             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
634             <param name="objectType">Type of the object.</param>
635             <param name="existingValue">The existing value of object being read.</param>
636             <param name="serializer">The calling serializer.</param>
637             <returns>The object value.</returns>
638         </member>
639         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
640             <summary>
641             Determines whether this instance can convert the specified object type.
642             </summary>
643             <param name="objectType">Type of the object.</param>
644             <returns>
645                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
646             </returns>
647         </member>
648         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
649             <summary>
650             Converts an <see cref="T:System.Enum"/> to and from its name string value.
651             </summary>
652         </member>
653         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
654             <summary>
655             Gets or sets a value indicating whether the written enum text should be camel case.
656             </summary>
657             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
658         </member>
659         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
660             <summary>
661             Gets or sets a value indicating whether integer values are allowed.
662             </summary>
663             <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
664         </member>
665         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
666             <summary>
667             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
668             </summary>
669         </member>
670         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
671             <summary>
672             Writes the JSON representation of the object.
673             </summary>
674             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
675             <param name="value">The value.</param>
676             <param name="serializer">The calling serializer.</param>
677         </member>
678         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
679             <summary>
680             Reads the JSON representation of the object.
681             </summary>
682             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
683             <param name="objectType">Type of the object.</param>
684             <param name="existingValue">The existing value of object being read.</param>
685             <param name="serializer">The calling serializer.</param>
686             <returns>The object value.</returns>
687         </member>
688         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
689             <summary>
690             Determines whether this instance can convert the specified object type.
691             </summary>
692             <param name="objectType">Type of the object.</param>
693             <returns>
694             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
695             </returns>
696         </member>
697         <member name="T:Newtonsoft.Json.Converters.VersionConverter">
698             <summary>
699             Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
700             </summary>
701         </member>
702         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
703             <summary>
704             Writes the JSON representation of the object.
705             </summary>
706             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
707             <param name="value">The value.</param>
708             <param name="serializer">The calling serializer.</param>
709         </member>
710         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
711             <summary>
712             Reads the JSON representation of the object.
713             </summary>
714             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
715             <param name="objectType">Type of the object.</param>
716             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
717             <param name="serializer">The calling serializer.</param>
718             <returns>The object value.</returns>
719         </member>
720         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
721             <summary>
722             Determines whether this instance can convert the specified object type.
723             </summary>
724             <param name="objectType">Type of the object.</param>
725             <returns>
726                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
727             </returns>
728         </member>
729         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
730             <summary>
731             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
732             </summary>
733         </member>
734         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
735             <summary>
736             Gets or sets the date time styles used when converting a date to and from JSON.
737             </summary>
738             <value>The date time styles used when converting a date to and from JSON.</value>
739         </member>
740         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
741             <summary>
742             Gets or sets the date time format used when converting a date to and from JSON.
743             </summary>
744             <value>The date time format used when converting a date to and from JSON.</value>
745         </member>
746         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
747             <summary>
748             Gets or sets the culture used when converting a date to and from JSON.
749             </summary>
750             <value>The culture used when converting a date to and from JSON.</value>
751         </member>
752         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
753             <summary>
754             Writes the JSON representation of the object.
755             </summary>
756             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
757             <param name="value">The value.</param>
758             <param name="serializer">The calling serializer.</param>
759         </member>
760         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
761             <summary>
762             Reads the JSON representation of the object.
763             </summary>
764             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
765             <param name="objectType">Type of the object.</param>
766             <param name="existingValue">The existing value of object being read.</param>
767             <param name="serializer">The calling serializer.</param>
768             <returns>The object value.</returns>
769         </member>
770         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
771             <summary>
772             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
773             </summary>
774         </member>
775         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
776             <summary>
777             Writes the JSON representation of the object.
778             </summary>
779             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
780             <param name="value">The value.</param>
781             <param name="serializer">The calling serializer.</param>
782         </member>
783         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
784             <summary>
785             Reads the JSON representation of the object.
786             </summary>
787             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
788             <param name="objectType">Type of the object.</param>
789             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
790             <param name="serializer">The calling serializer.</param>
791             <returns>The object value.</returns>
792         </member>
793         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
794             <summary>
795             Converts XML to and from JSON.
796             </summary>
797         </member>
798         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
799             <summary>
800             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
801             </summary>
802             <value>The name of the deserialize root element.</value>
803         </member>
804         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
805             <summary>
806             Gets or sets a flag to indicate whether to write the Json.NET array attribute.
807             This attribute helps preserve arrays when converting the written XML back to JSON.
808             </summary>
809             <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
810         </member>
811         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
812             <summary>
813             Gets or sets a value indicating whether to write the root JSON object.
814             </summary>
815             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
816         </member>
817         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
818             <summary>
819             Writes the JSON representation of the object.
820             </summary>
821             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
822             <param name="serializer">The calling serializer.</param>
823             <param name="value">The value.</param>
824         </member>
825         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
826             <summary>
827             Reads the JSON representation of the object.
828             </summary>
829             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
830             <param name="objectType">Type of the object.</param>
831             <param name="existingValue">The existing value of object being read.</param>
832             <param name="serializer">The calling serializer.</param>
833             <returns>The object value.</returns>
834         </member>
835         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
836             <summary>
837             Checks if the attributeName is a namespace attribute.
838             </summary>
839             <param name="attributeName">Attribute name to test.</param>
840             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
841             <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
842         </member>
843         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
844             <summary>
845             Determines whether this instance can convert the specified value type.
846             </summary>
847             <param name="valueType">Type of the value.</param>
848             <returns>
849                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
850             </returns>
851         </member>
852         <member name="T:Newtonsoft.Json.ConstructorHandling">
853             <summary>
854             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
855             </summary>
856         </member>
857         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
858             <summary>
859             First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
860             </summary>
861         </member>
862         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
863             <summary>
864             Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
865             </summary>
866         </member>
867         <member name="T:Newtonsoft.Json.DateFormatHandling">
868             <summary>
869             Specifies how dates are formatted when writing JSON text.
870             </summary>
871         </member>
872         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
873             <summary>
874             Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
875             </summary>
876         </member>
877         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
878             <summary>
879             Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
880             </summary>
881         </member>
882         <member name="T:Newtonsoft.Json.DateParseHandling">
883             <summary>
884             Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
885             </summary>
886         </member>
887         <member name="F:Newtonsoft.Json.DateParseHandling.None">
888             <summary>
889             Date formatted strings are not parsed to a date type and are read as strings.
890             </summary>
891         </member>
892         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
893             <summary>
894             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
895             </summary>
896         </member>
897         <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
898             <summary>
899             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
900             </summary>
901         </member>
902         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
903             <summary>
904             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
905             </summary>
906         </member>
907         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
908             <summary>
909             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.
910             </summary>
911         </member>
912         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
913             <summary>
914             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
915             </summary>
916         </member>
917         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
918             <summary>
919             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
920             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
921             </summary>
922         </member>
923         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
924             <summary>
925             Time zone information should be preserved when converting.
926             </summary>
927         </member>
928         <member name="T:Newtonsoft.Json.FloatFormatHandling">
929             <summary>
930             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
931             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
932             </summary>
933         </member>
934         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
935             <summary>
936             Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
937             </summary>
938         </member>
939         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
940             <summary>
941             Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
942             Note that this will produce non-valid JSON.
943             </summary>
944         </member>
945         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
946             <summary>
947             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.
948             </summary>
949         </member>
950         <member name="T:Newtonsoft.Json.FloatParseHandling">
951             <summary>
952             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
953             </summary>
954         </member>
955         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
956             <summary>
957             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
958             </summary>
959         </member>
960         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
961             <summary>
962             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
963             </summary>
964         </member>
965         <member name="T:Newtonsoft.Json.Formatting">
966             <summary>
967             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
968             </summary>
969         </member>
970         <member name="F:Newtonsoft.Json.Formatting.None">
971             <summary>
972             No special formatting is applied. This is the default.
973             </summary>
974         </member>
975         <member name="F:Newtonsoft.Json.Formatting.Indented">
976             <summary>
977             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.
978             </summary>
979         </member>
980         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
981             <summary>
982             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
983             </summary>
984         </member>
985         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
986             <summary>
987             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
988             </summary>
989         </member>
990         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
991             <summary>
992             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
993             </summary>
994         </member>
995         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
996             <summary>
997             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
998             </summary>
999             <param name="id">The container Id.</param>
1000         </member>
1001         <member name="T:Newtonsoft.Json.JsonException">
1002             <summary>
1003             The exception thrown when an error occurs during JSON serialization or deserialization.
1004             </summary>
1005         </member>
1006         <member name="M:Newtonsoft.Json.JsonException.#ctor">
1007             <summary>
1008             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1009             </summary>
1010         </member>
1011         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
1012             <summary>
1013             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1014             with a specified error message.
1015             </summary>
1016             <param name="message">The error message that explains the reason for the exception.</param>
1017         </member>
1018         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
1019             <summary>
1020             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1021             with a specified error message and a reference to the inner exception that is the cause of this exception.
1022             </summary>
1023             <param name="message">The error message that explains the reason for the exception.</param>
1024             <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>
1025         </member>
1026         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1027             <summary>
1028             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
1029             </summary>
1030             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
1031             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
1032             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
1033             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1034         </member>
1035         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1036             <summary>
1037             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1038             and write values during serialization.
1039             </summary>
1040         </member>
1041         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1042             <summary>
1043             Gets or sets a value that indicates whether to write extension data when serializing the object.
1044             </summary>
1045             <value>
1046                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1047             </value>
1048         </member>
1049         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1050             <summary>
1051             Gets or sets a value that indicates whether to read extension data when deserializing the object.
1052             </summary>
1053             <value>
1054                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1055             </value>
1056         </member>
1057         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1058             <summary>
1059             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1060             </summary>
1061         </member>
1062         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
1063             <summary>
1064             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.
1065             </summary>
1066         </member>
1067         <member name="T:Newtonsoft.Json.Linq.CommentHandling">
1068             <summary>
1069             Specifies how JSON comments are handled when loading JSON.
1070             </summary>
1071         </member>
1072         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
1073             <summary>
1074             Ignore comments.
1075             </summary>
1076         </member>
1077         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
1078             <summary>
1079             Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
1080             </summary>
1081         </member>
1082         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1083             <summary>
1084             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1085             </summary>
1086         </member>
1087         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1088             <summary>
1089             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1090             </summary>
1091             <param name="name">The name.</param>
1092         </member>
1093         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1094             <summary>
1095             When overridden in a derived class, returns whether resetting an object changes its value.
1096             </summary>
1097             <returns>
1098             true if resetting the component changes its value; otherwise, false.
1099             </returns>
1100             <param name="component">The component to test for reset capability. 
1101                             </param>
1102         </member>
1103         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1104             <summary>
1105             When overridden in a derived class, gets the current value of the property on a component.
1106             </summary>
1107             <returns>
1108             The value of a property for a given component.
1109             </returns>
1110             <param name="component">The component with the property for which to retrieve the value. 
1111                             </param>
1112         </member>
1113         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1114             <summary>
1115             When overridden in a derived class, resets the value for this property of the component to the default value.
1116             </summary>
1117             <param name="component">The component with the property value that is to be reset to the default value. 
1118                             </param>
1119         </member>
1120         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1121             <summary>
1122             When overridden in a derived class, sets the value of the component to a different value.
1123             </summary>
1124             <param name="component">The component with the property value that is to be set. 
1125                             </param><param name="value">The new value. 
1126                             </param>
1127         </member>
1128         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1129             <summary>
1130             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1131             </summary>
1132             <returns>
1133             true if the property should be persisted; otherwise, false.
1134             </returns>
1135             <param name="component">The component with the property to be examined for persistence. 
1136                             </param>
1137         </member>
1138         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1139             <summary>
1140             When overridden in a derived class, gets the type of the component this property is bound to.
1141             </summary>
1142             <returns>
1143             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.
1144             </returns>
1145         </member>
1146         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1147             <summary>
1148             When overridden in a derived class, gets a value indicating whether this property is read-only.
1149             </summary>
1150             <returns>
1151             true if the property is read-only; otherwise, false.
1152             </returns>
1153         </member>
1154         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1155             <summary>
1156             When overridden in a derived class, gets the type of the property.
1157             </summary>
1158             <returns>
1159             A <see cref="T:System.Type"/> that represents the type of the property.
1160             </returns>
1161         </member>
1162         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1163             <summary>
1164             Gets the hash code for the name of the member.
1165             </summary>
1166             <value></value>
1167             <returns>
1168             The hash code for the name of the member.
1169             </returns>
1170         </member>
1171         <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
1172             <summary>
1173             Specifies the settings used when loading JSON.
1174             </summary>
1175         </member>
1176         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
1177             <summary>
1178             Gets or sets how JSON comments are handled when loading JSON.
1179             </summary>
1180             <value>The JSON comment handling.</value>
1181         </member>
1182         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1183             <summary>
1184             Specifies the settings used when merging JSON.
1185             </summary>
1186         </member>
1187         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1188             <summary>
1189             Gets or sets the method used when merging JSON arrays.
1190             </summary>
1191             <value>The method used when merging JSON arrays.</value>
1192         </member>
1193         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1194             <summary>
1195             Specifies how JSON arrays are merged together.
1196             </summary>
1197         </member>
1198         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1199             <summary>Concatenate arrays.</summary>
1200         </member>
1201         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1202             <summary>Union arrays, skipping items that already exist.</summary>
1203         </member>
1204         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1205             <summary>Replace all array items.</summary>
1206         </member>
1207         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1208             <summary>Merge array items together, matched by index.</summary>
1209         </member>
1210         <member name="T:Newtonsoft.Json.Linq.JRaw">
1211             <summary>
1212             Represents a raw JSON string.
1213             </summary>
1214         </member>
1215         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
1216             <summary>
1217             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
1218             </summary>
1219             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
1220         </member>
1221         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
1222             <summary>
1223             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
1224             </summary>
1225             <param name="rawJson">The raw json.</param>
1226         </member>
1227         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
1228             <summary>
1229             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
1230             </summary>
1231             <param name="reader">The reader.</param>
1232             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
1233         </member>
1234         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1235             <summary>
1236             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1237             </summary>
1238             <typeparam name="T">The type of token</typeparam>
1239         </member>
1240         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1241             <summary>
1242             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1243             </summary>
1244             <value></value>
1245         </member>
1246         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
1247             <summary>
1248             Compares tokens to determine whether they are equal.
1249             </summary>
1250         </member>
1251         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1252             <summary>
1253             Determines whether the specified objects are equal.
1254             </summary>
1255             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1256             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1257             <returns>
1258             true if the specified objects are equal; otherwise, false.
1259             </returns>
1260         </member>
1261         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
1262             <summary>
1263             Returns a hash code for the specified object.
1264             </summary>
1265             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
1266             <returns>A hash code for the specified object.</returns>
1267             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
1268         </member>
1269         <member name="T:Newtonsoft.Json.Linq.Extensions">
1270             <summary>
1271             Contains the LINQ to JSON extension methods.
1272             </summary>
1273         </member>
1274         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
1275             <summary>
1276             Returns a collection of tokens that contains the ancestors of every token in the source collection.
1277             </summary>
1278             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1279             <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>
1280             <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>
1281         </member>
1282         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1283             <summary>
1284             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
1285             </summary>
1286             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1287             <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>
1288             <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>
1289         </member>
1290         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
1291             <summary>
1292             Returns a collection of tokens that contains the descendants of every token in the source collection.
1293             </summary>
1294             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1295             <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>
1296             <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>
1297         </member>
1298         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1299             <summary>
1300             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
1301             </summary>
1302             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1303             <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>
1304             <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>
1305         </member>
1306         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
1307             <summary>
1308             Returns a collection of child properties of every object in the source collection.
1309             </summary>
1310             <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>
1311             <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>
1312         </member>
1313         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1314             <summary>
1315             Returns a collection of child values of every object in the source collection with the given key.
1316             </summary>
1317             <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>
1318             <param name="key">The token key.</param>
1319             <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>
1320         </member>
1321         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1322             <summary>
1323             Returns a collection of child values of every object in the source collection.
1324             </summary>
1325             <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>
1326             <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>
1327         </member>
1328         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1329             <summary>
1330             Returns a collection of converted child values of every object in the source collection with the given key.
1331             </summary>
1332             <typeparam name="U">The type to convert the values to.</typeparam>
1333             <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>
1334             <param name="key">The token key.</param>
1335             <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>
1336         </member>
1337         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1338             <summary>
1339             Returns a collection of converted child values of every object in the source collection.
1340             </summary>
1341             <typeparam name="U">The type to convert the values to.</typeparam>
1342             <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>
1343             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1344         </member>
1345         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1346             <summary>
1347             Converts the value.
1348             </summary>
1349             <typeparam name="U">The type to convert the value to.</typeparam>
1350             <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>
1351             <returns>A converted value.</returns>
1352         </member>
1353         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
1354             <summary>
1355             Converts the value.
1356             </summary>
1357             <typeparam name="T">The source collection type.</typeparam>
1358             <typeparam name="U">The type to convert the value to.</typeparam>
1359             <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>
1360             <returns>A converted value.</returns>
1361         </member>
1362         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
1363             <summary>
1364             Returns a collection of child tokens of every array in the source collection.
1365             </summary>
1366             <typeparam name="T">The source collection type.</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 values of every token in the source collection.</returns>
1369         </member>
1370         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
1371             <summary>
1372             Returns a collection of converted child tokens of every array in the source collection.
1373             </summary>
1374             <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>
1375             <typeparam name="U">The type to convert the values to.</typeparam>
1376             <typeparam name="T">The source collection type.</typeparam>
1377             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1378         </member>
1379         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1380             <summary>
1381             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1382             </summary>
1383             <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>
1384             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1385         </member>
1386         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
1387             <summary>
1388             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1389             </summary>
1390             <typeparam name="T">The source collection type.</typeparam>
1391             <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>
1392             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1393         </member>
1394         <member name="T:Newtonsoft.Json.Linq.JConstructor">
1395             <summary>
1396             Represents a JSON constructor.
1397             </summary>
1398         </member>
1399         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
1400             <summary>
1401             Gets the container's children tokens.
1402             </summary>
1403             <value>The container's children tokens.</value>
1404         </member>
1405         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
1406             <summary>
1407             Gets or sets the name of this constructor.
1408             </summary>
1409             <value>The constructor name.</value>
1410         </member>
1411         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
1412             <summary>
1413             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1414             </summary>
1415             <value>The type.</value>
1416         </member>
1417         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
1418             <summary>
1419             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
1420             </summary>
1421         </member>
1422         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
1423             <summary>
1424             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
1425             </summary>
1426             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
1427         </member>
1428         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
1429             <summary>
1430             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1431             </summary>
1432             <param name="name">The constructor name.</param>
1433             <param name="content">The contents of the constructor.</param>
1434         </member>
1435         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
1436             <summary>
1437             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1438             </summary>
1439             <param name="name">The constructor name.</param>
1440             <param name="content">The contents of the constructor.</param>
1441         </member>
1442         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
1443             <summary>
1444             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
1445             </summary>
1446             <param name="name">The constructor name.</param>
1447         </member>
1448         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1449             <summary>
1450             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1451             </summary>
1452             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1453             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1454         </member>
1455         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
1456             <summary>
1457             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1458             </summary>
1459             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1460         </member>
1461         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
1462             <summary>
1463             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1464             </summary>
1465             <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>
1466             <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>
1467         </member>
1468         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1469             <summary>
1470             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1471             </summary>
1472             <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>
1473             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1474             If this is null, default load settings will be used.</param>
1475             <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>
1476         </member>
1477         <member name="T:Newtonsoft.Json.Linq.JContainer">
1478             <summary>
1479             Represents a token that can contain other tokens.
1480             </summary>
1481         </member>
1482         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
1483             <summary>
1484             Occurs when the list changes or an item in the list changes.
1485             </summary>
1486         </member>
1487         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
1488             <summary>
1489             Occurs before an item is added to the collection.
1490             </summary>
1491         </member>
1492         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
1493             <summary>
1494             Gets the container's children tokens.
1495             </summary>
1496             <value>The container's children tokens.</value>
1497         </member>
1498         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
1499             <summary>
1500             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
1501             </summary>
1502             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
1503         </member>
1504         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
1505             <summary>
1506             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
1507             </summary>
1508             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
1509         </member>
1510         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
1511             <summary>
1512             Gets a value indicating whether this token has child tokens.
1513             </summary>
1514             <value>
1515                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
1516             </value>
1517         </member>
1518         <member name="P:Newtonsoft.Json.Linq.JContainer.First">
1519             <summary>
1520             Get the first child token of this token.
1521             </summary>
1522             <value>
1523             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1524             </value>
1525         </member>
1526         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
1527             <summary>
1528             Get the last child token of this token.
1529             </summary>
1530             <value>
1531             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1532             </value>
1533         </member>
1534         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
1535             <summary>
1536             Returns a collection of the child tokens of this token, in document order.
1537             </summary>
1538             <returns>
1539             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.
1540             </returns>
1541         </member>
1542         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
1543             <summary>
1544             Returns a collection of the child values of this token, in document order.
1545             </summary>
1546             <typeparam name="T">The type to convert the values to.</typeparam>
1547             <returns>
1548             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.
1549             </returns>
1550         </member>
1551         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
1552             <summary>
1553             Returns a collection of the descendant tokens for this token in document order.
1554             </summary>
1555             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1556         </member>
1557         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
1558             <summary>
1559             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
1560             </summary>
1561             <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>
1562         </member>
1563         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
1564             <summary>
1565             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1566             </summary>
1567             <param name="content">The content to be added.</param>
1568         </member>
1569         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
1570             <summary>
1571             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1572             </summary>
1573             <param name="content">The content to be added.</param>
1574         </member>
1575         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
1576             <summary>
1577             Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1578             </summary>
1579             <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
1580         </member>
1581         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
1582             <summary>
1583             Replaces the children nodes of this token with the specified content.
1584             </summary>
1585             <param name="content">The content.</param>
1586         </member>
1587         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
1588             <summary>
1589             Removes the child nodes from this token.
1590             </summary>
1591         </member>
1592         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
1593             <summary>
1594             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1595             </summary>
1596             <param name="content">The content to be merged.</param>
1597         </member>
1598         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
1599             <summary>
1600             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
1601             </summary>
1602             <param name="content">The content to be merged.</param>
1603             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
1604         </member>
1605         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
1606             <summary>
1607             Gets the count of child JSON tokens.
1608             </summary>
1609             <value>The count of child JSON tokens</value>
1610         </member>
1611         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
1612             <summary>
1613             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1614             </summary>
1615             <typeparam name="T">The type of token</typeparam>
1616         </member>
1617         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
1618             <summary>
1619             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1620             </summary>
1621         </member>
1622         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1623             <summary>
1624             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
1625             </summary>
1626             <param name="enumerable">The enumerable.</param>
1627         </member>
1628         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
1629             <summary>
1630             Returns an enumerator that iterates through the collection.
1631             </summary>
1632             <returns>
1633             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1634             </returns>
1635         </member>
1636         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
1637             <summary>
1638             Returns an enumerator that iterates through a collection.
1639             </summary>
1640             <returns>
1641             An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
1642             </returns>
1643         </member>
1644         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
1645             <summary>
1646             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1647             </summary>
1648             <value></value>
1649         </member>
1650         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
1651             <summary>
1652             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
1653             </summary>
1654             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
1655             <returns>
1656                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
1657             </returns>
1658         </member>
1659         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
1660             <summary>
1661             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
1662             </summary>
1663             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
1664             <returns>
1665                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
1666             </returns>
1667         </member>
1668         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
1669             <summary>
1670             Returns a hash code for this instance.
1671             </summary>
1672             <returns>
1673             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
1674             </returns>
1675         </member>
1676         <member name="T:Newtonsoft.Json.Linq.JObject">
1677             <summary>
1678             Represents a JSON object.
1679             </summary>
1680             <example>
1681               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1682             </example>
1683         </member>
1684         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
1685             <summary>
1686             Gets the container's children tokens.
1687             </summary>
1688             <value>The container's children tokens.</value>
1689         </member>
1690         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
1691             <summary>
1692             Occurs when a property value changes.
1693             </summary>
1694         </member>
1695         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
1696             <summary>
1697             Occurs when a property value is changing.
1698             </summary>
1699         </member>
1700         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
1701             <summary>
1702             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
1703             </summary>
1704         </member>
1705         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
1706             <summary>
1707             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
1708             </summary>
1709             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
1710         </member>
1711         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
1712             <summary>
1713             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1714             </summary>
1715             <param name="content">The contents of the object.</param>
1716         </member>
1717         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
1718             <summary>
1719             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1720             </summary>
1721             <param name="content">The contents of the object.</param>
1722         </member>
1723         <member name="P:Newtonsoft.Json.Linq.JObject.Type">
1724             <summary>
1725             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1726             </summary>
1727             <value>The type.</value>
1728         </member>
1729         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
1730             <summary>
1731             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
1732             </summary>
1733             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
1734         </member>
1735         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
1736             <summary>
1737             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
1738             </summary>
1739             <param name="name">The property name.</param>
1740             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
1741         </member>
1742         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
1743             <summary>
1744             Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
1745             </summary>
1746             <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
1747         </member>
1748         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
1749             <summary>
1750             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1751             </summary>
1752             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1753         </member>
1754         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
1755             <summary>
1756             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1757             </summary>
1758             <value></value>
1759         </member>
1760         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
1761             <summary>
1762             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1763             </summary>
1764             <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>
1765             <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>
1766         </member>
1767         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1768             <summary>
1769             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1770             </summary>
1771             <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>
1772             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1773             If this is null, default load settings will be used.</param>
1774             <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>
1775         </member>
1776         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
1777             <summary>
1778             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1779             </summary>
1780             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1781             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1782             <example>
1783               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1784             </example>
1785         </member>
1786         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
1787             <summary>
1788             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1789             </summary>
1790             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1791             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1792             If this is null, default load settings will be used.</param>
1793             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1794             <example>
1795               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1796             </example>
1797         </member>
1798         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
1799             <summary>
1800             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1801             </summary>
1802             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1803             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1804         </member>
1805         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
1806             <summary>
1807             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1808             </summary>
1809             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1810             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
1811             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1812         </member>
1813         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1814             <summary>
1815             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1816             </summary>
1817             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1818             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1819         </member>
1820         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
1821             <summary>
1822             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1823             </summary>
1824             <param name="propertyName">Name of the property.</param>
1825             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1826         </member>
1827         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
1828             <summary>
1829             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1830             The exact property name will be searched for first and if no matching property is found then
1831             the <see cref="T:System.StringComparison"/> will be used to match a property.
1832             </summary>
1833             <param name="propertyName">Name of the property.</param>
1834             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1835             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1836         </member>
1837         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
1838             <summary>
1839             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1840             The exact property name will be searched for first and if no matching property is found then
1841             the <see cref="T:System.StringComparison"/> will be used to match a property.
1842             </summary>
1843             <param name="propertyName">Name of the property.</param>
1844             <param name="value">The value.</param>
1845             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1846             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1847         </member>
1848         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
1849             <summary>
1850             Adds the specified property name.
1851             </summary>
1852             <param name="propertyName">Name of the property.</param>
1853             <param name="value">The value.</param>
1854         </member>
1855         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
1856             <summary>
1857             Removes the property with the specified name.
1858             </summary>
1859             <param name="propertyName">Name of the property.</param>
1860             <returns>true if item was successfully removed; otherwise, false.</returns>
1861         </member>
1862         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
1863             <summary>
1864             Tries the get value.
1865             </summary>
1866             <param name="propertyName">Name of the property.</param>
1867             <param name="value">The value.</param>
1868             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1869         </member>
1870         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
1871             <summary>
1872             Returns an enumerator that iterates through the collection.
1873             </summary>
1874             <returns>
1875             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1876             </returns>
1877         </member>
1878         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
1879             <summary>
1880             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
1881             </summary>
1882             <param name="propertyName">Name of the property.</param>
1883         </member>
1884         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
1885             <summary>
1886             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
1887             </summary>
1888             <param name="propertyName">Name of the property.</param>
1889         </member>
1890         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
1891             <summary>
1892             Returns the properties for this instance of a component.
1893             </summary>
1894             <returns>
1895             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
1896             </returns>
1897         </member>
1898         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
1899             <summary>
1900             Returns the properties for this instance of a component using the attribute array as a filter.
1901             </summary>
1902             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
1903             <returns>
1904             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
1905             </returns>
1906         </member>
1907         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
1908             <summary>
1909             Returns a collection of custom attributes for this instance of a component.
1910             </summary>
1911             <returns>
1912             An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
1913             </returns>
1914         </member>
1915         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
1916             <summary>
1917             Returns the class name of this instance of a component.
1918             </summary>
1919             <returns>
1920             The class name of the object, or null if the class does not have a name.
1921             </returns>
1922         </member>
1923         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
1924             <summary>
1925             Returns the name of this instance of a component.
1926             </summary>
1927             <returns>
1928             The name of the object, or null if the object does not have a name.
1929             </returns>
1930         </member>
1931         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
1932             <summary>
1933             Returns a type converter for this instance of a component.
1934             </summary>
1935             <returns>
1936             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.
1937             </returns>
1938         </member>
1939         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
1940             <summary>
1941             Returns the default event for this instance of a component.
1942             </summary>
1943             <returns>
1944             An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
1945             </returns>
1946         </member>
1947         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
1948             <summary>
1949             Returns the default property for this instance of a component.
1950             </summary>
1951             <returns>
1952             A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
1953             </returns>
1954         </member>
1955         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
1956             <summary>
1957             Returns an editor of the specified type for this instance of a component.
1958             </summary>
1959             <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
1960             <returns>
1961             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.
1962             </returns>
1963         </member>
1964         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
1965             <summary>
1966             Returns the events for this instance of a component using the specified attribute array as a filter.
1967             </summary>
1968             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
1969             <returns>
1970             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
1971             </returns>
1972         </member>
1973         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
1974             <summary>
1975             Returns the events for this instance of a component.
1976             </summary>
1977             <returns>
1978             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
1979             </returns>
1980         </member>
1981         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
1982             <summary>
1983             Returns an object that contains the property described by the specified property descriptor.
1984             </summary>
1985             <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
1986             <returns>
1987             An <see cref="T:System.Object"/> that represents the owner of the specified property.
1988             </returns>
1989         </member>
1990         <member name="T:Newtonsoft.Json.Linq.JArray">
1991             <summary>
1992             Represents a JSON array.
1993             </summary>
1994             <example>
1995               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
1996             </example>
1997         </member>
1998         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
1999             <summary>
2000             Gets the container's children tokens.
2001             </summary>
2002             <value>The container's children tokens.</value>
2003         </member>
2004         <member name="P:Newtonsoft.Json.Linq.JArray.Type">
2005             <summary>
2006             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2007             </summary>
2008             <value>The type.</value>
2009         </member>
2010         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
2011             <summary>
2012             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
2013             </summary>
2014         </member>
2015         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
2016             <summary>
2017             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
2018             </summary>
2019             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
2020         </member>
2021         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
2022             <summary>
2023             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2024             </summary>
2025             <param name="content">The contents of the array.</param>
2026         </member>
2027         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
2028             <summary>
2029             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2030             </summary>
2031             <param name="content">The contents of the array.</param>
2032         </member>
2033         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
2034             <summary>
2035             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2036             </summary>
2037             <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>
2038             <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>
2039         </member>
2040         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
2041             <summary>
2042             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2043             </summary>
2044             <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>
2045             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2046             If this is null, default load settings will be used.</param>
2047             <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>
2048         </member>
2049         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
2050             <summary>
2051             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2052             </summary>
2053             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2054             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2055             <example>
2056               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2057             </example>
2058         </member>
2059         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
2060             <summary>
2061             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2062             </summary>
2063             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2064             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2065             If this is null, default load settings will be used.</param>
2066             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2067             <example>
2068               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2069             </example>
2070         </member>
2071         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
2072             <summary>
2073             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2074             </summary>
2075             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2076             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2077         </member>
2078         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2079             <summary>
2080             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2081             </summary>
2082             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2083             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
2084             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2085         </member>
2086         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2087             <summary>
2088             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2089             </summary>
2090             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2091             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2092         </member>
2093         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
2094             <summary>
2095             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2096             </summary>
2097             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2098         </member>
2099         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
2100             <summary>
2101             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
2102             </summary>
2103             <value></value>
2104         </member>
2105         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
2106             <summary>
2107             Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
2108             </summary>
2109             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2110             <returns>
2111             The index of <paramref name="item"/> if found in the list; otherwise, -1.
2112             </returns>
2113         </member>
2114         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
2115             <summary>
2116             Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
2117             </summary>
2118             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
2119             <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2120             <exception cref="T:System.ArgumentOutOfRangeException">
2121                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2122             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2123         </member>
2124         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
2125             <summary>
2126             Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
2127             </summary>
2128             <param name="index">The zero-based index of the item to remove.</param>
2129             <exception cref="T:System.ArgumentOutOfRangeException">
2130                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2131             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2132         </member>
2133         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
2134             <summary>
2135             Returns an enumerator that iterates through the collection.
2136             </summary>
2137             <returns>
2138             A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
2139             </returns>
2140         </member>
2141         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
2142             <summary>
2143             Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2144             </summary>
2145             <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2146             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2147         </member>
2148         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
2149             <summary>
2150             Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2151             </summary>
2152             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
2153         </member>
2154         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
2155             <summary>
2156             Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
2157             </summary>
2158             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2159             <returns>
2160             true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
2161             </returns>
2162         </member>
2163         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
2164             <summary>
2165             Copies to.
2166             </summary>
2167             <param name="array">The array.</param>
2168             <param name="arrayIndex">Index of the array.</param>
2169         </member>
2170         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
2171             <summary>
2172             Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
2173             </summary>
2174             <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
2175         </member>
2176         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
2177             <summary>
2178             Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2179             </summary>
2180             <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2181             <returns>
2182             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"/>.
2183             </returns>
2184             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2185         </member>
2186         <member name="T:Newtonsoft.Json.Linq.JTokenReader">
2187             <summary>
2188             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2189             </summary>
2190         </member>
2191         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
2192             <summary>
2193             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
2194             </summary>
2195         </member>
2196         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
2197             <summary>
2198             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
2199             </summary>
2200             <param name="token">The token to read from.</param>
2201         </member>
2202         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
2203             <summary>
2204             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
2205             </summary>
2206             <returns>
2207             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.
2208             </returns>
2209         </member>
2210         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
2211             <summary>
2212             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2213             </summary>
2214             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2215         </member>
2216         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
2217             <summary>
2218             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2219             </summary>
2220             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2221         </member>
2222         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
2223             <summary>
2224             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
2225             </summary>
2226             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2227         </member>
2228         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
2229             <summary>
2230             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2231             </summary>
2232             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2233         </member>
2234         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
2235             <summary>
2236             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2237             </summary>
2238             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2239         </member>
2240         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
2241             <summary>
2242             Reads the next JSON token from the stream.
2243             </summary>
2244             <returns>
2245             true if the next token was read successfully; false if there are no more tokens to read.
2246             </returns>
2247         </member>
2248         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
2249             <summary>
2250             Gets the path of the current JSON token. 
2251             </summary>
2252         </member>
2253         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
2254             <summary>
2255             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
2256             </summary>
2257         </member>
2258         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
2259             <summary>
2260             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
2261             </summary>
2262         </member>
2263         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
2264             <summary>
2265             Gets the token being writen.
2266             </summary>
2267             <value>The token being writen.</value>
2268         </member>
2269         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
2270             <summary>
2271             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"/>.
2272             </summary>
2273             <param name="container">The container being written to.</param>
2274         </member>
2275         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
2276             <summary>
2277             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
2278             </summary>
2279         </member>
2280         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
2281             <summary>
2282             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
2283             </summary>
2284         </member>
2285         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
2286             <summary>
2287             Closes this stream and the underlying stream.
2288             </summary>
2289         </member>
2290         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
2291             <summary>
2292             Writes the beginning of a JSON object.
2293             </summary>
2294         </member>
2295         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
2296             <summary>
2297             Writes the beginning of a JSON array.
2298             </summary>
2299         </member>
2300         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
2301             <summary>
2302             Writes the start of a constructor with the given name.
2303             </summary>
2304             <param name="name">The name of the constructor.</param>
2305         </member>
2306         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
2307             <summary>
2308             Writes the end.
2309             </summary>
2310             <param name="token">The token.</param>
2311         </member>
2312         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
2313             <summary>
2314             Writes the property name of a name/value pair on a JSON object.
2315             </summary>
2316             <param name="name">The name of the property.</param>
2317         </member>
2318         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
2319             <summary>
2320             Writes a <see cref="T:System.Object"/> value.
2321             An error will raised if the value cannot be written as a single JSON token.
2322             </summary>
2323             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
2324         </member>
2325         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
2326             <summary>
2327             Writes a null value.
2328             </summary>
2329         </member>
2330         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
2331             <summary>
2332             Writes an undefined value.
2333             </summary>
2334         </member>
2335         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
2336             <summary>
2337             Writes raw JSON.
2338             </summary>
2339             <param name="json">The raw JSON to write.</param>
2340         </member>
2341         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
2342             <summary>
2343             Writes out a comment <code>/*...*/</code> containing the specified text.
2344             </summary>
2345             <param name="text">Text to place inside the comment.</param>
2346         </member>
2347         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
2348             <summary>
2349             Writes a <see cref="T:System.String"/> value.
2350             </summary>
2351             <param name="value">The <see cref="T:System.String"/> value to write.</param>
2352         </member>
2353         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
2354             <summary>
2355             Writes a <see cref="T:System.Int32"/> value.
2356             </summary>
2357             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
2358         </member>
2359         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
2360             <summary>
2361             Writes a <see cref="T:System.UInt32"/> value.
2362             </summary>
2363             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
2364         </member>
2365         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
2366             <summary>
2367             Writes a <see cref="T:System.Int64"/> value.
2368             </summary>
2369             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
2370         </member>
2371         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
2372             <summary>
2373             Writes a <see cref="T:System.UInt64"/> value.
2374             </summary>
2375             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
2376         </member>
2377         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
2378             <summary>
2379             Writes a <see cref="T:System.Single"/> value.
2380             </summary>
2381             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
2382         </member>
2383         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
2384             <summary>
2385             Writes a <see cref="T:System.Double"/> value.
2386             </summary>
2387             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
2388         </member>
2389         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
2390             <summary>
2391             Writes a <see cref="T:System.Boolean"/> value.
2392             </summary>
2393             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
2394         </member>
2395         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
2396             <summary>
2397             Writes a <see cref="T:System.Int16"/> value.
2398             </summary>
2399             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
2400         </member>
2401         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
2402             <summary>
2403             Writes a <see cref="T:System.UInt16"/> value.
2404             </summary>
2405             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
2406         </member>
2407         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
2408             <summary>
2409             Writes a <see cref="T:System.Char"/> value.
2410             </summary>
2411             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
2412         </member>
2413         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
2414             <summary>
2415             Writes a <see cref="T:System.Byte"/> value.
2416             </summary>
2417             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
2418         </member>
2419         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
2420             <summary>
2421             Writes a <see cref="T:System.SByte"/> value.
2422             </summary>
2423             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
2424         </member>
2425         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
2426             <summary>
2427             Writes a <see cref="T:System.Decimal"/> value.
2428             </summary>
2429             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
2430         </member>
2431         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
2432             <summary>
2433             Writes a <see cref="T:System.DateTime"/> value.
2434             </summary>
2435             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
2436         </member>
2437         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
2438             <summary>
2439             Writes a <see cref="T:System.DateTimeOffset"/> value.
2440             </summary>
2441             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
2442         </member>
2443         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
2444             <summary>
2445             Writes a <see cref="T:System.Byte"/>[] value.
2446             </summary>
2447             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
2448         </member>
2449         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
2450             <summary>
2451             Writes a <see cref="T:System.TimeSpan"/> value.
2452             </summary>
2453             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
2454         </member>
2455         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
2456             <summary>
2457             Writes a <see cref="T:System.Guid"/> value.
2458             </summary>
2459             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
2460         </member>
2461         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
2462             <summary>
2463             Writes a <see cref="T:System.Uri"/> value.
2464             </summary>
2465             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
2466         </member>
2467         <member name="T:Newtonsoft.Json.Linq.JToken">
2468             <summary>
2469             Represents an abstract JSON token.
2470             </summary>
2471         </member>
2472         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2473             <summary>
2474             Gets a comparer that can compare two tokens for value equality.
2475             </summary>
2476             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2477         </member>
2478         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2479             <summary>
2480             Gets or sets the parent.
2481             </summary>
2482             <value>The parent.</value>
2483         </member>
2484         <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2485             <summary>
2486             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2487             </summary>
2488             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2489         </member>
2490         <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2491             <summary>
2492             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2493             </summary>
2494             <value>The type.</value>
2495         </member>
2496         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2497             <summary>
2498             Gets a value indicating whether this token has child tokens.
2499             </summary>
2500             <value>
2501                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2502             </value>
2503         </member>
2504         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2505             <summary>
2506             Compares the values of two tokens, including the values of all descendant tokens.
2507             </summary>
2508             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2509             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2510             <returns>true if the tokens are equal; otherwise false.</returns>
2511         </member>
2512         <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2513             <summary>
2514             Gets the next sibling token of this node.
2515             </summary>
2516             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2517         </member>
2518         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2519             <summary>
2520             Gets the previous sibling token of this node.
2521             </summary>
2522             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2523         </member>
2524         <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2525             <summary>
2526             Gets the path of the JSON token. 
2527             </summary>
2528         </member>
2529         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2530             <summary>
2531             Adds the specified content immediately after this token.
2532             </summary>
2533             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2534         </member>
2535         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2536             <summary>
2537             Adds the specified content immediately before this token.
2538             </summary>
2539             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2540         </member>
2541         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2542             <summary>
2543             Returns a collection of the ancestor tokens of this token.
2544             </summary>
2545             <returns>A collection of the ancestor tokens of this token.</returns>
2546         </member>
2547         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2548             <summary>
2549             Returns a collection of tokens that contain this token, and the ancestors of this token.
2550             </summary>
2551             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2552         </member>
2553         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2554             <summary>
2555             Returns a collection of the sibling tokens after this token, in document order.
2556             </summary>
2557             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2558         </member>
2559         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2560             <summary>
2561             Returns a collection of the sibling tokens before this token, in document order.
2562             </summary>
2563             <returns>A collection of the sibling tokens before this token, in document order.</returns>
2564         </member>
2565         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2566             <summary>
2567             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2568             </summary>
2569             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2570         </member>
2571         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2572             <summary>
2573             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2574             </summary>
2575             <typeparam name="T">The type to convert the token to.</typeparam>
2576             <param name="key">The token key.</param>
2577             <returns>The converted token value.</returns>
2578         </member>
2579         <member name="P:Newtonsoft.Json.Linq.JToken.First">
2580             <summary>
2581             Get the first child token of this token.
2582             </summary>
2583             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2584         </member>
2585         <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2586             <summary>
2587             Get the last child token of this token.
2588             </summary>
2589             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2590         </member>
2591         <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2592             <summary>
2593             Returns a collection of the child tokens of this token, in document order.
2594             </summary>
2595             <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>
2596         </member>
2597         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2598             <summary>
2599             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2600             </summary>
2601             <typeparam name="T">The type to filter the child tokens on.</typeparam>
2602             <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>
2603         </member>
2604         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2605             <summary>
2606             Returns a collection of the child values of this token, in document order.
2607             </summary>
2608             <typeparam name="T">The type to convert the values to.</typeparam>
2609             <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>
2610         </member>
2611         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2612             <summary>
2613             Removes this token from its parent.
2614             </summary>
2615         </member>
2616         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2617             <summary>
2618             Replaces this token with the specified token.
2619             </summary>
2620             <param name="value">The value.</param>
2621         </member>
2622         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2623             <summary>
2624             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2625             </summary>
2626             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2627             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2628         </member>
2629         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2630             <summary>
2631             Returns the indented JSON for this token.
2632             </summary>
2633             <returns>
2634             The indented JSON for this token.
2635             </returns>
2636         </member>
2637         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2638             <summary>
2639             Returns the JSON for this token using the given formatting and converters.
2640             </summary>
2641             <param name="formatting">Indicates how the output is formatted.</param>
2642             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2643             <returns>The JSON for this token using the given formatting and converters.</returns>
2644         </member>
2645         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2646             <summary>
2647             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2648             </summary>
2649             <param name="value">The value.</param>
2650             <returns>The result of the conversion.</returns>
2651         </member>
2652         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2653             <summary>
2654             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2655             </summary>
2656             <param name="value">The value.</param>
2657             <returns>The result of the conversion.</returns>
2658         </member>
2659         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2660             <summary>
2661             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2662             </summary>
2663             <param name="value">The value.</param>
2664             <returns>The result of the conversion.</returns>
2665         </member>
2666         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2667             <summary>
2668             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2669             </summary>
2670             <param name="value">The value.</param>
2671             <returns>The result of the conversion.</returns>
2672         </member>
2673         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2674             <summary>
2675             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2676             </summary>
2677             <param name="value">The value.</param>
2678             <returns>The result of the conversion.</returns>
2679         </member>
2680         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2681             <summary>
2682             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2683             </summary>
2684             <param name="value">The value.</param>
2685             <returns>The result of the conversion.</returns>
2686         </member>
2687         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2688             <summary>
2689             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2690             </summary>
2691             <param name="value">The value.</param>
2692             <returns>The result of the conversion.</returns>
2693         </member>
2694         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2695             <summary>
2696             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2697             </summary>
2698             <param name="value">The value.</param>
2699             <returns>The result of the conversion.</returns>
2700         </member>
2701         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2702             <summary>
2703             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2704             </summary>
2705             <param name="value">The value.</param>
2706             <returns>The result of the conversion.</returns>
2707         </member>
2708         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2709             <summary>
2710             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2711             </summary>
2712             <param name="value">The value.</param>
2713             <returns>The result of the conversion.</returns>
2714         </member>
2715         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2716             <summary>
2717             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2718             </summary>
2719             <param name="value">The value.</param>
2720             <returns>The result of the conversion.</returns>
2721         </member>
2722         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2723             <summary>
2724             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2725             </summary>
2726             <param name="value">The value.</param>
2727             <returns>The result of the conversion.</returns>
2728         </member>
2729         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2730             <summary>
2731             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2732             </summary>
2733             <param name="value">The value.</param>
2734             <returns>The result of the conversion.</returns>
2735         </member>
2736         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2737             <summary>
2738             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2739             </summary>
2740             <param name="value">The value.</param>
2741             <returns>The result of the conversion.</returns>
2742         </member>
2743         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2744             <summary>
2745             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2746             </summary>
2747             <param name="value">The value.</param>
2748             <returns>The result of the conversion.</returns>
2749         </member>
2750         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2751             <summary>
2752             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2753             </summary>
2754             <param name="value">The value.</param>
2755             <returns>The result of the conversion.</returns>
2756         </member>
2757         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2758             <summary>
2759             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2760             </summary>
2761             <param name="value">The value.</param>
2762             <returns>The result of the conversion.</returns>
2763         </member>
2764         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2765             <summary>
2766             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2767             </summary>
2768             <param name="value">The value.</param>
2769             <returns>The result of the conversion.</returns>
2770         </member>
2771         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2772             <summary>
2773             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2774             </summary>
2775             <param name="value">The value.</param>
2776             <returns>The result of the conversion.</returns>
2777         </member>
2778         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2779             <summary>
2780             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2781             </summary>
2782             <param name="value">The value.</param>
2783             <returns>The result of the conversion.</returns>
2784         </member>
2785         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2786             <summary>
2787             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2788             </summary>
2789             <param name="value">The value.</param>
2790             <returns>The result of the conversion.</returns>
2791         </member>
2792         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2793             <summary>
2794             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2795             </summary>
2796             <param name="value">The value.</param>
2797             <returns>The result of the conversion.</returns>
2798         </member>
2799         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2800             <summary>
2801             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2802             </summary>
2803             <param name="value">The value.</param>
2804             <returns>The result of the conversion.</returns>
2805         </member>
2806         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2807             <summary>
2808             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2809             </summary>
2810             <param name="value">The value.</param>
2811             <returns>The result of the conversion.</returns>
2812         </member>
2813         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2814             <summary>
2815             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2816             </summary>
2817             <param name="value">The value.</param>
2818             <returns>The result of the conversion.</returns>
2819         </member>
2820         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2821             <summary>
2822             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2823             </summary>
2824             <param name="value">The value.</param>
2825             <returns>The result of the conversion.</returns>
2826         </member>
2827         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2828             <summary>
2829             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2830             </summary>
2831             <param name="value">The value.</param>
2832             <returns>The result of the conversion.</returns>
2833         </member>
2834         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2835             <summary>
2836             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2837             </summary>
2838             <param name="value">The value.</param>
2839             <returns>The result of the conversion.</returns>
2840         </member>
2841         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2842             <summary>
2843             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2844             </summary>
2845             <param name="value">The value.</param>
2846             <returns>The result of the conversion.</returns>
2847         </member>
2848         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2849             <summary>
2850             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2851             </summary>
2852             <param name="value">The value.</param>
2853             <returns>The result of the conversion.</returns>
2854         </member>
2855         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2856             <summary>
2857             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2858             </summary>
2859             <param name="value">The value.</param>
2860             <returns>The result of the conversion.</returns>
2861         </member>
2862         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2863             <summary>
2864             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2865             </summary>
2866             <param name="value">The value.</param>
2867             <returns>The result of the conversion.</returns>
2868         </member>
2869         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2870             <summary>
2871             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2872             </summary>
2873             <param name="value">The value.</param>
2874             <returns>The result of the conversion.</returns>
2875         </member>
2876         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2877             <summary>
2878             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2879             </summary>
2880             <param name="value">The value.</param>
2881             <returns>The result of the conversion.</returns>
2882         </member>
2883         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2884             <summary>
2885             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2886             </summary>
2887             <param name="value">The value.</param>
2888             <returns>The result of the conversion.</returns>
2889         </member>
2890         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2891             <summary>
2892             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2893             </summary>
2894             <param name="value">The value.</param>
2895             <returns>The result of the conversion.</returns>
2896         </member>
2897         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2898             <summary>
2899             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2900             </summary>
2901             <param name="value">The value.</param>
2902             <returns>The result of the conversion.</returns>
2903         </member>
2904         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2905             <summary>
2906             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2907             </summary>
2908             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2909             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2910         </member>
2911         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2912             <summary>
2913             Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2914             </summary>
2915             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2916             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2917         </member>
2918         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2919             <summary>
2920             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2921             </summary>
2922             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2923             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2924         </member>
2925         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2926             <summary>
2927             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2928             </summary>
2929             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2930             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2931         </member>
2932         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2933             <summary>
2934             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2935             </summary>
2936             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2937             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2938         </member>
2939         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2940             <summary>
2941             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2942             </summary>
2943             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2944             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2945         </member>
2946         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2947             <summary>
2948             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2949             </summary>
2950             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2951             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2952         </member>
2953         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2954             <summary>
2955             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2956             </summary>
2957             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2958             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2959         </member>
2960         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2961             <summary>
2962             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2963             </summary>
2964             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2965             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2966         </member>
2967         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2968             <summary>
2969             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2970             </summary>
2971             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2972             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2973         </member>
2974         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2975             <summary>
2976             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2977             </summary>
2978             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2979             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2980         </member>
2981         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2982             <summary>
2983             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2984             </summary>
2985             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2986             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2987         </member>
2988         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2989             <summary>
2990             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2991             </summary>
2992             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2993             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2994         </member>
2995         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2996             <summary>
2997             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2998             </summary>
2999             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3000             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3001         </member>
3002         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
3003             <summary>
3004             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3005             </summary>
3006             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3007             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3008         </member>
3009         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
3010             <summary>
3011             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3012             </summary>
3013             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3014             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3015         </member>
3016         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
3017             <summary>
3018             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3019             </summary>
3020             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3021             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3022         </member>
3023         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
3024             <summary>
3025             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3026             </summary>
3027             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3028             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3029         </member>
3030         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
3031             <summary>
3032             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3033             </summary>
3034             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3035             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3036         </member>
3037         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
3038             <summary>
3039             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3040             </summary>
3041             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3042             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3043         </member>
3044         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
3045             <summary>
3046             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3047             </summary>
3048             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3049             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3050         </member>
3051         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
3052             <summary>
3053             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3054             </summary>
3055             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3056             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3057         </member>
3058         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
3059             <summary>
3060             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3061             </summary>
3062             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3063             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3064         </member>
3065         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
3066             <summary>
3067             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3068             </summary>
3069             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3070             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3071         </member>
3072         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
3073             <summary>
3074             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3075             </summary>
3076             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3077             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3078         </member>
3079         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
3080             <summary>
3081             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3082             </summary>
3083             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3084             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3085         </member>
3086         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
3087             <summary>
3088             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3089             </summary>
3090             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3091             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3092         </member>
3093         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
3094             <summary>
3095             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3096             </summary>
3097             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3098             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3099         </member>
3100         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
3101             <summary>
3102             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3103             </summary>
3104             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3105             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3106         </member>
3107         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3108             <summary>
3109             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3110             </summary>
3111             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3112             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3113         </member>
3114         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3115             <summary>
3116             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3117             </summary>
3118             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3119             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3120         </member>
3121         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3122             <summary>
3123             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3124             </summary>
3125             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3126             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3127         </member>
3128         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3129             <summary>
3130             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3131             </summary>
3132             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3133             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3134         </member>
3135         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3136             <summary>
3137             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3138             </summary>
3139             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3140             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3141         </member>
3142         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3143             <summary>
3144             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3145             </summary>
3146             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3147             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3148         </member>
3149         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3150             <summary>
3151             Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3152             </summary>
3153             <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3154         </member>
3155         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3156             <summary>
3157             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3158             </summary>
3159             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3160             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3161         </member>
3162         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3163             <summary>
3164             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3165             </summary>
3166             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3167             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3168             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3169         </member>
3170         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3171             <summary>
3172             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3173             </summary>
3174             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3175             <returns>The new object created from the JSON value.</returns>
3176         </member>
3177         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3178             <summary>
3179             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3180             </summary>
3181             <param name="objectType">The object type that the token will be deserialized to.</param>
3182             <returns>The new object created from the JSON value.</returns>
3183         </member>
3184         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3185             <summary>
3186             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3187             </summary>
3188             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3189             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3190             <returns>The new object created from the JSON value.</returns>
3191         </member>
3192         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3193             <summary>
3194             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3195             </summary>
3196             <param name="objectType">The object type that the token will be deserialized to.</param>
3197             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3198             <returns>The new object created from the JSON value.</returns>
3199         </member>
3200         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3201             <summary>
3202             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3203             </summary>
3204             <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>
3205             <returns>
3206             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3207             that were read from the reader. The runtime type of the token is determined
3208             by the token type of the first token encountered in the reader.
3209             </returns>
3210         </member>
3211         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3212             <summary>
3213             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3214             </summary>
3215             <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>
3216             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3217             If this is null, default load settings will be used.</param>
3218             <returns>
3219             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3220             that were read from the reader. The runtime type of the token is determined
3221             by the token type of the first token encountered in the reader.
3222             </returns>
3223         </member>
3224         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3225             <summary>
3226             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3227             </summary>
3228             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3229             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3230         </member>
3231         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
3232             <summary>
3233             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3234             </summary>
3235             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3236             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3237             If this is null, default load settings will be used.</param>
3238             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3239         </member>
3240         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3241             <summary>
3242             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3243             </summary>
3244             <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>
3245             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3246             If this is null, default load settings will be used.</param>
3247             <returns>
3248             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3249             that were read from the reader. The runtime type of the token is determined
3250             by the token type of the first token encountered in the reader.
3251             </returns>
3252         </member>
3253         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3254             <summary>
3255             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3256             </summary>
3257             <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>
3258             <returns>
3259             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3260             that were read from the reader. The runtime type of the token is determined
3261             by the token type of the first token encountered in the reader.
3262             </returns>
3263         </member>
3264         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3265             <summary>
3266             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3267             </summary>
3268             <param name="path">
3269             A <see cref="T:System.String"/> that contains a JPath expression.
3270             </param>
3271             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
3272         </member>
3273         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3274             <summary>
3275             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3276             </summary>
3277             <param name="path">
3278             A <see cref="T:System.String"/> that contains a JPath expression.
3279             </param>
3280             <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>
3281             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3282         </member>
3283         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3284             <summary>
3285             Selects a collection of elements using a JPath expression.
3286             </summary>
3287             <param name="path">
3288             A <see cref="T:System.String"/> that contains a JPath expression.
3289             </param>
3290             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3291         </member>
3292         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3293             <summary>
3294             Selects a collection of elements using a JPath expression.
3295             </summary>
3296             <param name="path">
3297             A <see cref="T:System.String"/> that contains a JPath expression.
3298             </param>
3299             <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>
3300             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3301         </member>
3302         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3303             <summary>
3304             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3305             </summary>
3306             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3307         </member>
3308         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3309             <summary>
3310             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3311             </summary>
3312             <param name="annotation">The annotation to add.</param>
3313         </member>
3314         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3315             <summary>
3316             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3317             </summary>
3318             <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3319             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3320         </member>
3321         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3322             <summary>
3323             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3324             </summary>
3325             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3326             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3327         </member>
3328         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3329             <summary>
3330             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3331             </summary>
3332             <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3333             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3334         </member>
3335         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3336             <summary>
3337             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3338             </summary>
3339             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3340             <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>
3341         </member>
3342         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3343             <summary>
3344             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3345             </summary>
3346             <typeparam name="T">The type of annotations to remove.</typeparam>
3347         </member>
3348         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3349             <summary>
3350             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3351             </summary>
3352             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3353         </member>
3354         <member name="T:Newtonsoft.Json.Linq.JProperty">
3355             <summary>
3356             Represents a JSON property.
3357             </summary>
3358         </member>
3359         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
3360             <summary>
3361             Gets the container's children tokens.
3362             </summary>
3363             <value>The container's children tokens.</value>
3364         </member>
3365         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
3366             <summary>
3367             Gets the property name.
3368             </summary>
3369             <value>The property name.</value>
3370         </member>
3371         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
3372             <summary>
3373             Gets or sets the property value.
3374             </summary>
3375             <value>The property value.</value>
3376         </member>
3377         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
3378             <summary>
3379             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
3380             </summary>
3381             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
3382         </member>
3383         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
3384             <summary>
3385             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3386             </summary>
3387             <value>The type.</value>
3388         </member>
3389         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
3390             <summary>
3391             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3392             </summary>
3393             <param name="name">The property name.</param>
3394             <param name="content">The property content.</param>
3395         </member>
3396         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
3397             <summary>
3398             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3399             </summary>
3400             <param name="name">The property name.</param>
3401             <param name="content">The property content.</param>
3402         </member>
3403         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3404             <summary>
3405             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3406             </summary>
3407             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3408             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3409         </member>
3410         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
3411             <summary>
3412             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3413             </summary>
3414             <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>
3415             <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>
3416         </member>
3417         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3418             <summary>
3419             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3420             </summary>
3421             <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>
3422             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3423             If this is null, default load settings will be used.</param>
3424             <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>
3425         </member>
3426         <member name="T:Newtonsoft.Json.Linq.JTokenType">
3427             <summary>
3428             Specifies the type of token.
3429             </summary>
3430         </member>
3431         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
3432             <summary>
3433             No token type has been set.
3434             </summary>
3435         </member>
3436         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
3437             <summary>
3438             A JSON object.
3439             </summary>
3440         </member>
3441         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
3442             <summary>
3443             A JSON array.
3444             </summary>
3445         </member>
3446         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
3447             <summary>
3448             A JSON constructor.
3449             </summary>
3450         </member>
3451         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
3452             <summary>
3453             A JSON object property.
3454             </summary>
3455         </member>
3456         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
3457             <summary>
3458             A comment.
3459             </summary>
3460         </member>
3461         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
3462             <summary>
3463             An integer value.
3464             </summary>
3465         </member>
3466         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
3467             <summary>
3468             A float value.
3469             </summary>
3470         </member>
3471         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
3472             <summary>
3473             A string value.
3474             </summary>
3475         </member>
3476         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
3477             <summary>
3478             A boolean value.
3479             </summary>
3480         </member>
3481         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
3482             <summary>
3483             A null value.
3484             </summary>
3485         </member>
3486         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
3487             <summary>
3488             An undefined value.
3489             </summary>
3490         </member>
3491         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
3492             <summary>
3493             A date value.
3494             </summary>
3495         </member>
3496         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
3497             <summary>
3498             A raw JSON value.
3499             </summary>
3500         </member>
3501         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
3502             <summary>
3503             A collection of bytes value.
3504             </summary>
3505         </member>
3506         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
3507             <summary>
3508             A Guid value.
3509             </summary>
3510         </member>
3511         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
3512             <summary>
3513             A Uri value.
3514             </summary>
3515         </member>
3516         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
3517             <summary>
3518             A TimeSpan value.
3519             </summary>
3520         </member>
3521         <member name="T:Newtonsoft.Json.Linq.JValue">
3522             <summary>
3523             Represents a value in JSON (string, integer, date, etc).
3524             </summary>
3525         </member>
3526         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3527             <summary>
3528             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3529             </summary>
3530             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3531         </member>
3532         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3533             <summary>
3534             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3535             </summary>
3536             <param name="value">The value.</param>
3537         </member>
3538         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3539             <summary>
3540             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3541             </summary>
3542             <param name="value">The value.</param>
3543         </member>
3544         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3545             <summary>
3546             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3547             </summary>
3548             <param name="value">The value.</param>
3549         </member>
3550         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3551             <summary>
3552             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3553             </summary>
3554             <param name="value">The value.</param>
3555         </member>
3556         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3557             <summary>
3558             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3559             </summary>
3560             <param name="value">The value.</param>
3561         </member>
3562         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3563             <summary>
3564             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3565             </summary>
3566             <param name="value">The value.</param>
3567         </member>
3568         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3569             <summary>
3570             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3571             </summary>
3572             <param name="value">The value.</param>
3573         </member>
3574         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3575             <summary>
3576             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3577             </summary>
3578             <param name="value">The value.</param>
3579         </member>
3580         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3581             <summary>
3582             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3583             </summary>
3584             <param name="value">The value.</param>
3585         </member>
3586         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3587             <summary>
3588             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3589             </summary>
3590             <param name="value">The value.</param>
3591         </member>
3592         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3593             <summary>
3594             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3595             </summary>
3596             <param name="value">The value.</param>
3597         </member>
3598         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3599             <summary>
3600             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3601             </summary>
3602             <param name="value">The value.</param>
3603         </member>
3604         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3605             <summary>
3606             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3607             </summary>
3608             <param name="value">The value.</param>
3609         </member>
3610         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3611             <summary>
3612             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3613             </summary>
3614             <param name="value">The value.</param>
3615         </member>
3616         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3617             <summary>
3618             Gets a value indicating whether this token has child tokens.
3619             </summary>
3620             <value>
3621                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
3622             </value>
3623         </member>
3624         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3625             <summary>
3626             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3627             </summary>
3628             <param name="value">The value.</param>
3629             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3630         </member>
3631         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3632             <summary>
3633             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3634             </summary>
3635             <param name="value">The value.</param>
3636             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3637         </member>
3638         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3639             <summary>
3640             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3641             </summary>
3642             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3643         </member>
3644         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3645             <summary>
3646             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3647             </summary>
3648             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3649         </member>
3650         <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3651             <summary>
3652             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3653             </summary>
3654             <value>The type.</value>
3655         </member>
3656         <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3657             <summary>
3658             Gets or sets the underlying token value.
3659             </summary>
3660             <value>The underlying token value.</value>
3661         </member>
3662         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3663             <summary>
3664             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3665             </summary>
3666             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3667             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3668         </member>
3669         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3670             <summary>
3671             Indicates whether the current object is equal to another object of the same type.
3672             </summary>
3673             <returns>
3674             true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3675             </returns>
3676             <param name="other">An object to compare with this object.</param>
3677         </member>
3678         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3679             <summary>
3680             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3681             </summary>
3682             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3683             <returns>
3684             true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3685             </returns>
3686             <exception cref="T:System.NullReferenceException">
3687             The <paramref name="obj"/> parameter is null.
3688             </exception>
3689         </member>
3690         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3691             <summary>
3692             Serves as a hash function for a particular type.
3693             </summary>
3694             <returns>
3695             A hash code for the current <see cref="T:System.Object"/>.
3696             </returns>
3697         </member>
3698         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3699             <summary>
3700             Returns a <see cref="T:System.String"/> that represents this instance.
3701             </summary>
3702             <returns>
3703             A <see cref="T:System.String"/> that represents this instance.
3704             </returns>
3705         </member>
3706         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3707             <summary>
3708             Returns a <see cref="T:System.String"/> that represents this instance.
3709             </summary>
3710             <param name="format">The format.</param>
3711             <returns>
3712             A <see cref="T:System.String"/> that represents this instance.
3713             </returns>
3714         </member>
3715         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3716             <summary>
3717             Returns a <see cref="T:System.String"/> that represents this instance.
3718             </summary>
3719             <param name="formatProvider">The format provider.</param>
3720             <returns>
3721             A <see cref="T:System.String"/> that represents this instance.
3722             </returns>
3723         </member>
3724         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3725             <summary>
3726             Returns a <see cref="T:System.String"/> that represents this instance.
3727             </summary>
3728             <param name="format">The format.</param>
3729             <param name="formatProvider">The format provider.</param>
3730             <returns>
3731             A <see cref="T:System.String"/> that represents this instance.
3732             </returns>
3733         </member>
3734         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3735             <summary>
3736             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.
3737             </summary>
3738             <param name="obj">An object to compare with this instance.</param>
3739             <returns>
3740             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3741             Value
3742             Meaning
3743             Less than zero
3744             This instance is less than <paramref name="obj"/>.
3745             Zero
3746             This instance is equal to <paramref name="obj"/>.
3747             Greater than zero
3748             This instance is greater than <paramref name="obj"/>.
3749             </returns>
3750             <exception cref="T:System.ArgumentException">
3751                 <paramref name="obj"/> is not the same type as this instance.
3752             </exception>
3753         </member>
3754         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
3755             <summary>
3756             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3757             </summary>
3758         </member>
3759         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
3760             <summary>
3761             Read metadata properties located at the start of a JSON object.
3762             </summary>
3763         </member>
3764         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
3765             <summary>
3766             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
3767             </summary>
3768         </member>
3769         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
3770             <summary>
3771             Do not try to read metadata properties.
3772             </summary>
3773         </member>
3774         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
3775             <summary>
3776             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
3777             </summary>
3778         </member>
3779         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
3780             <summary>
3781             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3782             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3783             <code>Warning</code> and <code>Error</code> messages.
3784             </summary>
3785             <value>
3786             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3787             </value>
3788         </member>
3789         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3790             <summary>
3791             Writes the specified trace level, message and optional exception.
3792             </summary>
3793             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3794             <param name="message">The trace message.</param>
3795             <param name="ex">The trace exception. This parameter is optional.</param>
3796         </member>
3797         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
3798             <summary>
3799             Provides methods to get attributes.
3800             </summary>
3801         </member>
3802         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
3803             <summary>
3804             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3805             </summary>
3806             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3807             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3808         </member>
3809         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3810             <summary>
3811             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3812             </summary>
3813             <param name="attributeType">The type of the attributes.</param>
3814             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3815             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3816         </member>
3817         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
3818             <summary>
3819             Represents a trace writer.
3820             </summary>
3821         </member>
3822         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
3823             <summary>
3824             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3825             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3826             <code>Warning</code> and <code>Error</code> messages.
3827             </summary>
3828             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
3829         </member>
3830         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3831             <summary>
3832             Writes the specified trace level, message and optional exception.
3833             </summary>
3834             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3835             <param name="message">The trace message.</param>
3836             <param name="ex">The trace exception. This parameter is optional.</param>
3837         </member>
3838         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
3839             <summary>
3840             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3841             </summary>
3842         </member>
3843         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
3844             <summary>
3845             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
3846             </summary>
3847             <value>The converter.</value>
3848         </member>
3849         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
3850             <summary>
3851             Gets or sets a value indicating whether the collection items preserve object references.
3852             </summary>
3853             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
3854         </member>
3855         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
3856             <summary>
3857             Gets or sets the collection item reference loop handling.
3858             </summary>
3859             <value>The reference loop handling.</value>
3860         </member>
3861         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
3862             <summary>
3863             Gets or sets the collection item type name handling.
3864             </summary>
3865             <value>The type name handling.</value>
3866         </member>
3867         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
3868             <summary>
3869             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
3870             </summary>
3871             <param name="underlyingType">The underlying type for the contract.</param>
3872         </member>
3873         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
3874             <summary>
3875             Represents a trace writer that writes to memory. When the trace message limit is
3876             reached then old trace messages will be removed as new messages are added.
3877             </summary>
3878         </member>
3879         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
3880             <summary>
3881             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3882             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3883             <code>Warning</code> and <code>Error</code> messages.
3884             </summary>
3885             <value>
3886             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3887             </value>
3888         </member>
3889         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
3890             <summary>
3891             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
3892             </summary>
3893         </member>
3894         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3895             <summary>
3896             Writes the specified trace level, message and optional exception.
3897             </summary>
3898             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3899             <param name="message">The trace message.</param>
3900             <param name="ex">The trace exception. This parameter is optional.</param>
3901         </member>
3902         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
3903             <summary>
3904             Returns an enumeration of the most recent trace messages.
3905             </summary>
3906             <returns>An enumeration of the most recent trace messages.</returns>
3907         </member>
3908         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
3909             <summary>
3910             Returns a <see cref="T:System.String"/> of the most recent trace messages.
3911             </summary>
3912             <returns>
3913             A <see cref="T:System.String"/> of the most recent trace messages.
3914             </returns>
3915         </member>
3916         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
3917             <summary>
3918             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"/>.
3919             </summary>
3920         </member>
3921         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
3922             <summary>
3923             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
3924             </summary>
3925             <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>
3926         </member>
3927         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
3928             <summary>
3929             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3930             </summary>
3931             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3932             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3933         </member>
3934         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3935             <summary>
3936             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3937             </summary>
3938             <param name="attributeType">The type of the attributes.</param>
3939             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3940             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3941         </member>
3942         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
3943             <summary>
3944             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3945             </summary>
3946         </member>
3947         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
3948             <summary>
3949             Gets or sets the ISerializable object constructor.
3950             </summary>
3951             <value>The ISerializable object constructor.</value>
3952         </member>
3953         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
3954             <summary>
3955             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
3956             </summary>
3957             <param name="underlyingType">The underlying type for the contract.</param>
3958         </member>
3959         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
3960             <summary>
3961             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3962             </summary>
3963         </member>
3964         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
3965             <summary>
3966             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
3967             </summary>
3968             <param name="underlyingType">The underlying type for the contract.</param>
3969         </member>
3970         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
3971             <summary>
3972             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3973             </summary>
3974         </member>
3975         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
3976             <summary>
3977             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
3978             </summary>
3979             <param name="underlyingType">The underlying type for the contract.</param>
3980         </member>
3981         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
3982             <summary>
3983             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3984             </summary>
3985         </member>
3986         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
3987             <summary>
3988             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
3989             </summary>
3990             <param name="memberInfo">The member info.</param>
3991         </member>
3992         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
3993             <summary>
3994             Sets the value.
3995             </summary>
3996             <param name="target">The target to set the value on.</param>
3997             <param name="value">The value to set on the target.</param>
3998         </member>
3999         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
4000             <summary>
4001             Gets the value.
4002             </summary>
4003             <param name="target">The target to get the value from.</param>
4004             <returns>The value.</returns>
4005         </member>
4006         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
4007             <summary>
4008             Provides data for the Error event.
4009             </summary>
4010         </member>
4011         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
4012             <summary>
4013             Gets the current object the error event is being raised against.
4014             </summary>
4015             <value>The current object the error event is being raised against.</value>
4016         </member>
4017         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
4018             <summary>
4019             Gets the error context.
4020             </summary>
4021             <value>The error context.</value>
4022         </member>
4023         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
4024             <summary>
4025             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
4026             </summary>
4027             <param name="currentObject">The current object.</param>
4028             <param name="errorContext">The error context.</param>
4029         </member>
4030         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
4031             <summary>
4032             Resolves member mappings for a type, camel casing property names.
4033             </summary>
4034         </member>
4035         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
4036             <summary>
4037             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
4038             </summary>
4039         </member>
4040         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
4041             <summary>
4042             Resolves the name of the property.
4043             </summary>
4044             <param name="propertyName">Name of the property.</param>
4045             <returns>The property name camel cased.</returns>
4046         </member>
4047         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
4048             <summary>
4049             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"/>.
4050             </summary>
4051         </member>
4052         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
4053             <summary>
4054             Gets a value indicating whether members are being get and set using dynamic code generation.
4055             This value is determined by the runtime permissions available.
4056             </summary>
4057             <value>
4058                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
4059             </value>
4060         </member>
4061         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
4062             <summary>
4063             Gets or sets the default members search flags.
4064             </summary>
4065             <value>The default members search flags.</value>
4066         </member>
4067         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
4068             <summary>
4069             Gets or sets a value indicating whether compiler generated members should be serialized.
4070             </summary>
4071             <value>
4072                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
4073             </value>
4074         </member>
4075         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
4076             <summary>
4077             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
4078             </summary>
4079             <value>
4080                 <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>.
4081             </value>
4082         </member>
4083         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
4084             <summary>
4085             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
4086             </summary>
4087             <value>
4088                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
4089             </value>
4090         </member>
4091         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
4092             <summary>
4093             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
4094             </summary>
4095         </member>
4096         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
4097             <summary>
4098             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
4099             </summary>
4100             <param name="shareCache">
4101             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.
4102             Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
4103             happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
4104             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"/>.
4105             </param>
4106         </member>
4107         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
4108             <summary>
4109             Resolves the contract for a given type.
4110             </summary>
4111             <param name="type">The type to resolve a contract for.</param>
4112             <returns>The contract for a given type.</returns>
4113         </member>
4114         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
4115             <summary>
4116             Gets the serializable members for the type.
4117             </summary>
4118             <param name="objectType">The type to get serializable members for.</param>
4119             <returns>The serializable members for the type.</returns>
4120         </member>
4121         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
4122             <summary>
4123             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
4124             </summary>
4125             <param name="objectType">Type of the object.</param>
4126             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
4127         </member>
4128         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
4129             <summary>
4130             Creates the constructor parameters.
4131             </summary>
4132             <param name="constructor">The constructor to create properties for.</param>
4133             <param name="memberProperties">The type's member properties.</param>
4134             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
4135         </member>
4136         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
4137             <summary>
4138             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
4139             </summary>
4140             <param name="matchingMemberProperty">The matching member property.</param>
4141             <param name="parameterInfo">The constructor parameter.</param>
4142             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
4143         </member>
4144         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
4145             <summary>
4146             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
4147             </summary>
4148             <param name="objectType">Type of the object.</param>
4149             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
4150         </member>
4151         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
4152             <summary>
4153             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
4154             </summary>
4155             <param name="objectType">Type of the object.</param>
4156             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
4157         </member>
4158         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
4159             <summary>
4160             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
4161             </summary>
4162             <param name="objectType">Type of the object.</param>
4163             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
4164         </member>
4165         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
4166             <summary>
4167             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
4168             </summary>
4169             <param name="objectType">Type of the object.</param>
4170             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
4171         </member>
4172         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
4173             <summary>
4174             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
4175             </summary>
4176             <param name="objectType">Type of the object.</param>
4177             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
4178         </member>
4179         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
4180             <summary>
4181             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
4182             </summary>
4183             <param name="objectType">Type of the object.</param>
4184             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
4185         </member>
4186         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
4187             <summary>
4188             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
4189             </summary>
4190             <param name="objectType">Type of the object.</param>
4191             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
4192         </member>
4193         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
4194             <summary>
4195             Determines which contract type is created for the given type.
4196             </summary>
4197             <param name="objectType">Type of the object.</param>
4198             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
4199         </member>
4200         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
4201             <summary>
4202             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
4203             </summary>
4204             <param name="type">The type to create properties for.</param>
4205             /// <param name="memberSerialization">The member serialization mode for the type.</param>
4206             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
4207         </member>
4208         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
4209             <summary>
4210             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
4211             </summary>
4212             <param name="member">The member.</param>
4213             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
4214         </member>
4215         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
4216             <summary>
4217             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
4218             </summary>
4219             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
4220             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
4221             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
4222         </member>
4223         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
4224             <summary>
4225             Resolves the name of the property.
4226             </summary>
4227             <param name="propertyName">Name of the property.</param>
4228             <returns>Resolved name of the property.</returns>
4229         </member>
4230         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
4231             <summary>
4232             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
4233             </summary>
4234             <param name="dictionaryKey">Key of the dictionary.</param>
4235             <returns>Resolved key of the dictionary.</returns>
4236         </member>
4237         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
4238             <summary>
4239             Gets the resolved name of the property.
4240             </summary>
4241             <param name="propertyName">Name of the property.</param>
4242             <returns>Name of the property.</returns>
4243         </member>
4244         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
4245             <summary>
4246             The default serialization binder used when resolving and loading classes from type names.
4247             </summary>
4248         </member>
4249         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
4250             <summary>
4251             When overridden in a derived class, controls the binding of a serialized object to a type.
4252             </summary>
4253             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
4254             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
4255             <returns>
4256             The type of the object the formatter creates a new instance of.
4257             </returns>
4258         </member>
4259         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
4260             <summary>
4261             Provides information surrounding an error.
4262             </summary>
4263         </member>
4264         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
4265             <summary>
4266             Gets the error.
4267             </summary>
4268             <value>The error.</value>
4269         </member>
4270         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
4271             <summary>
4272             Gets the original object that caused the error.
4273             </summary>
4274             <value>The original object that caused the error.</value>
4275         </member>
4276         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
4277             <summary>
4278             Gets the member that caused the error.
4279             </summary>
4280             <value>The member that caused the error.</value>
4281         </member>
4282         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
4283             <summary>
4284             Gets the path of the JSON location where the error occurred.
4285             </summary>
4286             <value>The path of the JSON location where the error occurred.</value>
4287         </member>
4288         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
4289             <summary>
4290             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
4291             </summary>
4292             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
4293         </member>
4294         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
4295             <summary>
4296             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"/>.
4297             </summary>
4298             <example>
4299               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
4300               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
4301             </example>
4302         </member>
4303         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
4304             <summary>
4305             Resolves the contract for a given type.
4306             </summary>
4307             <param name="type">The type to resolve a contract for.</param>
4308             <returns>The contract for a given type.</returns>
4309         </member>
4310         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
4311             <summary>
4312             Provides methods to get and set values.
4313             </summary>
4314         </member>
4315         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
4316             <summary>
4317             Sets the value.
4318             </summary>
4319             <param name="target">The target to set the value on.</param>
4320             <param name="value">The value to set on the target.</param>
4321         </member>
4322         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
4323             <summary>
4324             Gets the value.
4325             </summary>
4326             <param name="target">The target to get the value from.</param>
4327             <returns>The value.</returns>
4328         </member>
4329         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
4330             <summary>
4331             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4332             </summary>
4333         </member>
4334         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
4335             <summary>
4336             Gets the <see cref="T:System.Type"/> of the collection items.
4337             </summary>
4338             <value>The <see cref="T:System.Type"/> of the collection items.</value>
4339         </member>
4340         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
4341             <summary>
4342             Gets a value indicating whether the collection type is a multidimensional array.
4343             </summary>
4344             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
4345         </member>
4346         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
4347             <summary>
4348             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4349             </summary>
4350             <value>The function used to create the object.</value>
4351         </member>
4352         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
4353             <summary>
4354             Gets a value indicating whether the creator has a parameter with the collection values.
4355             </summary>
4356             <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
4357         </member>
4358         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
4359             <summary>
4360             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
4361             </summary>
4362             <param name="underlyingType">The underlying type for the contract.</param>
4363         </member>
4364         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
4365             <summary>
4366             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
4367             </summary>
4368             <param name="o">The object that raised the callback event.</param>
4369             <param name="context">The streaming context.</param>
4370         </member>
4371         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
4372             <summary>
4373             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
4374             </summary>
4375             <param name="o">The object that raised the callback event.</param>
4376             <param name="context">The streaming context.</param>
4377             <param name="errorContext">The error context.</param>
4378         </member>
4379         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
4380             <summary>
4381             Sets extension data for an object during deserialization.
4382             </summary>
4383             <param name="o">The object to set extension data on.</param>
4384             <param name="key">The extension data key.</param>
4385             <param name="value">The extension data value.</param>
4386         </member>
4387         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
4388             <summary>
4389             Gets extension data for an object during serialization.
4390             </summary>
4391             <param name="o">The object to set extension data on.</param>
4392         </member>
4393         <member name="T:Newtonsoft.Json.Serialization.JsonContract">
4394             <summary>
4395             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4396             </summary>
4397         </member>
4398         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
4399             <summary>
4400             Gets the underlying type for the contract.
4401             </summary>
4402             <value>The underlying type for the contract.</value>
4403         </member>
4404         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
4405             <summary>
4406             Gets or sets the type created during deserialization.
4407             </summary>
4408             <value>The type created during deserialization.</value>
4409         </member>
4410         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
4411             <summary>
4412             Gets or sets whether this type contract is serialized as a reference.
4413             </summary>
4414             <value>Whether this type contract is serialized as a reference.</value>
4415         </member>
4416         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
4417             <summary>
4418             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
4419             </summary>
4420             <value>The converter.</value>
4421         </member>
4422         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
4423             <summary>
4424             Gets or sets all methods called immediately after deserialization of the object.
4425             </summary>
4426             <value>The methods called immediately after deserialization of the object.</value>
4427         </member>
4428         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
4429             <summary>
4430             Gets or sets all methods called during deserialization of the object.
4431             </summary>
4432             <value>The methods called during deserialization of the object.</value>
4433         </member>
4434         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
4435             <summary>
4436             Gets or sets all methods called after serialization of the object graph.
4437             </summary>
4438             <value>The methods called after serialization of the object graph.</value>
4439         </member>
4440         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
4441             <summary>
4442             Gets or sets all methods called before serialization of the object.
4443             </summary>
4444             <value>The methods called before serialization of the object.</value>
4445         </member>
4446         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
4447             <summary>
4448             Gets or sets all method called when an error is thrown during the serialization of the object.
4449             </summary>
4450             <value>The methods called when an error is thrown during the serialization of the object.</value>
4451         </member>
4452         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
4453             <summary>
4454             Gets or sets the method called immediately after deserialization of the object.
4455             </summary>
4456             <value>The method called immediately after deserialization of the object.</value>
4457         </member>
4458         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
4459             <summary>
4460             Gets or sets the method called during deserialization of the object.
4461             </summary>
4462             <value>The method called during deserialization of the object.</value>
4463         </member>
4464         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
4465             <summary>
4466             Gets or sets the method called after serialization of the object graph.
4467             </summary>
4468             <value>The method called after serialization of the object graph.</value>
4469         </member>
4470         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
4471             <summary>
4472             Gets or sets the method called before serialization of the object.
4473             </summary>
4474             <value>The method called before serialization of the object.</value>
4475         </member>
4476         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
4477             <summary>
4478             Gets or sets the method called when an error is thrown during the serialization of the object.
4479             </summary>
4480             <value>The method called when an error is thrown during the serialization of the object.</value>
4481         </member>
4482         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
4483             <summary>
4484             Gets or sets the default creator method used to create the object.
4485             </summary>
4486             <value>The default creator method used to create the object.</value>
4487         </member>
4488         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
4489             <summary>
4490             Gets or sets a value indicating whether the default creator is non public.
4491             </summary>
4492             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
4493         </member>
4494         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
4495             <summary>
4496             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4497             </summary>
4498         </member>
4499         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
4500             <summary>
4501             Gets or sets the property name resolver.
4502             </summary>
4503             <value>The property name resolver.</value>
4504         </member>
4505         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
4506             <summary>
4507             Gets or sets the dictionary key resolver.
4508             </summary>
4509             <value>The dictionary key resolver.</value>
4510         </member>
4511         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
4512             <summary>
4513             Gets the <see cref="T:System.Type"/> of the dictionary keys.
4514             </summary>
4515             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
4516         </member>
4517         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
4518             <summary>
4519             Gets the <see cref="T:System.Type"/> of the dictionary values.
4520             </summary>
4521             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
4522         </member>
4523         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
4524             <summary>
4525             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4526             </summary>
4527             <value>The function used to create the object.</value>
4528         </member>
4529         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
4530             <summary>
4531             Gets a value indicating whether the creator has a parameter with the dictionary values.
4532             </summary>
4533             <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
4534         </member>
4535         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
4536             <summary>
4537             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
4538             </summary>
4539             <param name="underlyingType">The underlying type for the contract.</param>
4540         </member>
4541         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
4542             <summary>
4543             Maps a JSON property to a .NET member or constructor parameter.
4544             </summary>
4545         </member>
4546         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
4547             <summary>
4548             Gets or sets the name of the property.
4549             </summary>
4550             <value>The name of the property.</value>
4551         </member>
4552         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
4553             <summary>
4554             Gets or sets the type that declared this property.
4555             </summary>
4556             <value>The type that declared this property.</value>
4557         </member>
4558         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
4559             <summary>
4560             Gets or sets the order of serialization and deserialization of a member.
4561             </summary>
4562             <value>The numeric order of serialization or deserialization.</value>
4563         </member>
4564         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
4565             <summary>
4566             Gets or sets the name of the underlying member or parameter.
4567             </summary>
4568             <value>The name of the underlying member or parameter.</value>
4569         </member>
4570         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
4571             <summary>
4572             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
4573             </summary>
4574             <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>
4575         </member>
4576         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
4577             <summary>
4578             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
4579             </summary>
4580             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
4581         </member>
4582         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
4583             <summary>
4584             Gets or sets the type of the property.
4585             </summary>
4586             <value>The type of the property.</value>
4587         </member>
4588         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
4589             <summary>
4590             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
4591             If set this converter takes presidence over the contract converter for the property type.
4592             </summary>
4593             <value>The converter.</value>
4594         </member>
4595         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
4596             <summary>
4597             Gets or sets the member converter.
4598             </summary>
4599             <value>The member converter.</value>
4600         </member>
4601         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
4602             <summary>
4603             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
4604             </summary>
4605             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
4606         </member>
4607         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
4608             <summary>
4609             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
4610             </summary>
4611             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
4612         </member>
4613         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
4614             <summary>
4615             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
4616             </summary>
4617             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
4618         </member>
4619         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
4620             <summary>
4621             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
4622             </summary>
4623             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
4624         </member>
4625         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
4626             <summary>
4627             Gets the default value.
4628             </summary>
4629             <value>The default value.</value>
4630         </member>
4631         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
4632             <summary>
4633             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
4634             </summary>
4635             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
4636         </member>
4637         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
4638             <summary>
4639             Gets or sets a value indicating whether this property preserves object references.
4640             </summary>
4641             <value>
4642                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
4643             </value>
4644         </member>
4645         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
4646             <summary>
4647             Gets or sets the property null value handling.
4648             </summary>
4649             <value>The null value handling.</value>
4650         </member>
4651         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
4652             <summary>
4653             Gets or sets the property default value handling.
4654             </summary>
4655             <value>The default value handling.</value>
4656         </member>
4657         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
4658             <summary>
4659             Gets or sets the property reference loop handling.
4660             </summary>
4661             <value>The reference loop handling.</value>
4662         </member>
4663         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
4664             <summary>
4665             Gets or sets the property object creation handling.
4666             </summary>
4667             <value>The object creation handling.</value>
4668         </member>
4669         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
4670             <summary>
4671             Gets or sets or sets the type name handling.
4672             </summary>
4673             <value>The type name handling.</value>
4674         </member>
4675         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
4676             <summary>
4677             Gets or sets a predicate used to determine whether the property should be serialize.
4678             </summary>
4679             <value>A predicate used to determine whether the property should be serialize.</value>
4680         </member>
4681         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
4682             <summary>
4683             Gets or sets a predicate used to determine whether the property should be deserialized.
4684             </summary>
4685             <value>A predicate used to determine whether the property should be deserialized.</value>
4686         </member>
4687         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
4688             <summary>
4689             Gets or sets a predicate used to determine whether the property should be serialized.
4690             </summary>
4691             <value>A predicate used to determine whether the property should be serialized.</value>
4692         </member>
4693         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
4694             <summary>
4695             Gets or sets an action used to set whether the property has been deserialized.
4696             </summary>
4697             <value>An action used to set whether the property has been deserialized.</value>
4698         </member>
4699         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
4700             <summary>
4701             Returns a <see cref="T:System.String"/> that represents this instance.
4702             </summary>
4703             <returns>
4704             A <see cref="T:System.String"/> that represents this instance.
4705             </returns>
4706         </member>
4707         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
4708             <summary>
4709             Gets or sets the converter used when serializing the property's collection items.
4710             </summary>
4711             <value>The collection's items converter.</value>
4712         </member>
4713         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
4714             <summary>
4715             Gets or sets whether this property's collection items are serialized as a reference.
4716             </summary>
4717             <value>Whether this property's collection items are serialized as a reference.</value>
4718         </member>
4719         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
4720             <summary>
4721             Gets or sets the the type name handling used when serializing the property's collection items.
4722             </summary>
4723             <value>The collection's items type name handling.</value>
4724         </member>
4725         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
4726             <summary>
4727             Gets or sets the the reference loop handling used when serializing the property's collection items.
4728             </summary>
4729             <value>The collection's items reference loop handling.</value>
4730         </member>
4731         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
4732             <summary>
4733             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
4734             </summary>
4735         </member>
4736         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
4737             <summary>
4738             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
4739             </summary>
4740             <param name="type">The type.</param>
4741         </member>
4742         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
4743             <summary>
4744             When implemented in a derived class, extracts the key from the specified element.
4745             </summary>
4746             <param name="item">The element from which to extract the key.</param>
4747             <returns>The key for the specified element.</returns>
4748         </member>
4749         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
4750             <summary>
4751             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4752             </summary>
4753             <param name="property">The property to add to the collection.</param>
4754         </member>
4755         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
4756             <summary>
4757             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4758             First attempts to get an exact case match of propertyName and then
4759             a case insensitive match.
4760             </summary>
4761             <param name="propertyName">Name of the property.</param>
4762             <returns>A matching property if found.</returns>
4763         </member>
4764         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
4765             <summary>
4766             Gets a property by property name.
4767             </summary>
4768             <param name="propertyName">The name of the property to get.</param>
4769             <param name="comparisonType">Type property name string comparison.</param>
4770             <returns>A matching property if found.</returns>
4771         </member>
4772         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4773             <summary>
4774             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4775             </summary>
4776         </member>
4777         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4778             <summary>
4779             Resolves a reference to its object.
4780             </summary>
4781             <param name="context">The serialization context.</param>
4782             <param name="reference">The reference to resolve.</param>
4783             <returns>The object that</returns>
4784         </member>
4785         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4786             <summary>
4787             Gets the reference for the sepecified object.
4788             </summary>
4789             <param name="context">The serialization context.</param>
4790             <param name="value">The object to get a reference for.</param>
4791             <returns>The reference to the object.</returns>
4792         </member>
4793         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
4794             <summary>
4795             Determines whether the specified object is referenced.
4796             </summary>
4797             <param name="context">The serialization context.</param>
4798             <param name="value">The object to test for a reference.</param>
4799             <returns>
4800                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
4801             </returns>
4802         </member>
4803         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
4804             <summary>
4805             Adds a reference to the specified object.
4806             </summary>
4807             <param name="context">The serialization context.</param>
4808             <param name="reference">The reference.</param>
4809             <param name="value">The object to reference.</param>
4810         </member>
4811         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
4812             <summary>
4813             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4814             </summary>
4815         </member>
4816         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
4817             <summary>
4818             Gets or sets the object member serialization.
4819             </summary>
4820             <value>The member object serialization.</value>
4821         </member>
4822         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
4823             <summary>
4824             Gets or sets a value that indicates whether the object's properties are required.
4825             </summary>
4826             <value>
4827                 A value indicating whether the object's properties are required.
4828             </value>
4829         </member>
4830         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
4831             <summary>
4832             Gets the object's properties.
4833             </summary>
4834             <value>The object's properties.</value>
4835         </member>
4836         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
4837             <summary>
4838             Gets the constructor parameters required for any non-default constructor
4839             </summary>
4840         </member>
4841         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
4842             <summary>
4843             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"/>.
4844             </summary>
4845         </member>
4846         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
4847             <summary>
4848             Gets or sets the override constructor used to create the object.
4849             This is set when a constructor is marked up using the
4850             JsonConstructor attribute.
4851             </summary>
4852             <value>The override constructor.</value>
4853         </member>
4854         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
4855             <summary>
4856             Gets or sets the parametrized constructor used to create the object.
4857             </summary>
4858             <value>The parametrized constructor.</value>
4859         </member>
4860         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
4861             <summary>
4862             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4863             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
4864             </summary>
4865             <value>The function used to create the object.</value>
4866         </member>
4867         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
4868             <summary>
4869             Gets or sets the extension data setter.
4870             </summary>
4871         </member>
4872         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
4873             <summary>
4874             Gets or sets the extension data getter.
4875             </summary>
4876         </member>
4877         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
4878             <summary>
4879             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
4880             </summary>
4881             <param name="underlyingType">The underlying type for the contract.</param>
4882         </member>
4883         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
4884             <summary>
4885             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4886             </summary>
4887         </member>
4888         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
4889             <summary>
4890             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
4891             </summary>
4892             <param name="underlyingType">The underlying type for the contract.</param>
4893         </member>
4894         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
4895             <summary>
4896             Lookup and create an instance of the JsonConverter type described by the argument.
4897             </summary>
4898             <param name="converterType">The JsonConverter type to create.</param>
4899             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
4900             If null, the default constructor is used.</param>
4901         </member>
4902         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
4903             <summary>
4904             Create a factory function that can be used to create instances of a JsonConverter described by the 
4905             argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
4906             parameterized constructors by way of an object array.
4907             </summary>
4908         </member>
4909         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
4910             <summary>
4911             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
4912             </summary>
4913         </member>
4914         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
4915             <summary>
4916             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
4917             </summary>
4918             <param name="memberInfo">The member info.</param>
4919         </member>
4920         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
4921             <summary>
4922             Sets the value.
4923             </summary>
4924             <param name="target">The target to set the value on.</param>
4925             <param name="value">The value to set on the target.</param>
4926         </member>
4927         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
4928             <summary>
4929             Gets the value.
4930             </summary>
4931             <param name="target">The target to get the value from.</param>
4932             <returns>The value.</returns>
4933         </member>
4934         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
4935             <summary>
4936             When applied to a method, specifies that the method is called when an error occurs serializing an object.
4937             </summary>
4938         </member>
4939         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
4940             <summary>
4941             Represents a method that constructs an object.
4942             </summary>
4943             <typeparam name="T">The object type to create.</typeparam>
4944         </member>
4945         <member name="T:Newtonsoft.Json.StringEscapeHandling">
4946             <summary>
4947             Specifies how strings are escaped when writing JSON text.
4948             </summary>
4949         </member>
4950         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
4951             <summary>
4952             Only control characters (e.g. newline) are escaped.
4953             </summary>
4954         </member>
4955         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
4956             <summary>
4957             All non-ASCII and control characters (e.g. newline) are escaped.
4958             </summary>
4959         </member>
4960         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
4961             <summary>
4962             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
4963             </summary>
4964         </member>
4965         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
4966             <summary>
4967             Converts the value to the specified type. If the value is unable to be converted, the
4968             value is checked whether it assignable to the specified type.
4969             </summary>
4970             <param name="initialValue">The value to convert.</param>
4971             <param name="culture">The culture to use when converting.</param>
4972             <param name="targetType">The type to convert or cast the value to.</param>
4973             <returns>
4974             The converted type. If conversion was unsuccessful, the initial value
4975             is returned if assignable to the target type.
4976             </returns>
4977         </member>
4978         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
4979             <summary>
4980             Gets a dictionary of the names and values of an Enum type.
4981             </summary>
4982             <returns></returns>
4983         </member>
4984         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
4985             <summary>
4986             Gets a dictionary of the names and values of an Enum type.
4987             </summary>
4988             <param name="enumType">The enum type to get names and values for.</param>
4989             <returns></returns>
4990         </member>
4991         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
4992             <summary>
4993             Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
4994             </summary>
4995         </member>
4996         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
4997             <summary>
4998             Determines whether the collection is null or empty.
4999             </summary>
5000             <param name="collection">The collection.</param>
5001             <returns>
5002                 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
5003             </returns>
5004         </member>
5005         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
5006             <summary>
5007             Adds the elements of the specified collection to the specified generic IList.
5008             </summary>
5009             <param name="initial">The list to add to.</param>
5010             <param name="collection">The collection of elements to add.</param>
5011         </member>
5012         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
5013             <summary>
5014             Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer{TSource}.
5015             </summary>
5016             <typeparam name="TSource">The type of the elements of source.</typeparam>
5017             <param name="list">A sequence in which to locate a value.</param>
5018             <param name="value">The object to locate in the sequence</param>
5019             <param name="comparer">An equality comparer to compare values.</param>
5020             <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, â€“1.</returns>
5021         </member>
5022         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
5023             <summary>
5024             Gets the type of the typed collection's items.
5025             </summary>
5026             <param name="type">The type.</param>
5027             <returns>The type of the typed collection's items.</returns>
5028         </member>
5029         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
5030             <summary>
5031             Gets the member's underlying type.
5032             </summary>
5033             <param name="member">The member.</param>
5034             <returns>The underlying type of the member.</returns>
5035         </member>
5036         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
5037             <summary>
5038             Determines whether the member is an indexed property.
5039             </summary>
5040             <param name="member">The member.</param>
5041             <returns>
5042                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
5043             </returns>
5044         </member>
5045         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
5046             <summary>
5047             Determines whether the property is an indexed property.
5048             </summary>
5049             <param name="property">The property.</param>
5050             <returns>
5051                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
5052             </returns>
5053         </member>
5054         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
5055             <summary>
5056             Gets the member's value on the object.
5057             </summary>
5058             <param name="member">The member.</param>
5059             <param name="target">The target object.</param>
5060             <returns>The member's value on the object.</returns>
5061         </member>
5062         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
5063             <summary>
5064             Sets the member's value on the target object.
5065             </summary>
5066             <param name="member">The member.</param>
5067             <param name="target">The target.</param>
5068             <param name="value">The value.</param>
5069         </member>
5070         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
5071             <summary>
5072             Determines whether the specified MemberInfo can be read.
5073             </summary>
5074             <param name="member">The MemberInfo to determine whether can be read.</param>
5075             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
5076             <returns>
5077                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
5078             </returns>
5079         </member>
5080         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
5081             <summary>
5082             Determines whether the specified MemberInfo can be set.
5083             </summary>
5084             <param name="member">The MemberInfo to determine whether can be set.</param>
5085             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
5086             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
5087             <returns>
5088                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
5089             </returns>
5090         </member>
5091         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
5092             <summary>
5093             Determines whether the string is all white space. Empty string will return false.
5094             </summary>
5095             <param name="s">The string to test whether it is all white space.</param>
5096             <returns>
5097                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
5098             </returns>
5099         </member>
5100         <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
5101             <summary>
5102             Nulls an empty string.
5103             </summary>
5104             <param name="s">The string.</param>
5105             <returns>Null if the string was null, otherwise the string unchanged.</returns>
5106         </member>
5107         <member name="T:Newtonsoft.Json.Required">
5108             <summary>
5109             Indicating whether a property is required.
5110             </summary>
5111         </member>
5112         <member name="F:Newtonsoft.Json.Required.Default">
5113             <summary>
5114             The property is not required. The default state.
5115             </summary>
5116         </member>
5117         <member name="F:Newtonsoft.Json.Required.AllowNull">
5118             <summary>
5119             The property must be defined in JSON but can be a null value.
5120             </summary>
5121         </member>
5122         <member name="F:Newtonsoft.Json.Required.Always">
5123             <summary>
5124             The property must be defined in JSON and cannot be a null value.
5125             </summary>
5126         </member>
5127         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
5128             <summary>
5129             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5130             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
5131             </summary>
5132             <example>
5133               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
5134             </example>
5135         </member>
5136         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
5137             <summary>
5138             Do not preserve references when serializing types.
5139             </summary>
5140         </member>
5141         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
5142             <summary>
5143             Preserve references when serializing into a JSON object structure.
5144             </summary>
5145         </member>
5146         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
5147             <summary>
5148             Preserve references when serializing into a JSON array structure.
5149             </summary>
5150         </member>
5151         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
5152             <summary>
5153             Preserve references when serializing.
5154             </summary>
5155         </member>
5156         <member name="T:Newtonsoft.Json.IJsonLineInfo">
5157             <summary>
5158             Provides an interface to enable a class to return line and position information.
5159             </summary>
5160         </member>
5161         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
5162             <summary>
5163             Gets a value indicating whether the class can return line information.
5164             </summary>
5165             <returns>
5166                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
5167             </returns>
5168         </member>
5169         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
5170             <summary>
5171             Gets the current line number.
5172             </summary>
5173             <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
5174         </member>
5175         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
5176             <summary>
5177             Gets the current line position.
5178             </summary>
5179             <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
5180         </member>
5181         <member name="T:Newtonsoft.Json.JsonArrayAttribute">
5182             <summary>
5183             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
5184             </summary>
5185         </member>
5186         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
5187             <summary>
5188             Gets or sets a value indicating whether null items are allowed in the collection.
5189             </summary>
5190             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
5191         </member>
5192         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
5193             <summary>
5194             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
5195             </summary>
5196         </member>
5197         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
5198             <summary>
5199             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
5200             </summary>
5201             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
5202         </member>
5203         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
5204             <summary>
5205             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
5206             </summary>
5207             <param name="id">The container Id.</param>
5208         </member>
5209         <member name="T:Newtonsoft.Json.JsonContainerAttribute">
5210             <summary>
5211             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5212             </summary>
5213         </member>
5214         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
5215             <summary>
5216             Gets or sets the id.
5217             </summary>
5218             <value>The id.</value>
5219         </member>
5220         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
5221             <summary>
5222             Gets or sets the title.
5223             </summary>
5224             <value>The title.</value>
5225         </member>
5226         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
5227             <summary>
5228             Gets or sets the description.
5229             </summary>
5230             <value>The description.</value>
5231         </member>
5232         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
5233             <summary>
5234             Gets the collection's items converter.
5235             </summary>
5236             <value>The collection's items converter.</value>
5237         </member>
5238         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
5239             <summary>
5240             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
5241             If null, the default constructor is used.
5242             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
5243             order, and type of these parameters.
5244             </summary>
5245             <example>
5246             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
5247             </example>
5248         </member>
5249         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
5250             <summary>
5251             Gets or sets a value that indicates whether to preserve object references.
5252             </summary>
5253             <value>
5254                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
5255             </value>
5256         </member>
5257         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
5258             <summary>
5259             Gets or sets a value that indicates whether to preserve collection's items references.
5260             </summary>
5261             <value>
5262                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
5263             </value>
5264         </member>
5265         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
5266             <summary>
5267             Gets or sets the reference loop handling used when serializing the collection's items.
5268             </summary>
5269             <value>The reference loop handling.</value>
5270         </member>
5271         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
5272             <summary>
5273             Gets or sets the type name handling used when serializing the collection's items.
5274             </summary>
5275             <value>The type name handling.</value>
5276         </member>
5277         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
5278             <summary>
5279             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
5280             </summary>
5281         </member>
5282         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
5283             <summary>
5284             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
5285             </summary>
5286             <param name="id">The container Id.</param>
5287         </member>
5288         <member name="T:Newtonsoft.Json.DefaultValueHandling">
5289             <summary>
5290             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5291             </summary>
5292             <example>
5293               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
5294               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
5295             </example>
5296         </member>
5297         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
5298             <summary>
5299             Include members where the member value is the same as the member's default value when serializing objects.
5300             Included members are written to JSON. Has no effect when deserializing.
5301             </summary>
5302         </member>
5303         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
5304             <summary>
5305             Ignore members where the member value is the same as the member's default value when serializing objects
5306             so that is is not written to JSON.
5307             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
5308             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
5309             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
5310             </summary>
5311         </member>
5312         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
5313             <summary>
5314             Members with a default value but no JSON will be set to their default value when deserializing.
5315             </summary>
5316         </member>
5317         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
5318             <summary>
5319             Ignore members where the member value is the same as the member's default value when serializing objects
5320             and sets members to their default value when deserializing.
5321             </summary>
5322         </member>
5323         <member name="T:Newtonsoft.Json.JsonConverterAttribute">
5324             <summary>
5325             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
5326             </summary>
5327         </member>
5328         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
5329             <summary>
5330             Gets the <see cref="T:System.Type"/> of the converter.
5331             </summary>
5332             <value>The <see cref="T:System.Type"/> of the converter.</value>
5333         </member>
5334         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
5335             <summary>
5336             The parameter list to use when constructing the JsonConverter described by ConverterType.  
5337             If null, the default constructor is used.
5338             </summary>
5339         </member>
5340         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
5341             <summary>
5342             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5343             </summary>
5344             <param name="converterType">Type of the converter.</param>
5345         </member>
5346         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
5347             <summary>
5348             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5349             </summary>
5350             <param name="converterType">Type of the converter.</param>
5351             <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>
5352         </member>
5353         <member name="T:Newtonsoft.Json.JsonObjectAttribute">
5354             <summary>
5355             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5356             </summary>
5357         </member>
5358         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
5359             <summary>
5360             Gets or sets the member serialization.
5361             </summary>
5362             <value>The member serialization.</value>
5363         </member>
5364         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
5365             <summary>
5366             Gets or sets a value that indicates whether the object's properties are required.
5367             </summary>
5368             <value>
5369                 A value indicating whether the object's properties are required.
5370             </value>
5371         </member>
5372         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
5373             <summary>
5374             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
5375             </summary>
5376         </member>
5377         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
5378             <summary>
5379             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
5380             </summary>
5381             <param name="memberSerialization">The member serialization.</param>
5382         </member>
5383         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
5384             <summary>
5385             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
5386             </summary>
5387             <param name="id">The container Id.</param>
5388         </member>
5389         <member name="T:Newtonsoft.Json.JsonSerializerSettings">
5390             <summary>
5391             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
5392             </summary>
5393         </member>
5394         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
5395             <summary>
5396             Gets or sets how reference loops (e.g. a class referencing itself) is handled.
5397             </summary>
5398             <value>Reference loop handling.</value>
5399         </member>
5400         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
5401             <summary>
5402             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5403             </summary>
5404             <value>Missing member handling.</value>
5405         </member>
5406         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
5407             <summary>
5408             Gets or sets how objects are created during deserialization.
5409             </summary>
5410             <value>The object creation handling.</value>
5411         </member>
5412         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
5413             <summary>
5414             Gets or sets how null values are handled during serialization and deserialization.
5415             </summary>
5416             <value>Null value handling.</value>
5417         </member>
5418         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
5419             <summary>
5420             Gets or sets how null default are handled during serialization and deserialization.
5421             </summary>
5422             <value>The default value handling.</value>
5423         </member>
5424         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
5425             <summary>
5426             Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
5427             </summary>
5428             <value>The converters.</value>
5429         </member>
5430         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
5431             <summary>
5432             Gets or sets how object references are preserved by the serializer.
5433             </summary>
5434             <value>The preserve references handling.</value>
5435         </member>
5436         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
5437             <summary>
5438             Gets or sets how type name writing and reading is handled by the serializer.
5439             </summary>
5440             <value>The type name handling.</value>
5441         </member>
5442         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
5443             <summary>
5444             Gets or sets how metadata properties are used during deserialization.
5445             </summary>
5446             <value>The metadata properties handling.</value>
5447         </member>
5448         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
5449             <summary>
5450             Gets or sets how a type name assembly is written and resolved by the serializer.
5451             </summary>
5452             <value>The type name assembly format.</value>
5453         </member>
5454         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
5455             <summary>
5456             Gets or sets how constructors are used during deserialization.
5457             </summary>
5458             <value>The constructor handling.</value>
5459         </member>
5460         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
5461             <summary>
5462             Gets or sets the contract resolver used by the serializer when
5463             serializing .NET objects to JSON and vice versa.
5464             </summary>
5465             <value>The contract resolver.</value>
5466         </member>
5467         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
5468             <summary>
5469             Gets or sets the equality comparer used by the serializer when comparing references.
5470             </summary>
5471             <value>The equality comparer.</value>
5472         </member>
5473         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
5474             <summary>
5475             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5476             </summary>
5477             <value>The reference resolver.</value>
5478         </member>
5479         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
5480             <summary>
5481             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5482             </summary>
5483             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
5484         </member>
5485         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
5486             <summary>
5487             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5488             </summary>
5489             <value>The trace writer.</value>
5490         </member>
5491         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
5492             <summary>
5493             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
5494             </summary>
5495             <value>The binder.</value>
5496         </member>
5497         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
5498             <summary>
5499             Gets or sets the error handler called during serialization and deserialization.
5500             </summary>
5501             <value>The error handler called during serialization and deserialization.</value>
5502         </member>
5503         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
5504             <summary>
5505             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5506             </summary>
5507             <value>The context.</value>
5508         </member>
5509         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
5510             <summary>
5511             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.
5512             </summary>
5513         </member>
5514         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
5515             <summary>
5516             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5517             </summary>
5518         </member>
5519         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
5520             <summary>
5521             Indicates how JSON text output is formatted.
5522             </summary>
5523         </member>
5524         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
5525             <summary>
5526             Get or set how dates are written to JSON text.
5527             </summary>
5528         </member>
5529         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
5530             <summary>
5531             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
5532             </summary>
5533         </member>
5534         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
5535             <summary>
5536             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5537             </summary>
5538         </member>
5539         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
5540             <summary>
5541             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5542             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5543             are written as JSON.
5544             </summary>
5545         </member>
5546         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
5547             <summary>
5548             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5549             </summary>
5550         </member>
5551         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
5552             <summary>
5553             Get or set how strings are escaped when writing JSON text.
5554             </summary>
5555         </member>
5556         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
5557             <summary>
5558             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5559             </summary>
5560         </member>
5561         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
5562             <summary>
5563             Gets a value indicating whether there will be a check for additional content after deserializing an object.
5564             </summary>
5565             <value>
5566                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
5567             </value>
5568         </member>
5569         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
5570             <summary>
5571             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
5572             </summary>
5573         </member>
5574         <member name="T:Newtonsoft.Json.JsonValidatingReader">
5575             <summary>
5576             <para>
5577             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
5578             </para>
5579             <note type="caution">
5580             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.
5581             </note>
5582             </summary>
5583         </member>
5584         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
5585             <summary>
5586             Sets an event handler for receiving schema validation errors.
5587             </summary>
5588         </member>
5589         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
5590             <summary>
5591             Gets the text value of the current JSON token.
5592             </summary>
5593             <value></value>
5594         </member>
5595         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
5596             <summary>
5597             Gets the depth of the current token in the JSON document.
5598             </summary>
5599             <value>The depth of the current token in the JSON document.</value>
5600         </member>
5601         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
5602             <summary>
5603             Gets the path of the current JSON token. 
5604             </summary>
5605         </member>
5606         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
5607             <summary>
5608             Gets the quotation mark character used to enclose the value of a string.
5609             </summary>
5610             <value></value>
5611         </member>
5612         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
5613             <summary>
5614             Gets the type of the current JSON token.
5615             </summary>
5616             <value></value>
5617         </member>
5618         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
5619             <summary>
5620             Gets the Common Language Runtime (CLR) type for the current JSON token.
5621             </summary>
5622             <value></value>
5623         </member>
5624         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
5625             <summary>
5626             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
5627             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
5628             </summary>
5629             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
5630         </member>
5631         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
5632             <summary>
5633             Gets or sets the schema.
5634             </summary>
5635             <value>The schema.</value>
5636         </member>
5637         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
5638             <summary>
5639             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
5640             </summary>
5641             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
5642         </member>
5643         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
5644             <summary>
5645             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5646             </summary>
5647             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5648         </member>
5649         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
5650             <summary>
5651             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
5652             </summary>
5653             <returns>
5654             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
5655             </returns>
5656         </member>
5657         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
5658             <summary>
5659             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5660             </summary>
5661             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5662         </member>
5663         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
5664             <summary>
5665             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5666             </summary>
5667             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5668         </member>
5669         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
5670             <summary>
5671             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5672             </summary>
5673             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5674         </member>
5675         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
5676             <summary>
5677             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5678             </summary>
5679             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5680         </member>
5681         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
5682             <summary>
5683             Reads the next JSON token from the stream.
5684             </summary>
5685             <returns>
5686             true if the next token was read successfully; false if there are no more tokens to read.
5687             </returns>
5688         </member>
5689         <member name="T:Newtonsoft.Json.MemberSerialization">
5690             <summary>
5691             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5692             </summary>
5693         </member>
5694         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
5695             <summary>
5696             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
5697             This is the default member serialization mode.
5698             </summary>
5699         </member>
5700         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
5701             <summary>
5702             Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
5703             This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
5704             </summary>
5705         </member>
5706         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
5707             <summary>
5708             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
5709             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
5710             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
5711             </summary>
5712         </member>
5713         <member name="T:Newtonsoft.Json.ObjectCreationHandling">
5714             <summary>
5715             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5716             </summary>
5717         </member>
5718         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
5719             <summary>
5720             Reuse existing objects, create new objects when needed.
5721             </summary>
5722         </member>
5723         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
5724             <summary>
5725             Only reuse existing objects.
5726             </summary>
5727         </member>
5728         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
5729             <summary>
5730             Always create new objects.
5731             </summary>
5732         </member>
5733         <member name="T:Newtonsoft.Json.JsonTextReader">
5734             <summary>
5735             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
5736             </summary>
5737         </member>
5738         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
5739             <summary>
5740             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
5741             </summary>
5742             <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
5743         </member>
5744         <member name="M:Newtonsoft.Json.JsonTextReader.Read">
5745             <summary>
5746             Reads the next JSON token from the stream.
5747             </summary>
5748             <returns>
5749             true if the next token was read successfully; false if there are no more tokens to read.
5750             </returns>
5751         </member>
5752         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
5753             <summary>
5754             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
5755             </summary>
5756             <returns>
5757             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.
5758             </returns>
5759         </member>
5760         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
5761             <summary>
5762             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5763             </summary>
5764             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5765         </member>
5766         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
5767             <summary>
5768             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5769             </summary>
5770             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
5771         </member>
5772         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
5773             <summary>
5774             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
5775             </summary>
5776             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5777         </member>
5778         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
5779             <summary>
5780             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5781             </summary>
5782             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5783         </member>
5784         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
5785             <summary>
5786             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5787             </summary>
5788             <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
5789         </member>
5790         <member name="M:Newtonsoft.Json.JsonTextReader.Close">
5791             <summary>
5792             Changes the state to closed. 
5793             </summary>
5794         </member>
5795         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
5796             <summary>
5797             Gets a value indicating whether the class can return line information.
5798             </summary>
5799             <returns>
5800                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
5801             </returns>
5802         </member>
5803         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
5804             <summary>
5805             Gets the current line number.
5806             </summary>
5807             <value>
5808             The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
5809             </value>
5810         </member>
5811         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
5812             <summary>
5813             Gets the current line position.
5814             </summary>
5815             <value>
5816             The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
5817             </value>
5818         </member>
5819         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
5820             <summary>
5821             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
5822             </summary>
5823         </member>
5824         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
5825             <summary>
5826             Gets or sets the converter used when serializing the property's collection items.
5827             </summary>
5828             <value>The collection's items converter.</value>
5829         </member>
5830         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
5831             <summary>
5832             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
5833             If null, the default constructor is used.
5834             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
5835             order, and type of these parameters.
5836             </summary>
5837             <example>
5838             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
5839             </example>
5840         </member>
5841         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
5842             <summary>
5843             Gets or sets the null value handling used when serializing this property.
5844             </summary>
5845             <value>The null value handling.</value>
5846         </member>
5847         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
5848             <summary>
5849             Gets or sets the default value handling used when serializing this property.
5850             </summary>
5851             <value>The default value handling.</value>
5852         </member>
5853         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
5854             <summary>
5855             Gets or sets the reference loop handling used when serializing this property.
5856             </summary>
5857             <value>The reference loop handling.</value>
5858         </member>
5859         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
5860             <summary>
5861             Gets or sets the object creation handling used when deserializing this property.
5862             </summary>
5863             <value>The object creation handling.</value>
5864         </member>
5865         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
5866             <summary>
5867             Gets or sets the type name handling used when serializing this property.
5868             </summary>
5869             <value>The type name handling.</value>
5870         </member>
5871         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
5872             <summary>
5873             Gets or sets whether this property's value is serialized as a reference.
5874             </summary>
5875             <value>Whether this property's value is serialized as a reference.</value>
5876         </member>
5877         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
5878             <summary>
5879             Gets or sets the order of serialization and deserialization of a member.
5880             </summary>
5881             <value>The numeric order of serialization or deserialization.</value>
5882         </member>
5883         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
5884             <summary>
5885             Gets or sets a value indicating whether this property is required.
5886             </summary>
5887             <value>
5888                 A value indicating whether this property is required.
5889             </value>
5890         </member>
5891         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
5892             <summary>
5893             Gets or sets the name of the property.
5894             </summary>
5895             <value>The name of the property.</value>
5896         </member>
5897         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
5898             <summary>
5899             Gets or sets the the reference loop handling used when serializing the property's collection items.
5900             </summary>
5901             <value>The collection's items reference loop handling.</value>
5902         </member>
5903         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
5904             <summary>
5905             Gets or sets the the type name handling used when serializing the property's collection items.
5906             </summary>
5907             <value>The collection's items type name handling.</value>
5908         </member>
5909         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
5910             <summary>
5911             Gets or sets whether this property's collection items are serialized as a reference.
5912             </summary>
5913             <value>Whether this property's collection items are serialized as a reference.</value>
5914         </member>
5915         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
5916             <summary>
5917             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
5918             </summary>
5919         </member>
5920         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
5921             <summary>
5922             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
5923             </summary>
5924             <param name="propertyName">Name of the property.</param>
5925         </member>
5926         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
5927             <summary>
5928             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
5929             </summary>
5930         </member>
5931         <member name="T:Newtonsoft.Json.JsonTextWriter">
5932             <summary>
5933             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
5934             </summary>
5935         </member>
5936         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
5937             <summary>
5938             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>.
5939             </summary>
5940         </member>
5941         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
5942             <summary>
5943             Gets or sets which character to use to quote attribute values.
5944             </summary>
5945         </member>
5946         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
5947             <summary>
5948             Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
5949             </summary>
5950         </member>
5951         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
5952             <summary>
5953             Gets or sets a value indicating whether object names will be surrounded with quotes.
5954             </summary>
5955         </member>
5956         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
5957             <summary>
5958             Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
5959             </summary>
5960             <param name="textWriter">The <c>TextWriter</c> to write to.</param>
5961         </member>
5962         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
5963             <summary>
5964             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5965             </summary>
5966         </member>
5967         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
5968             <summary>
5969             Closes this stream and the underlying stream.
5970             </summary>
5971         </member>
5972         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
5973             <summary>
5974             Writes the beginning of a JSON object.
5975             </summary>
5976         </member>
5977         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
5978             <summary>
5979             Writes the beginning of a JSON array.
5980             </summary>
5981         </member>
5982         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
5983             <summary>
5984             Writes the start of a constructor with the given name.
5985             </summary>
5986             <param name="name">The name of the constructor.</param>
5987         </member>
5988         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5989             <summary>
5990             Writes the specified end token.
5991             </summary>
5992             <param name="token">The end token to write.</param>
5993         </member>
5994         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
5995             <summary>
5996             Writes the property name of a name/value pair on a JSON object.
5997             </summary>
5998             <param name="name">The name of the property.</param>
5999         </member>
6000         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
6001             <summary>
6002             Writes the property name of a name/value pair on a JSON object.
6003             </summary>
6004             <param name="name">The name of the property.</param>
6005             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
6006         </member>
6007         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
6008             <summary>
6009             Writes indent characters.
6010             </summary>
6011         </member>
6012         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
6013             <summary>
6014             Writes the JSON value delimiter.
6015             </summary>
6016         </member>
6017         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
6018             <summary>
6019             Writes an indent space.
6020             </summary>
6021         </member>
6022         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
6023             <summary>
6024             Writes a <see cref="T:System.Object"/> value.
6025             An error will raised if the value cannot be written as a single JSON token.
6026             </summary>
6027             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6028         </member>
6029         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
6030             <summary>
6031             Writes a null value.
6032             </summary>
6033         </member>
6034         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
6035             <summary>
6036             Writes an undefined value.
6037             </summary>
6038         </member>
6039         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
6040             <summary>
6041             Writes raw JSON.
6042             </summary>
6043             <param name="json">The raw JSON to write.</param>
6044         </member>
6045         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
6046             <summary>
6047             Writes a <see cref="T:System.String"/> value.
6048             </summary>
6049             <param name="value">The <see cref="T:System.String"/> value to write.</param>
6050         </member>
6051         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
6052             <summary>
6053             Writes a <see cref="T:System.Int32"/> value.
6054             </summary>
6055             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6056         </member>
6057         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
6058             <summary>
6059             Writes a <see cref="T:System.UInt32"/> value.
6060             </summary>
6061             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6062         </member>
6063         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
6064             <summary>
6065             Writes a <see cref="T:System.Int64"/> value.
6066             </summary>
6067             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6068         </member>
6069         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
6070             <summary>
6071             Writes a <see cref="T:System.UInt64"/> value.
6072             </summary>
6073             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6074         </member>
6075         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
6076             <summary>
6077             Writes a <see cref="T:System.Single"/> value.
6078             </summary>
6079             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6080         </member>
6081         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
6082             <summary>
6083             Writes a <see cref="T:System.Nullable`1"/> value.
6084             </summary>
6085             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
6086         </member>
6087         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
6088             <summary>
6089             Writes a <see cref="T:System.Double"/> value.
6090             </summary>
6091             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6092         </member>
6093         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
6094             <summary>
6095             Writes a <see cref="T:System.Nullable`1"/> value.
6096             </summary>
6097             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
6098         </member>
6099         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
6100             <summary>
6101             Writes a <see cref="T:System.Boolean"/> value.
6102             </summary>
6103             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6104         </member>
6105         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
6106             <summary>
6107             Writes a <see cref="T:System.Int16"/> value.
6108             </summary>
6109             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6110         </member>
6111         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
6112             <summary>
6113             Writes a <see cref="T:System.UInt16"/> value.
6114             </summary>
6115             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6116         </member>
6117         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
6118             <summary>
6119             Writes a <see cref="T:System.Char"/> value.
6120             </summary>
6121             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6122         </member>
6123         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
6124             <summary>
6125             Writes a <see cref="T:System.Byte"/> value.
6126             </summary>
6127             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6128         </member>
6129         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
6130             <summary>
6131             Writes a <see cref="T:System.SByte"/> value.
6132             </summary>
6133             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6134         </member>
6135         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
6136             <summary>
6137             Writes a <see cref="T:System.Decimal"/> value.
6138             </summary>
6139             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6140         </member>
6141         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
6142             <summary>
6143             Writes a <see cref="T:System.DateTime"/> value.
6144             </summary>
6145             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6146         </member>
6147         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
6148             <summary>
6149             Writes a <see cref="T:System.Byte"/>[] value.
6150             </summary>
6151             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6152         </member>
6153         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
6154             <summary>
6155             Writes a <see cref="T:System.DateTimeOffset"/> value.
6156             </summary>
6157             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6158         </member>
6159         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
6160             <summary>
6161             Writes a <see cref="T:System.Guid"/> value.
6162             </summary>
6163             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6164         </member>
6165         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
6166             <summary>
6167             Writes a <see cref="T:System.TimeSpan"/> value.
6168             </summary>
6169             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6170         </member>
6171         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
6172             <summary>
6173             Writes a <see cref="T:System.Uri"/> value.
6174             </summary>
6175             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6176         </member>
6177         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
6178             <summary>
6179             Writes out a comment <code>/*...*/</code> containing the specified text. 
6180             </summary>
6181             <param name="text">Text to place inside the comment.</param>
6182         </member>
6183         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
6184             <summary>
6185             Writes out the given white space.
6186             </summary>
6187             <param name="ws">The string of white space characters.</param>
6188         </member>
6189         <member name="T:Newtonsoft.Json.JsonWriterException">
6190             <summary>
6191             The exception thrown when an error occurs while reading JSON text.
6192             </summary>
6193         </member>
6194         <member name="P:Newtonsoft.Json.JsonWriterException.Path">
6195             <summary>
6196             Gets the path to the JSON where the error occurred.
6197             </summary>
6198             <value>The path to the JSON where the error occurred.</value>
6199         </member>
6200         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
6201             <summary>
6202             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
6203             </summary>
6204         </member>
6205         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
6206             <summary>
6207             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6208             with a specified error message.
6209             </summary>
6210             <param name="message">The error message that explains the reason for the exception.</param>
6211         </member>
6212         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
6213             <summary>
6214             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6215             with a specified error message and a reference to the inner exception that is the cause of this exception.
6216             </summary>
6217             <param name="message">The error message that explains the reason for the exception.</param>
6218             <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>
6219         </member>
6220         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6221             <summary>
6222             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
6223             </summary>
6224             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6225             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6226             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6227             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6228         </member>
6229         <member name="T:Newtonsoft.Json.JsonReaderException">
6230             <summary>
6231             The exception thrown when an error occurs while reading JSON text.
6232             </summary>
6233         </member>
6234         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
6235             <summary>
6236             Gets the line number indicating where the error occurred.
6237             </summary>
6238             <value>The line number indicating where the error occurred.</value>
6239         </member>
6240         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
6241             <summary>
6242             Gets the line position indicating where the error occurred.
6243             </summary>
6244             <value>The line position indicating where the error occurred.</value>
6245         </member>
6246         <member name="P:Newtonsoft.Json.JsonReaderException.Path">
6247             <summary>
6248             Gets the path to the JSON where the error occurred.
6249             </summary>
6250             <value>The path to the JSON where the error occurred.</value>
6251         </member>
6252         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
6253             <summary>
6254             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
6255             </summary>
6256         </member>
6257         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
6258             <summary>
6259             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6260             with a specified error message.
6261             </summary>
6262             <param name="message">The error message that explains the reason for the exception.</param>
6263         </member>
6264         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
6265             <summary>
6266             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6267             with a specified error message and a reference to the inner exception that is the cause of this exception.
6268             </summary>
6269             <param name="message">The error message that explains the reason for the exception.</param>
6270             <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>
6271         </member>
6272         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
6273             <summary>
6274             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
6275             </summary>
6276             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
6277             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
6278             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
6279             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
6280         </member>
6281         <member name="T:Newtonsoft.Json.JsonConverter">
6282             <summary>
6283             Converts an object to and from JSON.
6284             </summary>
6285         </member>
6286         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
6287             <summary>
6288             Writes the JSON representation of the object.
6289             </summary>
6290             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
6291             <param name="value">The value.</param>
6292             <param name="serializer">The calling serializer.</param>
6293         </member>
6294         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
6295             <summary>
6296             Reads the JSON representation of the object.
6297             </summary>
6298             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
6299             <param name="objectType">Type of the object.</param>
6300             <param name="existingValue">The existing value of object being read.</param>
6301             <param name="serializer">The calling serializer.</param>
6302             <returns>The object value.</returns>
6303         </member>
6304         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
6305             <summary>
6306             Determines whether this instance can convert the specified object type.
6307             </summary>
6308             <param name="objectType">Type of the object.</param>
6309             <returns>
6310                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
6311             </returns>
6312         </member>
6313         <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
6314             <summary>
6315             <para>
6316             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
6317             </para>
6318             <note type="caution">
6319             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.
6320             </note>
6321             </summary>
6322             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
6323         </member>
6324         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
6325             <summary>
6326             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
6327             </summary>
6328             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
6329         </member>
6330         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
6331             <summary>
6332             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
6333             </summary>
6334             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
6335         </member>
6336         <member name="T:Newtonsoft.Json.JsonConverterCollection">
6337             <summary>
6338             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6339             </summary>
6340         </member>
6341         <member name="T:Newtonsoft.Json.JsonReader">
6342             <summary>
6343             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6344             </summary>
6345         </member>
6346         <member name="T:Newtonsoft.Json.JsonReader.State">
6347             <summary>
6348             Specifies the state of the reader.
6349             </summary>
6350         </member>
6351         <member name="F:Newtonsoft.Json.JsonReader.State.Start">
6352             <summary>
6353             The Read method has not been called.
6354             </summary>
6355         </member>
6356         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
6357             <summary>
6358             The end of the file has been reached successfully.
6359             </summary>
6360         </member>
6361         <member name="F:Newtonsoft.Json.JsonReader.State.Property">
6362             <summary>
6363             Reader is at a property.
6364             </summary>
6365         </member>
6366         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
6367             <summary>
6368             Reader is at the start of an object.
6369             </summary>
6370         </member>
6371         <member name="F:Newtonsoft.Json.JsonReader.State.Object">
6372             <summary>
6373             Reader is in an object.
6374             </summary>
6375         </member>
6376         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
6377             <summary>
6378             Reader is at the start of an array.
6379             </summary>
6380         </member>
6381         <member name="F:Newtonsoft.Json.JsonReader.State.Array">
6382             <summary>
6383             Reader is in an array.
6384             </summary>
6385         </member>
6386         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
6387             <summary>
6388             The Close method has been called.
6389             </summary>
6390         </member>
6391         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
6392             <summary>
6393             Reader has just read a value.
6394             </summary>
6395         </member>
6396         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
6397             <summary>
6398             Reader is at the start of a constructor.
6399             </summary>
6400         </member>
6401         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
6402             <summary>
6403             Reader in a constructor.
6404             </summary>
6405         </member>
6406         <member name="F:Newtonsoft.Json.JsonReader.State.Error">
6407             <summary>
6408             An error occurred that prevents the read operation from continuing.
6409             </summary>
6410         </member>
6411         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
6412             <summary>
6413             The end of the file has been reached successfully.
6414             </summary>
6415         </member>
6416         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
6417             <summary>
6418             Gets the current reader state.
6419             </summary>
6420             <value>The current reader state.</value>
6421         </member>
6422         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
6423             <summary>
6424             Gets or sets a value indicating whether the underlying stream or
6425             <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
6426             </summary>
6427             <value>
6428             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
6429             the reader is closed; otherwise false. The default is true.
6430             </value>
6431         </member>
6432         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
6433             <summary>
6434             Gets or sets a value indicating whether multiple pieces of JSON content can
6435             be read from a continuous stream without erroring.
6436             </summary>
6437             <value>
6438             true to support reading multiple pieces of JSON content; otherwise false. The default is false.
6439             </value>
6440         </member>
6441         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
6442             <summary>
6443             Gets the quotation mark character used to enclose the value of a string.
6444             </summary>
6445         </member>
6446         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
6447             <summary>
6448             Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
6449             </summary>
6450         </member>
6451         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
6452             <summary>
6453             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6454             </summary>
6455         </member>
6456         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
6457             <summary>
6458             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6459             </summary>
6460         </member>
6461         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
6462             <summary>
6463             Get or set how custom date formatted strings are parsed when reading JSON.
6464             </summary>
6465         </member>
6466         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
6467             <summary>
6468             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6469             </summary>
6470         </member>
6471         <member name="P:Newtonsoft.Json.JsonReader.TokenType">
6472             <summary>
6473             Gets the type of the current JSON token. 
6474             </summary>
6475         </member>
6476         <member name="P:Newtonsoft.Json.JsonReader.Value">
6477             <summary>
6478             Gets the text value of the current JSON token.
6479             </summary>
6480         </member>
6481         <member name="P:Newtonsoft.Json.JsonReader.ValueType">
6482             <summary>
6483             Gets The Common Language Runtime (CLR) type for the current JSON token.
6484             </summary>
6485         </member>
6486         <member name="P:Newtonsoft.Json.JsonReader.Depth">
6487             <summary>
6488             Gets the depth of the current token in the JSON document.
6489             </summary>
6490             <value>The depth of the current token in the JSON document.</value>
6491         </member>
6492         <member name="P:Newtonsoft.Json.JsonReader.Path">
6493             <summary>
6494             Gets the path of the current JSON token. 
6495             </summary>
6496         </member>
6497         <member name="P:Newtonsoft.Json.JsonReader.Culture">
6498             <summary>
6499             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6500             </summary>
6501         </member>
6502         <member name="M:Newtonsoft.Json.JsonReader.#ctor">
6503             <summary>
6504             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
6505             </summary>
6506         </member>
6507         <member name="M:Newtonsoft.Json.JsonReader.Read">
6508             <summary>
6509             Reads the next JSON token from the stream.
6510             </summary>
6511             <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
6512         </member>
6513         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
6514             <summary>
6515             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6516             </summary>
6517             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6518         </member>
6519         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
6520             <summary>
6521             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6522             </summary>
6523             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6524         </member>
6525         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
6526             <summary>
6527             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6528             </summary>
6529             <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>
6530         </member>
6531         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
6532             <summary>
6533             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6534             </summary>
6535             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6536         </member>
6537         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
6538             <summary>
6539             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6540             </summary>
6541             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6542         </member>
6543         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
6544             <summary>
6545             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6546             </summary>
6547             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6548         </member>
6549         <member name="M:Newtonsoft.Json.JsonReader.Skip">
6550             <summary>
6551             Skips the children of the current token.
6552             </summary>
6553         </member>
6554         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
6555             <summary>
6556             Sets the current token.
6557             </summary>
6558             <param name="newToken">The new token.</param>
6559         </member>
6560         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
6561             <summary>
6562             Sets the current token and value.
6563             </summary>
6564             <param name="newToken">The new token.</param>
6565             <param name="value">The value.</param>
6566         </member>
6567         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
6568             <summary>
6569             Sets the state based on current token type.
6570             </summary>
6571         </member>
6572         <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
6573             <summary>
6574             Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
6575             </summary>
6576         </member>
6577         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
6578             <summary>
6579             Releases unmanaged and - optionally - managed resources
6580             </summary>
6581             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
6582         </member>
6583         <member name="M:Newtonsoft.Json.JsonReader.Close">
6584             <summary>
6585             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
6586             </summary>
6587         </member>
6588         <member name="T:Newtonsoft.Json.JsonConvert">
6589             <summary>
6590             Provides methods for converting between common language runtime types and JSON types.
6591             </summary>
6592             <example>
6593               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
6594             </example>
6595         </member>
6596         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
6597             <summary>
6598             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6599             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
6600             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"/>.
6601             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
6602             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
6603             </summary>
6604         </member>
6605         <member name="F:Newtonsoft.Json.JsonConvert.True">
6606             <summary>
6607             Represents JavaScript's boolean value true as a string. This field is read-only.
6608             </summary>
6609         </member>
6610         <member name="F:Newtonsoft.Json.JsonConvert.False">
6611             <summary>
6612             Represents JavaScript's boolean value false as a string. This field is read-only.
6613             </summary>
6614         </member>
6615         <member name="F:Newtonsoft.Json.JsonConvert.Null">
6616             <summary>
6617             Represents JavaScript's null as a string. This field is read-only.
6618             </summary>
6619         </member>
6620         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
6621             <summary>
6622             Represents JavaScript's undefined as a string. This field is read-only.
6623             </summary>
6624         </member>
6625         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
6626             <summary>
6627             Represents JavaScript's positive infinity as a string. This field is read-only.
6628             </summary>
6629         </member>
6630         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
6631             <summary>
6632             Represents JavaScript's negative infinity as a string. This field is read-only.
6633             </summary>
6634         </member>
6635         <member name="F:Newtonsoft.Json.JsonConvert.NaN">
6636             <summary>
6637             Represents JavaScript's NaN as a string. This field is read-only.
6638             </summary>
6639         </member>
6640         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
6641             <summary>
6642             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
6643             </summary>
6644             <param name="value">The value to convert.</param>
6645             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
6646         </member>
6647         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
6648             <summary>
6649             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
6650             </summary>
6651             <param name="value">The value to convert.</param>
6652             <param name="format">The format the date will be converted to.</param>
6653             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
6654             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
6655         </member>
6656         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
6657             <summary>
6658             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
6659             </summary>
6660             <param name="value">The value to convert.</param>
6661             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
6662         </member>
6663         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
6664             <summary>
6665             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
6666             </summary>
6667             <param name="value">The value to convert.</param>
6668             <param name="format">The format the date will be converted to.</param>
6669             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
6670         </member>
6671         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
6672             <summary>
6673             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
6674             </summary>
6675             <param name="value">The value to convert.</param>
6676             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
6677         </member>
6678         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
6679             <summary>
6680             Converts the <see cref="T:System.Char"/> to its JSON string representation.
6681             </summary>
6682             <param name="value">The value to convert.</param>
6683             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
6684         </member>
6685         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
6686             <summary>
6687             Converts the <see cref="T:System.Enum"/> to its JSON string representation.
6688             </summary>
6689             <param name="value">The value to convert.</param>
6690             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
6691         </member>
6692         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
6693             <summary>
6694             Converts the <see cref="T:System.Int32"/> to its JSON string representation.
6695             </summary>
6696             <param name="value">The value to convert.</param>
6697             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
6698         </member>
6699         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
6700             <summary>
6701             Converts the <see cref="T:System.Int16"/> to its JSON string representation.
6702             </summary>
6703             <param name="value">The value to convert.</param>
6704             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
6705         </member>
6706         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
6707             <summary>
6708             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
6709             </summary>
6710             <param name="value">The value to convert.</param>
6711             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
6712         </member>
6713         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
6714             <summary>
6715             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
6716             </summary>
6717             <param name="value">The value to convert.</param>
6718             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
6719         </member>
6720         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
6721             <summary>
6722             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
6723             </summary>
6724             <param name="value">The value to convert.</param>
6725             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
6726         </member>
6727         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
6728             <summary>
6729             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
6730             </summary>
6731             <param name="value">The value to convert.</param>
6732             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
6733         </member>
6734         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
6735             <summary>
6736             Converts the <see cref="T:System.Single"/> to its JSON string representation.
6737             </summary>
6738             <param name="value">The value to convert.</param>
6739             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
6740         </member>
6741         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
6742             <summary>
6743             Converts the <see cref="T:System.Double"/> to its JSON string representation.
6744             </summary>
6745             <param name="value">The value to convert.</param>
6746             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
6747         </member>
6748         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
6749             <summary>
6750             Converts the <see cref="T:System.Byte"/> to its JSON string representation.
6751             </summary>
6752             <param name="value">The value to convert.</param>
6753             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
6754         </member>
6755         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
6756             <summary>
6757             Converts the <see cref="T:System.SByte"/> to its JSON string representation.
6758             </summary>
6759             <param name="value">The value to convert.</param>
6760             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
6761         </member>
6762         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
6763             <summary>
6764             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
6765             </summary>
6766             <param name="value">The value to convert.</param>
6767             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
6768         </member>
6769         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
6770             <summary>
6771             Converts the <see cref="T:System.Guid"/> to its JSON string representation.
6772             </summary>
6773             <param name="value">The value to convert.</param>
6774             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
6775         </member>
6776         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
6777             <summary>
6778             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
6779             </summary>
6780             <param name="value">The value to convert.</param>
6781             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
6782         </member>
6783         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
6784             <summary>
6785             Converts the <see cref="T:System.Uri"/> to its JSON string representation.
6786             </summary>
6787             <param name="value">The value to convert.</param>
6788             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
6789         </member>
6790         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
6791             <summary>
6792             Converts the <see cref="T:System.String"/> to its JSON string representation.
6793             </summary>
6794             <param name="value">The value to convert.</param>
6795             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
6796         </member>
6797         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
6798             <summary>
6799             Converts the <see cref="T:System.String"/> to its JSON string representation.
6800             </summary>
6801             <param name="value">The value to convert.</param>
6802             <param name="delimiter">The string delimiter character.</param>
6803             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
6804         </member>
6805         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
6806             <summary>
6807             Converts the <see cref="T:System.String"/> to its JSON string representation.
6808             </summary>
6809             <param name="value">The value to convert.</param>
6810             <param name="delimiter">The string delimiter character.</param>
6811             <param name="stringEscapeHandling">The string escape handling.</param>
6812             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
6813         </member>
6814         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
6815             <summary>
6816             Converts the <see cref="T:System.Object"/> to its JSON string representation.
6817             </summary>
6818             <param name="value">The value to convert.</param>
6819             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
6820         </member>
6821         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
6822             <summary>
6823             Serializes the specified object to a JSON string.
6824             </summary>
6825             <param name="value">The object to serialize.</param>
6826             <returns>A JSON string representation of the object.</returns>
6827         </member>
6828         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
6829             <summary>
6830             Serializes the specified object to a JSON string using formatting.
6831             </summary>
6832             <param name="value">The object to serialize.</param>
6833             <param name="formatting">Indicates how the output is formatted.</param>
6834             <returns>
6835             A JSON string representation of the object.
6836             </returns>
6837         </member>
6838         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
6839             <summary>
6840             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6841             </summary>
6842             <param name="value">The object to serialize.</param>
6843             <param name="converters">A collection converters used while serializing.</param>
6844             <returns>A JSON string representation of the object.</returns>
6845         </member>
6846         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
6847             <summary>
6848             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6849             </summary>
6850             <param name="value">The object to serialize.</param>
6851             <param name="formatting">Indicates how the output is formatted.</param>
6852             <param name="converters">A collection converters used while serializing.</param>
6853             <returns>A JSON string representation of the object.</returns>
6854         </member>
6855         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
6856             <summary>
6857             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6858             </summary>
6859             <param name="value">The object to serialize.</param>
6860             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
6861             If this is null, default serialization settings will be used.</param>
6862             <returns>
6863             A JSON string representation of the object.
6864             </returns>
6865         </member>
6866         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
6867             <summary>
6868             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6869             </summary>
6870             <param name="value">The object to serialize.</param>
6871             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
6872             If this is null, default serialization settings will be used.</param>
6873             <param name="type">
6874             The type of the value being serialized.
6875             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.
6876             Specifing the type is optional.
6877             </param>
6878             <returns>
6879             A JSON string representation of the object.
6880             </returns>
6881         </member>
6882         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
6883             <summary>
6884             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6885             </summary>
6886             <param name="value">The object to serialize.</param>
6887             <param name="formatting">Indicates how the output is formatted.</param>
6888             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
6889             If this is null, default serialization settings will be used.</param>
6890             <returns>
6891             A JSON string representation of the object.
6892             </returns>
6893         </member>
6894         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
6895             <summary>
6896             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6897             </summary>
6898             <param name="value">The object to serialize.</param>
6899             <param name="formatting">Indicates how the output is formatted.</param>
6900             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
6901             If this is null, default serialization settings will be used.</param>
6902             <param name="type">
6903             The type of the value being serialized.
6904             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.
6905             Specifing the type is optional.
6906             </param>
6907             <returns>
6908             A JSON string representation of the object.
6909             </returns>
6910         </member>
6911         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
6912             <summary>
6913             Deserializes the JSON to a .NET object.
6914             </summary>
6915             <param name="value">The JSON to deserialize.</param>
6916             <returns>The deserialized object from the JSON string.</returns>
6917         </member>
6918         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
6919             <summary>
6920             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6921             </summary>
6922             <param name="value">The JSON to deserialize.</param>
6923             <param name="settings">
6924             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
6925             If this is null, default serialization settings will be used.
6926             </param>
6927             <returns>The deserialized object from the JSON string.</returns>
6928         </member>
6929         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
6930             <summary>
6931             Deserializes the JSON to the specified .NET type.
6932             </summary>
6933             <param name="value">The JSON to deserialize.</param>
6934             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
6935             <returns>The deserialized object from the JSON string.</returns>
6936         </member>
6937         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
6938             <summary>
6939             Deserializes the JSON to the specified .NET type.
6940             </summary>
6941             <typeparam name="T">The type of the object to deserialize to.</typeparam>
6942             <param name="value">The JSON to deserialize.</param>
6943             <returns>The deserialized object from the JSON string.</returns>
6944         </member>
6945         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
6946             <summary>
6947             Deserializes the JSON to the given anonymous type.
6948             </summary>
6949             <typeparam name="T">
6950             The anonymous type to deserialize to. This can't be specified
6951             traditionally and must be infered from the anonymous type passed
6952             as a parameter.
6953             </typeparam>
6954             <param name="value">The JSON to deserialize.</param>
6955             <param name="anonymousTypeObject">The anonymous type object.</param>
6956             <returns>The deserialized anonymous type from the JSON string.</returns>
6957         </member>
6958         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
6959             <summary>
6960             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6961             </summary>
6962             <typeparam name="T">
6963             The anonymous type to deserialize to. This can't be specified
6964             traditionally and must be infered from the anonymous type passed
6965             as a parameter.
6966             </typeparam>
6967             <param name="value">The JSON to deserialize.</param>
6968             <param name="anonymousTypeObject">The anonymous type object.</param>
6969             <param name="settings">
6970             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
6971             If this is null, default serialization settings will be used.
6972             </param>
6973             <returns>The deserialized anonymous type from the JSON string.</returns>
6974         </member>
6975         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
6976             <summary>
6977             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6978             </summary>
6979             <typeparam name="T">The type of the object to deserialize to.</typeparam>
6980             <param name="value">The JSON to deserialize.</param>
6981             <param name="converters">Converters to use while deserializing.</param>
6982             <returns>The deserialized object from the JSON string.</returns>
6983         </member>
6984         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
6985             <summary>
6986             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6987             </summary>
6988             <typeparam name="T">The type of the object to deserialize to.</typeparam>
6989             <param name="value">The object to deserialize.</param>
6990             <param name="settings">
6991             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
6992             If this is null, default serialization settings will be used.
6993             </param>
6994             <returns>The deserialized object from the JSON string.</returns>
6995         </member>
6996         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
6997             <summary>
6998             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6999             </summary>
7000             <param name="value">The JSON to deserialize.</param>
7001             <param name="type">The type of the object to deserialize.</param>
7002             <param name="converters">Converters to use while deserializing.</param>
7003             <returns>The deserialized object from the JSON string.</returns>
7004         </member>
7005         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7006             <summary>
7007             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7008             </summary>
7009             <param name="value">The JSON to deserialize.</param>
7010             <param name="type">The type of the object to deserialize to.</param>
7011             <param name="settings">
7012             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7013             If this is null, default serialization settings will be used.
7014             </param>
7015             <returns>The deserialized object from the JSON string.</returns>
7016         </member>
7017         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
7018             <summary>
7019             Populates the object with values from the JSON string.
7020             </summary>
7021             <param name="value">The JSON to populate values from.</param>
7022             <param name="target">The target object to populate values onto.</param>
7023         </member>
7024         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7025             <summary>
7026             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7027             </summary>
7028             <param name="value">The JSON to populate values from.</param>
7029             <param name="target">The target object to populate values onto.</param>
7030             <param name="settings">
7031             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7032             If this is null, default serialization settings will be used.
7033             </param>
7034         </member>
7035         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
7036             <summary>
7037             Serializes the XML node to a JSON string.
7038             </summary>
7039             <param name="node">The node to serialize.</param>
7040             <returns>A JSON string of the XmlNode.</returns>
7041         </member>
7042         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
7043             <summary>
7044             Serializes the XML node to a JSON string using formatting.
7045             </summary>
7046             <param name="node">The node to serialize.</param>
7047             <param name="formatting">Indicates how the output is formatted.</param>
7048             <returns>A JSON string of the XmlNode.</returns>
7049         </member>
7050         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
7051             <summary>
7052             Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
7053             </summary>
7054             <param name="node">The node to serialize.</param>
7055             <param name="formatting">Indicates how the output is formatted.</param>
7056             <param name="omitRootObject">Omits writing the root object.</param>
7057             <returns>A JSON string of the XmlNode.</returns>
7058         </member>
7059         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
7060             <summary>
7061             Deserializes the XmlNode from a JSON string.
7062             </summary>
7063             <param name="value">The JSON string.</param>
7064             <returns>The deserialized XmlNode</returns>
7065         </member>
7066         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
7067             <summary>
7068             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
7069             </summary>
7070             <param name="value">The JSON string.</param>
7071             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7072             <returns>The deserialized XmlNode</returns>
7073         </member>
7074         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
7075             <summary>
7076             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
7077             and writes a .NET array attribute for collections.
7078             </summary>
7079             <param name="value">The JSON string.</param>
7080             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7081             <param name="writeArrayAttribute">
7082             A flag to indicate whether to write the Json.NET array attribute.
7083             This attribute helps preserve arrays when converting the written XML back to JSON.
7084             </param>
7085             <returns>The deserialized XmlNode</returns>
7086         </member>
7087         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
7088             <summary>
7089             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
7090             </summary>
7091             <param name="node">The node to convert to JSON.</param>
7092             <returns>A JSON string of the XNode.</returns>
7093         </member>
7094         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
7095             <summary>
7096             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
7097             </summary>
7098             <param name="node">The node to convert to JSON.</param>
7099             <param name="formatting">Indicates how the output is formatted.</param>
7100             <returns>A JSON string of the XNode.</returns>
7101         </member>
7102         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
7103             <summary>
7104             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>.
7105             </summary>
7106             <param name="node">The node to serialize.</param>
7107             <param name="formatting">Indicates how the output is formatted.</param>
7108             <param name="omitRootObject">Omits writing the root object.</param>
7109             <returns>A JSON string of the XNode.</returns>
7110         </member>
7111         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
7112             <summary>
7113             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
7114             </summary>
7115             <param name="value">The JSON string.</param>
7116             <returns>The deserialized XNode</returns>
7117         </member>
7118         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
7119             <summary>
7120             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
7121             </summary>
7122             <param name="value">The JSON string.</param>
7123             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7124             <returns>The deserialized XNode</returns>
7125         </member>
7126         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
7127             <summary>
7128             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
7129             and writes a .NET array attribute for collections.
7130             </summary>
7131             <param name="value">The JSON string.</param>
7132             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7133             <param name="writeArrayAttribute">
7134             A flag to indicate whether to write the Json.NET array attribute.
7135             This attribute helps preserve arrays when converting the written XML back to JSON.
7136             </param>
7137             <returns>The deserialized XNode</returns>
7138         </member>
7139         <member name="T:Newtonsoft.Json.JsonSerializationException">
7140             <summary>
7141             The exception thrown when an error occurs during JSON serialization or deserialization.
7142             </summary>
7143         </member>
7144         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
7145             <summary>
7146             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
7147             </summary>
7148         </member>
7149         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
7150             <summary>
7151             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7152             with a specified error message.
7153             </summary>
7154             <param name="message">The error message that explains the reason for the exception.</param>
7155         </member>
7156         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
7157             <summary>
7158             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7159             with a specified error message and a reference to the inner exception that is the cause of this exception.
7160             </summary>
7161             <param name="message">The error message that explains the reason for the exception.</param>
7162             <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>
7163         </member>
7164         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7165             <summary>
7166             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
7167             </summary>
7168             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7169             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7170             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7171             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7172         </member>
7173         <member name="T:Newtonsoft.Json.JsonSerializer">
7174             <summary>
7175             Serializes and deserializes objects into and from the JSON format.
7176             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
7177             </summary>
7178         </member>
7179         <member name="E:Newtonsoft.Json.JsonSerializer.Error">
7180             <summary>
7181             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
7182             </summary>
7183         </member>
7184         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
7185             <summary>
7186             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
7187             </summary>
7188         </member>
7189         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
7190             <summary>
7191             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
7192             </summary>
7193         </member>
7194         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
7195             <summary>
7196             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
7197             </summary>
7198             <value>The trace writer.</value>
7199         </member>
7200         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
7201             <summary>
7202             Gets or sets the equality comparer used by the serializer when comparing references.
7203             </summary>
7204             <value>The equality comparer.</value>
7205         </member>
7206         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
7207             <summary>
7208             Gets or sets how type name writing and reading is handled by the serializer.
7209             </summary>
7210         </member>
7211         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
7212             <summary>
7213             Gets or sets how a type name assembly is written and resolved by the serializer.
7214             </summary>
7215             <value>The type name assembly format.</value>
7216         </member>
7217         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
7218             <summary>
7219             Gets or sets how object references are preserved by the serializer.
7220             </summary>
7221         </member>
7222         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
7223             <summary>
7224             Get or set how reference loops (e.g. a class referencing itself) is handled.
7225             </summary>
7226         </member>
7227         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
7228             <summary>
7229             Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
7230             </summary>
7231         </member>
7232         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
7233             <summary>
7234             Get or set how null values are handled during serialization and deserialization.
7235             </summary>
7236         </member>
7237         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
7238             <summary>
7239             Get or set how null default are handled during serialization and deserialization.
7240             </summary>
7241         </member>
7242         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
7243             <summary>
7244             Gets or sets how objects are created during deserialization.
7245             </summary>
7246             <value>The object creation handling.</value>
7247         </member>
7248         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
7249             <summary>
7250             Gets or sets how constructors are used during deserialization.
7251             </summary>
7252             <value>The constructor handling.</value>
7253         </member>
7254         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
7255             <summary>
7256             Gets or sets how metadata properties are used during deserialization.
7257             </summary>
7258             <value>The metadata properties handling.</value>
7259         </member>
7260         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
7261             <summary>
7262             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
7263             </summary>
7264             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
7265         </member>
7266         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
7267             <summary>
7268             Gets or sets the contract resolver used by the serializer when
7269             serializing .NET objects to JSON and vice versa.
7270             </summary>
7271         </member>
7272         <member name="P:Newtonsoft.Json.JsonSerializer.Context">
7273             <summary>
7274             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
7275             </summary>
7276             <value>The context.</value>
7277         </member>
7278         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
7279             <summary>
7280             Indicates how JSON text output is formatted.
7281             </summary>
7282         </member>
7283         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
7284             <summary>
7285             Get or set how dates are written to JSON text.
7286             </summary>
7287         </member>
7288         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
7289             <summary>
7290             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
7291             </summary>
7292         </member>
7293         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
7294             <summary>
7295             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
7296             </summary>
7297         </member>
7298         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
7299             <summary>
7300             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
7301             </summary>
7302         </member>
7303         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
7304             <summary>
7305             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
7306             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
7307             are written as JSON text.
7308             </summary>
7309         </member>
7310         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
7311             <summary>
7312             Get or set how strings are escaped when writing JSON text.
7313             </summary>
7314         </member>
7315         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
7316             <summary>
7317             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.
7318             </summary>
7319         </member>
7320         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
7321             <summary>
7322             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
7323             </summary>
7324         </member>
7325         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
7326             <summary>
7327             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
7328             </summary>
7329         </member>
7330         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
7331             <summary>
7332             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
7333             </summary>
7334             <value>
7335                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
7336             </value>
7337         </member>
7338         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
7339             <summary>
7340             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
7341             </summary>
7342         </member>
7343         <member name="M:Newtonsoft.Json.JsonSerializer.Create">
7344             <summary>
7345             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7346             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7347             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7348             </summary>
7349             <returns>
7350             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7351             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7352             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7353             </returns>
7354         </member>
7355         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
7356             <summary>
7357             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7358             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7359             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7360             </summary>
7361             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7362             <returns>
7363             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7364             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7365             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7366             </returns>
7367         </member>
7368         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
7369             <summary>
7370             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7371             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7372             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7373             </summary>
7374             <returns>
7375             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7376             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7377             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7378             </returns>
7379         </member>
7380         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
7381             <summary>
7382             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7383             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7384             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7385             </summary>
7386             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7387             <returns>
7388             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7389             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7390             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7391             </returns>
7392         </member>
7393         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
7394             <summary>
7395             Populates the JSON values onto the target object.
7396             </summary>
7397             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
7398             <param name="target">The target object to populate values onto.</param>
7399         </member>
7400         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
7401             <summary>
7402             Populates the JSON values onto the target object.
7403             </summary>
7404             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
7405             <param name="target">The target object to populate values onto.</param>
7406         </member>
7407         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
7408             <summary>
7409             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7410             </summary>
7411             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
7412             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
7413         </member>
7414         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
7415             <summary>
7416             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
7417             into an instance of the specified type.
7418             </summary>
7419             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
7420             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7421             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7422         </member>
7423         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
7424             <summary>
7425             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7426             into an instance of the specified type.
7427             </summary>
7428             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7429             <typeparam name="T">The type of the object to deserialize.</typeparam>
7430             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
7431         </member>
7432         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
7433             <summary>
7434             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7435             into an instance of the specified type.
7436             </summary>
7437             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7438             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7439             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7440         </member>
7441         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
7442             <summary>
7443             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7444             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7445             </summary>
7446             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7447             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7448         </member>
7449         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
7450             <summary>
7451             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7452             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7453             </summary>
7454             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7455             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7456             <param name="objectType">
7457             The type of the value being serialized.
7458             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.
7459             Specifing the type is optional.
7460             </param>
7461         </member>
7462         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
7463             <summary>
7464             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7465             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
7466             </summary>
7467             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7468             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7469             <param name="objectType">
7470             The type of the value being serialized.
7471             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.
7472             Specifing the type is optional.
7473             </param>
7474         </member>
7475         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
7476             <summary>
7477             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7478             to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
7479             </summary>
7480             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7481             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7482         </member>
7483         <member name="T:Newtonsoft.Json.Schema.Extensions">
7484             <summary>
7485             <para>
7486             Contains the JSON schema extension methods.
7487             </para>
7488             <note type="caution">
7489             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.
7490             </note>
7491             </summary>
7492         </member>
7493         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7494             <summary>
7495             <para>
7496             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7497             </para>
7498             <note type="caution">
7499             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.
7500             </note>
7501             </summary>
7502             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7503             <param name="schema">The schema to test with.</param>
7504             <returns>
7505                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7506             </returns>
7507         </member>
7508         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7509             <summary>
7510             <para>
7511             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7512             </para>
7513             <note type="caution">
7514             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.
7515             </note>
7516             </summary>
7517             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7518             <param name="schema">The schema to test with.</param>
7519             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7520             <returns>
7521                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7522             </returns>
7523         </member>
7524         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7525             <summary>
7526             <para>
7527             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7528             </para>
7529             <note type="caution">
7530             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.
7531             </note>
7532             </summary>
7533             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7534             <param name="schema">The schema to test with.</param>
7535         </member>
7536         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7537             <summary>
7538             <para>
7539             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7540             </para>
7541             <note type="caution">
7542             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.
7543             </note>
7544             </summary>
7545             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7546             <param name="schema">The schema to test with.</param>
7547             <param name="validationEventHandler">The validation event handler.</param>
7548         </member>
7549         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7550             <summary>
7551             <para>
7552             Returns detailed information about the schema exception.
7553             </para>
7554             <note type="caution">
7555             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.
7556             </note>
7557             </summary>
7558         </member>
7559         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7560             <summary>
7561             Gets the line number indicating where the error occurred.
7562             </summary>
7563             <value>The line number indicating where the error occurred.</value>
7564         </member>
7565         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7566             <summary>
7567             Gets the line position indicating where the error occurred.
7568             </summary>
7569             <value>The line position indicating where the error occurred.</value>
7570         </member>
7571         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7572             <summary>
7573             Gets the path to the JSON where the error occurred.
7574             </summary>
7575             <value>The path to the JSON where the error occurred.</value>
7576         </member>
7577         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7578             <summary>
7579             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7580             </summary>
7581         </member>
7582         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7583             <summary>
7584             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7585             with a specified error message.
7586             </summary>
7587             <param name="message">The error message that explains the reason for the exception.</param>
7588         </member>
7589         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7590             <summary>
7591             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7592             with a specified error message and a reference to the inner exception that is the cause of this exception.
7593             </summary>
7594             <param name="message">The error message that explains the reason for the exception.</param>
7595             <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>
7596         </member>
7597         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7598             <summary>
7599             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7600             </summary>
7601             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7602             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7603             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7604             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7605         </member>
7606         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7607             <summary>
7608             <para>
7609             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7610             </para>
7611             <note type="caution">
7612             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.
7613             </note>
7614             </summary>
7615         </member>
7616         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7617             <summary>
7618             Gets or sets the loaded schemas.
7619             </summary>
7620             <value>The loaded schemas.</value>
7621         </member>
7622         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7623             <summary>
7624             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7625             </summary>
7626         </member>
7627         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
7628             <summary>
7629             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
7630             </summary>
7631             <param name="reference">The id.</param>
7632             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7633         </member>
7634         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7635             <summary>
7636             <para>
7637             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
7638             </para>
7639             <note type="caution">
7640             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.
7641             </note>
7642             </summary>
7643         </member>
7644         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
7645             <summary>
7646             Do not infer a schema Id.
7647             </summary>
7648         </member>
7649         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
7650             <summary>
7651             Use the .NET type name as the schema Id.
7652             </summary>
7653         </member>
7654         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
7655             <summary>
7656             Use the assembly qualified .NET type name as the schema Id.
7657             </summary>
7658         </member>
7659         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7660             <summary>
7661             <para>
7662             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
7663             </para>
7664             <note type="caution">
7665             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.
7666             </note>
7667             </summary>
7668         </member>
7669         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
7670             <summary>
7671             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
7672             </summary>
7673             <value>The JsonSchemaException associated with the validation error.</value>
7674         </member>
7675         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
7676             <summary>
7677             Gets the path of the JSON location where the validation error occurred.
7678             </summary>
7679             <value>The path of the JSON location where the validation error occurred.</value>
7680         </member>
7681         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
7682             <summary>
7683             Gets the text description corresponding to the validation error.
7684             </summary>
7685             <value>The text description.</value>
7686         </member>
7687         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7688             <summary>
7689             <para>
7690             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
7691             </para>
7692             <note type="caution">
7693             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.
7694             </note>
7695             </summary>
7696         </member>
7697         <member name="T:Newtonsoft.Json.Schema.JsonSchema">
7698             <summary>
7699             <para>
7700             An in-memory representation of a JSON Schema.
7701             </para>
7702             <note type="caution">
7703             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.
7704             </note>
7705             </summary>
7706         </member>
7707         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
7708             <summary>
7709             Gets or sets the id.
7710             </summary>
7711         </member>
7712         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
7713             <summary>
7714             Gets or sets the title.
7715             </summary>
7716         </member>
7717         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
7718             <summary>
7719             Gets or sets whether the object is required.
7720             </summary>
7721         </member>
7722         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
7723             <summary>
7724             Gets or sets whether the object is read only.
7725             </summary>
7726         </member>
7727         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
7728             <summary>
7729             Gets or sets whether the object is visible to users.
7730             </summary>
7731         </member>
7732         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
7733             <summary>
7734             Gets or sets whether the object is transient.
7735             </summary>
7736         </member>
7737         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
7738             <summary>
7739             Gets or sets the description of the object.
7740             </summary>
7741         </member>
7742         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
7743             <summary>
7744             Gets or sets the types of values allowed by the object.
7745             </summary>
7746             <value>The type.</value>
7747         </member>
7748         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
7749             <summary>
7750             Gets or sets the pattern.
7751             </summary>
7752             <value>The pattern.</value>
7753         </member>
7754         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
7755             <summary>
7756             Gets or sets the minimum length.
7757             </summary>
7758             <value>The minimum length.</value>
7759         </member>
7760         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
7761             <summary>
7762             Gets or sets the maximum length.
7763             </summary>
7764             <value>The maximum length.</value>
7765         </member>
7766         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
7767             <summary>
7768             Gets or sets a number that the value should be divisble by.
7769             </summary>
7770             <value>A number that the value should be divisble by.</value>
7771         </member>
7772         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
7773             <summary>
7774             Gets or sets the minimum.
7775             </summary>
7776             <value>The minimum.</value>
7777         </member>
7778         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
7779             <summary>
7780             Gets or sets the maximum.
7781             </summary>
7782             <value>The maximum.</value>
7783         </member>
7784         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
7785             <summary>
7786             Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
7787             </summary>
7788             <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
7789         </member>
7790         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
7791             <summary>
7792             Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
7793             </summary>
7794             <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7795         </member>
7796         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
7797             <summary>
7798             Gets or sets the minimum number of items.
7799             </summary>
7800             <value>The minimum number of items.</value>
7801         </member>
7802         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
7803             <summary>
7804             Gets or sets the maximum number of items.
7805             </summary>
7806             <value>The maximum number of items.</value>
7807         </member>
7808         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
7809             <summary>
7810             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
7811             </summary>
7812             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
7813         </member>
7814         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
7815             <summary>
7816             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"/>.
7817             </summary>
7818             <value>
7819                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7820             </value>
7821         </member>
7822         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
7823             <summary>
7824             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
7825             </summary>
7826             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
7827         </member>
7828         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
7829             <summary>
7830             Gets or sets a value indicating whether additional items are allowed.
7831             </summary>
7832             <value>
7833                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7834             </value>
7835         </member>
7836         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
7837             <summary>
7838             Gets or sets whether the array items must be unique.
7839             </summary>
7840         </member>
7841         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
7842             <summary>
7843             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
7844             </summary>
7845             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
7846         </member>
7847         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
7848             <summary>
7849             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
7850             </summary>
7851             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
7852         </member>
7853         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
7854             <summary>
7855             Gets or sets the pattern properties.
7856             </summary>
7857             <value>The pattern properties.</value>
7858         </member>
7859         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
7860             <summary>
7861             Gets or sets a value indicating whether additional properties are allowed.
7862             </summary>
7863             <value>
7864                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
7865             </value>
7866         </member>
7867         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
7868             <summary>
7869             Gets or sets the required property if this property is present.
7870             </summary>
7871             <value>The required property if this property is present.</value>
7872         </member>
7873         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
7874             <summary>
7875             Gets or sets the a collection of valid enum values allowed.
7876             </summary>
7877             <value>A collection of valid enum values allowed.</value>
7878         </member>
7879         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
7880             <summary>
7881             Gets or sets disallowed types.
7882             </summary>
7883             <value>The disallow types.</value>
7884         </member>
7885         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
7886             <summary>
7887             Gets or sets the default value.
7888             </summary>
7889             <value>The default value.</value>
7890         </member>
7891         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
7892             <summary>
7893             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
7894             </summary>
7895             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
7896         </member>
7897         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
7898             <summary>
7899             Gets or sets the format.
7900             </summary>
7901             <value>The format.</value>
7902         </member>
7903         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
7904             <summary>
7905             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
7906             </summary>
7907         </member>
7908         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
7909             <summary>
7910             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7911             </summary>
7912             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7913             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7914         </member>
7915         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7916             <summary>
7917             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7918             </summary>
7919             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7920             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7921             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7922         </member>
7923         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
7924             <summary>
7925             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
7926             </summary>
7927             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7928             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7929         </member>
7930         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7931             <summary>
7932             Parses the specified json.
7933             </summary>
7934             <param name="json">The json.</param>
7935             <param name="resolver">The resolver.</param>
7936             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7937         </member>
7938         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
7939             <summary>
7940             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7941             </summary>
7942             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7943         </member>
7944         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7945             <summary>
7946             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
7947             </summary>
7948             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7949             <param name="resolver">The resolver used.</param>
7950         </member>
7951         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
7952             <summary>
7953             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7954             </summary>
7955             <returns>
7956             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7957             </returns>
7958         </member>
7959         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7960             <summary>
7961             <para>
7962             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
7963             </para>
7964             <note type="caution">
7965             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.
7966             </note>
7967             </summary>
7968         </member>
7969         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7970             <summary>
7971             Gets or sets how undefined schemas are handled by the serializer.
7972             </summary>
7973         </member>
7974         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7975             <summary>
7976             Gets or sets the contract resolver.
7977             </summary>
7978             <value>The contract resolver.</value>
7979         </member>
7980         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
7981             <summary>
7982             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7983             </summary>
7984             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7985             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7986         </member>
7987         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
7988             <summary>
7989             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7990             </summary>
7991             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
7992             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
7993             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
7994         </member>
7995         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
7996             <summary>
7997             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
7998             </summary>
7999             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8000             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8001             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8002         </member>
8003         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8004             <summary>
8005             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8006             </summary>
8007             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8008             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8009             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8010             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8011         </member>
8012         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8013             <summary>
8014             <para>
8015             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8016             </para>
8017             <note type="caution">
8018             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.
8019             </note>
8020             </summary>
8021         </member>
8022         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8023             <summary>
8024             No type specified.
8025             </summary>
8026         </member>
8027         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8028             <summary>
8029             String type.
8030             </summary>
8031         </member>
8032         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8033             <summary>
8034             Float type.
8035             </summary>
8036         </member>
8037         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8038             <summary>
8039             Integer type.
8040             </summary>
8041         </member>
8042         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8043             <summary>
8044             Boolean type.
8045             </summary>
8046         </member>
8047         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8048             <summary>
8049             Object type.
8050             </summary>
8051         </member>
8052         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8053             <summary>
8054             Array type.
8055             </summary>
8056         </member>
8057         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8058             <summary>
8059             Null type.
8060             </summary>
8061         </member>
8062         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8063             <summary>
8064             Any type.
8065             </summary>
8066         </member>
8067         <member name="T:Newtonsoft.Json.MissingMemberHandling">
8068             <summary>
8069             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8070             </summary>
8071         </member>
8072         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8073             <summary>
8074             Ignore a missing member and do not attempt to deserialize it.
8075             </summary>
8076         </member>
8077         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8078             <summary>
8079             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8080             </summary>
8081         </member>
8082         <member name="T:Newtonsoft.Json.NullValueHandling">
8083             <summary>
8084             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8085             </summary>
8086             <example>
8087               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8088               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8089             </example>
8090         </member>
8091         <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8092             <summary>
8093             Include null values when serializing and deserializing objects.
8094             </summary>
8095         </member>
8096         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8097             <summary>
8098             Ignore null values when serializing and deserializing objects.
8099             </summary>
8100         </member>
8101         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8102             <summary>
8103             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8104             </summary>
8105         </member>
8106         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8107             <summary>
8108             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8109             </summary>
8110         </member>
8111         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8112             <summary>
8113             Ignore loop references and do not serialize.
8114             </summary>
8115         </member>
8116         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8117             <summary>
8118             Serialize loop references.
8119             </summary>
8120         </member>
8121         <member name="T:Newtonsoft.Json.TypeNameHandling">
8122             <summary>
8123             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8124             </summary>
8125         </member>
8126         <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8127             <summary>
8128             Do not include the .NET type name when serializing types.
8129             </summary>
8130         </member>
8131         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8132             <summary>
8133             Include the .NET type name when serializing into a JSON object structure.
8134             </summary>
8135         </member>
8136         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8137             <summary>
8138             Include the .NET type name when serializing into a JSON array structure.
8139             </summary>
8140         </member>
8141         <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8142             <summary>
8143             Always include the .NET type name when serializing.
8144             </summary>
8145         </member>
8146         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8147             <summary>
8148             Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8149             </summary>
8150         </member>
8151         <member name="T:Newtonsoft.Json.JsonToken">
8152             <summary>
8153             Specifies the type of JSON token.
8154             </summary>
8155         </member>
8156         <member name="F:Newtonsoft.Json.JsonToken.None">
8157             <summary>
8158             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. 
8159             </summary>
8160         </member>
8161         <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8162             <summary>
8163             An object start token.
8164             </summary>
8165         </member>
8166         <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8167             <summary>
8168             An array start token.
8169             </summary>
8170         </member>
8171         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8172             <summary>
8173             A constructor start token.
8174             </summary>
8175         </member>
8176         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8177             <summary>
8178             An object property name.
8179             </summary>
8180         </member>
8181         <member name="F:Newtonsoft.Json.JsonToken.Comment">
8182             <summary>
8183             A comment.
8184             </summary>
8185         </member>
8186         <member name="F:Newtonsoft.Json.JsonToken.Raw">
8187             <summary>
8188             Raw JSON.
8189             </summary>
8190         </member>
8191         <member name="F:Newtonsoft.Json.JsonToken.Integer">
8192             <summary>
8193             An integer.
8194             </summary>
8195         </member>
8196         <member name="F:Newtonsoft.Json.JsonToken.Float">
8197             <summary>
8198             A float.
8199             </summary>
8200         </member>
8201         <member name="F:Newtonsoft.Json.JsonToken.String">
8202             <summary>
8203             A string.
8204             </summary>
8205         </member>
8206         <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8207             <summary>
8208             A boolean.
8209             </summary>
8210         </member>
8211         <member name="F:Newtonsoft.Json.JsonToken.Null">
8212             <summary>
8213             A null token.
8214             </summary>
8215         </member>
8216         <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8217             <summary>
8218             An undefined token.
8219             </summary>
8220         </member>
8221         <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8222             <summary>
8223             An object end token.
8224             </summary>
8225         </member>
8226         <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8227             <summary>
8228             An array end token.
8229             </summary>
8230         </member>
8231         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8232             <summary>
8233             A constructor end token.
8234             </summary>
8235         </member>
8236         <member name="F:Newtonsoft.Json.JsonToken.Date">
8237             <summary>
8238             A Date.
8239             </summary>
8240         </member>
8241         <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8242             <summary>
8243             Byte data.
8244             </summary>
8245         </member>
8246         <member name="T:Newtonsoft.Json.JsonWriter">
8247             <summary>
8248             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
8249             </summary>
8250         </member>
8251         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
8252             <summary>
8253             Gets or sets a value indicating whether the underlying stream or
8254             <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
8255             </summary>
8256             <value>
8257             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
8258             the writer is closed; otherwise false. The default is true.
8259             </value>
8260         </member>
8261         <member name="P:Newtonsoft.Json.JsonWriter.Top">
8262             <summary>
8263             Gets the top.
8264             </summary>
8265             <value>The top.</value>
8266         </member>
8267         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
8268             <summary>
8269             Gets the state of the writer.
8270             </summary>
8271         </member>
8272         <member name="P:Newtonsoft.Json.JsonWriter.Path">
8273             <summary>
8274             Gets the path of the writer. 
8275             </summary>
8276         </member>
8277         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
8278             <summary>
8279             Indicates how JSON text output is formatted.
8280             </summary>
8281         </member>
8282         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
8283             <summary>
8284             Get or set how dates are written to JSON text.
8285             </summary>
8286         </member>
8287         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
8288             <summary>
8289             Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
8290             </summary>
8291         </member>
8292         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
8293             <summary>
8294             Get or set how strings are escaped when writing JSON text.
8295             </summary>
8296         </member>
8297         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
8298             <summary>
8299             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
8300             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
8301             are written to JSON text.
8302             </summary>
8303         </member>
8304         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
8305             <summary>
8306             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
8307             </summary>
8308         </member>
8309         <member name="P:Newtonsoft.Json.JsonWriter.Culture">
8310             <summary>
8311             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
8312             </summary>
8313         </member>
8314         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
8315             <summary>
8316             Creates an instance of the <c>JsonWriter</c> class. 
8317             </summary>
8318         </member>
8319         <member name="M:Newtonsoft.Json.JsonWriter.Flush">
8320             <summary>
8321             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
8322             </summary>
8323         </member>
8324         <member name="M:Newtonsoft.Json.JsonWriter.Close">
8325             <summary>
8326             Closes this stream and the underlying stream.
8327             </summary>
8328         </member>
8329         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
8330             <summary>
8331             Writes the beginning of a JSON object.
8332             </summary>
8333         </member>
8334         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
8335             <summary>
8336             Writes the end of a JSON object.
8337             </summary>
8338         </member>
8339         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
8340             <summary>
8341             Writes the beginning of a JSON array.
8342             </summary>
8343         </member>
8344         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
8345             <summary>
8346             Writes the end of an array.
8347             </summary>
8348         </member>
8349         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
8350             <summary>
8351             Writes the start of a constructor with the given name.
8352             </summary>
8353             <param name="name">The name of the constructor.</param>
8354         </member>
8355         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
8356             <summary>
8357             Writes the end constructor.
8358             </summary>
8359         </member>
8360         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
8361             <summary>
8362             Writes the property name of a name/value pair on a JSON object.
8363             </summary>
8364             <param name="name">The name of the property.</param>
8365         </member>
8366         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
8367             <summary>
8368             Writes the property name of a name/value pair on a JSON object.
8369             </summary>
8370             <param name="name">The name of the property.</param>
8371             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
8372         </member>
8373         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
8374             <summary>
8375             Writes the end of the current JSON object or array.
8376             </summary>
8377         </member>
8378         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
8379             <summary>
8380             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
8381             </summary>
8382             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8383         </member>
8384         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
8385             <summary>
8386             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
8387             </summary>
8388             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8389             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
8390         </member>
8391         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
8392             <summary>
8393             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
8394             </summary>
8395             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8396             <param name="value">
8397             The value to write.
8398             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"/>.
8399             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>
8400         </member>
8401         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
8402             <summary>
8403             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
8404             </summary>
8405             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8406         </member>
8407         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
8408             <summary>
8409             Writes the specified end token.
8410             </summary>
8411             <param name="token">The end token to write.</param>
8412         </member>
8413         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
8414             <summary>
8415             Writes indent characters.
8416             </summary>
8417         </member>
8418         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
8419             <summary>
8420             Writes the JSON value delimiter.
8421             </summary>
8422         </member>
8423         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
8424             <summary>
8425             Writes an indent space.
8426             </summary>
8427         </member>
8428         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
8429             <summary>
8430             Writes a null value.
8431             </summary>
8432         </member>
8433         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
8434             <summary>
8435             Writes an undefined value.
8436             </summary>
8437         </member>
8438         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
8439             <summary>
8440             Writes raw JSON without changing the writer's state.
8441             </summary>
8442             <param name="json">The raw JSON to write.</param>
8443         </member>
8444         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
8445             <summary>
8446             Writes raw JSON where a value is expected and updates the writer's state.
8447             </summary>
8448             <param name="json">The raw JSON to write.</param>
8449         </member>
8450         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
8451             <summary>
8452             Writes a <see cref="T:System.String"/> value.
8453             </summary>
8454             <param name="value">The <see cref="T:System.String"/> value to write.</param>
8455         </member>
8456         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
8457             <summary>
8458             Writes a <see cref="T:System.Int32"/> value.
8459             </summary>
8460             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
8461         </member>
8462         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
8463             <summary>
8464             Writes a <see cref="T:System.UInt32"/> value.
8465             </summary>
8466             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
8467         </member>
8468         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
8469             <summary>
8470             Writes a <see cref="T:System.Int64"/> value.
8471             </summary>
8472             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
8473         </member>
8474         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
8475             <summary>
8476             Writes a <see cref="T:System.UInt64"/> value.
8477             </summary>
8478             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
8479         </member>
8480         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
8481             <summary>
8482             Writes a <see cref="T:System.Single"/> value.
8483             </summary>
8484             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
8485         </member>
8486         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
8487             <summary>
8488             Writes a <see cref="T:System.Double"/> value.
8489             </summary>
8490             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
8491         </member>
8492         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
8493             <summary>
8494             Writes a <see cref="T:System.Boolean"/> value.
8495             </summary>
8496             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
8497         </member>
8498         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
8499             <summary>
8500             Writes a <see cref="T:System.Int16"/> value.
8501             </summary>
8502             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
8503         </member>
8504         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
8505             <summary>
8506             Writes a <see cref="T:System.UInt16"/> value.
8507             </summary>
8508             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
8509         </member>
8510         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
8511             <summary>
8512             Writes a <see cref="T:System.Char"/> value.
8513             </summary>
8514             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
8515         </member>
8516         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
8517             <summary>
8518             Writes a <see cref="T:System.Byte"/> value.
8519             </summary>
8520             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
8521         </member>
8522         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
8523             <summary>
8524             Writes a <see cref="T:System.SByte"/> value.
8525             </summary>
8526             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
8527         </member>
8528         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
8529             <summary>
8530             Writes a <see cref="T:System.Decimal"/> value.
8531             </summary>
8532             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
8533         </member>
8534         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
8535             <summary>
8536             Writes a <see cref="T:System.DateTime"/> value.
8537             </summary>
8538             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
8539         </member>
8540         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
8541             <summary>
8542             Writes a <see cref="T:System.DateTimeOffset"/> value.
8543             </summary>
8544             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
8545         </member>
8546         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
8547             <summary>
8548             Writes a <see cref="T:System.Guid"/> value.
8549             </summary>
8550             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
8551         </member>
8552         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
8553             <summary>
8554             Writes a <see cref="T:System.TimeSpan"/> value.
8555             </summary>
8556             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
8557         </member>
8558         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
8559             <summary>
8560             Writes a <see cref="T:System.Nullable`1"/> value.
8561             </summary>
8562             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8563         </member>
8564         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
8565             <summary>
8566             Writes a <see cref="T:System.Nullable`1"/> value.
8567             </summary>
8568             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8569         </member>
8570         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
8571             <summary>
8572             Writes a <see cref="T:System.Nullable`1"/> value.
8573             </summary>
8574             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8575         </member>
8576         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
8577             <summary>
8578             Writes a <see cref="T:System.Nullable`1"/> value.
8579             </summary>
8580             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8581         </member>
8582         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
8583             <summary>
8584             Writes a <see cref="T:System.Nullable`1"/> value.
8585             </summary>
8586             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8587         </member>
8588         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
8589             <summary>
8590             Writes a <see cref="T:System.Nullable`1"/> value.
8591             </summary>
8592             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8593         </member>
8594         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
8595             <summary>
8596             Writes a <see cref="T:System.Nullable`1"/> value.
8597             </summary>
8598             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8599         </member>
8600         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
8601             <summary>
8602             Writes a <see cref="T:System.Nullable`1"/> value.
8603             </summary>
8604             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8605         </member>
8606         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
8607             <summary>
8608             Writes a <see cref="T:System.Nullable`1"/> value.
8609             </summary>
8610             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8611         </member>
8612         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
8613             <summary>
8614             Writes a <see cref="T:System.Nullable`1"/> value.
8615             </summary>
8616             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8617         </member>
8618         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
8619             <summary>
8620             Writes a <see cref="T:System.Nullable`1"/> value.
8621             </summary>
8622             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8623         </member>
8624         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
8625             <summary>
8626             Writes a <see cref="T:System.Nullable`1"/> value.
8627             </summary>
8628             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8629         </member>
8630         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
8631             <summary>
8632             Writes a <see cref="T:System.Nullable`1"/> value.
8633             </summary>
8634             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8635         </member>
8636         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
8637             <summary>
8638             Writes a <see cref="T:System.Nullable`1"/> value.
8639             </summary>
8640             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8641         </member>
8642         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
8643             <summary>
8644             Writes a <see cref="T:System.Nullable`1"/> value.
8645             </summary>
8646             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8647         </member>
8648         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
8649             <summary>
8650             Writes a <see cref="T:System.Nullable`1"/> value.
8651             </summary>
8652             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8653         </member>
8654         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
8655             <summary>
8656             Writes a <see cref="T:System.Nullable`1"/> value.
8657             </summary>
8658             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
8659         </member>
8660         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
8661             <summary>
8662             Writes a <see cref="T:System.Byte"/>[] value.
8663             </summary>
8664             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
8665         </member>
8666         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
8667             <summary>
8668             Writes a <see cref="T:System.Uri"/> value.
8669             </summary>
8670             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
8671         </member>
8672         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
8673             <summary>
8674             Writes a <see cref="T:System.Object"/> value.
8675             An error will raised if the value cannot be written as a single JSON token.
8676             </summary>
8677             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
8678         </member>
8679         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
8680             <summary>
8681             Writes out a comment <code>/*...*/</code> containing the specified text. 
8682             </summary>
8683             <param name="text">Text to place inside the comment.</param>
8684         </member>
8685         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
8686             <summary>
8687             Writes out the given white space.
8688             </summary>
8689             <param name="ws">The string of white space characters.</param>
8690         </member>
8691         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
8692             <summary>
8693             Sets the state of the JsonWriter,
8694             </summary>
8695             <param name="token">The JsonToken being written.</param>
8696             <param name="value">The value being written.</param>
8697         </member>
8698         <member name="T:Newtonsoft.Json.WriteState">
8699             <summary>
8700             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8701             </summary>
8702         </member>
8703         <member name="F:Newtonsoft.Json.WriteState.Error">
8704             <summary>
8705             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8706             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.
8707             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
8708             </summary>
8709         </member>
8710         <member name="F:Newtonsoft.Json.WriteState.Closed">
8711             <summary>
8712             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
8713             </summary>
8714         </member>
8715         <member name="F:Newtonsoft.Json.WriteState.Object">
8716             <summary>
8717             An object is being written. 
8718             </summary>
8719         </member>
8720         <member name="F:Newtonsoft.Json.WriteState.Array">
8721             <summary>
8722             A array is being written.
8723             </summary>
8724         </member>
8725         <member name="F:Newtonsoft.Json.WriteState.Constructor">
8726             <summary>
8727             A constructor is being written.
8728             </summary>
8729         </member>
8730         <member name="F:Newtonsoft.Json.WriteState.Property">
8731             <summary>
8732             A property is being written.
8733             </summary>
8734         </member>
8735         <member name="F:Newtonsoft.Json.WriteState.Start">
8736             <summary>
8737             A write method has not been called.
8738             </summary>
8739         </member>
8740     </members>
8741 </doc>