[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / newtonsoft.json / 10.0.1 / lib / net40 / Newtonsoft.Json.xml
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Newtonsoft.Json</name>
5     </assembly>
6     <members>
7         <member name="T:Newtonsoft.Json.Bson.BsonReader">
8             <summary>
9             Represents a reader that provides fast, non-cached, forward-only access to serialized BSON 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 be 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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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.Read">
63             <summary>
64             Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
65             </summary>
66             <returns>
67             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
68             </returns>
69         </member>
70         <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
71             <summary>
72             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
73             If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
74             </summary>
75         </member>
76         <member name="T:Newtonsoft.Json.Bson.BsonWriter">
77             <summary>
78             Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
79             </summary>
80         </member>
81         <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
82             <summary>
83             Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
84             When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
85             </summary>
86             <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
87         </member>
88         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
89             <summary>
90             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
91             </summary>
92             <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
93         </member>
94         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
95             <summary>
96             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
97             </summary>
98             <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
99         </member>
100         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
101             <summary>
102             Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
103             </summary>
104         </member>
105         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
106             <summary>
107             Writes the end.
108             </summary>
109             <param name="token">The token.</param>
110         </member>
111         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
112             <summary>
113             Writes a comment <c>/*...*/</c> containing the specified text.
114             </summary>
115             <param name="text">Text to place inside the comment.</param>
116         </member>
117         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
118             <summary>
119             Writes the start of a constructor with the given name.
120             </summary>
121             <param name="name">The name of the constructor.</param>
122         </member>
123         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
124             <summary>
125             Writes raw JSON.
126             </summary>
127             <param name="json">The raw JSON to write.</param>
128         </member>
129         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
130             <summary>
131             Writes raw JSON where a value is expected and updates the writer's state.
132             </summary>
133             <param name="json">The raw JSON to write.</param>
134         </member>
135         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
136             <summary>
137             Writes the beginning of a JSON array.
138             </summary>
139         </member>
140         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
141             <summary>
142             Writes the beginning of a JSON object.
143             </summary>
144         </member>
145         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
146             <summary>
147             Writes the property name of a name/value pair on a JSON object.
148             </summary>
149             <param name="name">The name of the property.</param>
150         </member>
151         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
152             <summary>
153             Closes this writer.
154             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
155             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
156             </summary>
157         </member>
158         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
159             <summary>
160             Writes a <see cref="T:System.Object"/> value.
161             An error will raised if the value cannot be written as a single JSON token.
162             </summary>
163             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
164         </member>
165         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
166             <summary>
167             Writes a null value.
168             </summary>
169         </member>
170         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
171             <summary>
172             Writes an undefined value.
173             </summary>
174         </member>
175         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
176             <summary>
177             Writes a <see cref="T:System.String"/> value.
178             </summary>
179             <param name="value">The <see cref="T:System.String"/> value to write.</param>
180         </member>
181         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
182             <summary>
183             Writes a <see cref="T:System.Int32"/> value.
184             </summary>
185             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
186         </member>
187         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
188             <summary>
189             Writes a <see cref="T:System.UInt32"/> value.
190             </summary>
191             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
192         </member>
193         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
194             <summary>
195             Writes a <see cref="T:System.Int64"/> value.
196             </summary>
197             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
198         </member>
199         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
200             <summary>
201             Writes a <see cref="T:System.UInt64"/> value.
202             </summary>
203             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
204         </member>
205         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
206             <summary>
207             Writes a <see cref="T:System.Single"/> value.
208             </summary>
209             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
210         </member>
211         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
212             <summary>
213             Writes a <see cref="T:System.Double"/> value.
214             </summary>
215             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
216         </member>
217         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
218             <summary>
219             Writes a <see cref="T:System.Boolean"/> value.
220             </summary>
221             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
222         </member>
223         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
224             <summary>
225             Writes a <see cref="T:System.Int16"/> value.
226             </summary>
227             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
228         </member>
229         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
230             <summary>
231             Writes a <see cref="T:System.UInt16"/> value.
232             </summary>
233             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
234         </member>
235         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
236             <summary>
237             Writes a <see cref="T:System.Char"/> value.
238             </summary>
239             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
240         </member>
241         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
242             <summary>
243             Writes a <see cref="T:System.Byte"/> value.
244             </summary>
245             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
246         </member>
247         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
248             <summary>
249             Writes a <see cref="T:System.SByte"/> value.
250             </summary>
251             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
252         </member>
253         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
254             <summary>
255             Writes a <see cref="T:System.Decimal"/> value.
256             </summary>
257             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
258         </member>
259         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
260             <summary>
261             Writes a <see cref="T:System.DateTime"/> value.
262             </summary>
263             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
264         </member>
265         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
266             <summary>
267             Writes a <see cref="T:System.DateTimeOffset"/> value.
268             </summary>
269             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
270         </member>
271         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
272             <summary>
273             Writes a <see cref="T:System.Byte"/>[] value.
274             </summary>
275             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
276         </member>
277         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
278             <summary>
279             Writes a <see cref="T:System.Guid"/> value.
280             </summary>
281             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
282         </member>
283         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
284             <summary>
285             Writes a <see cref="T:System.TimeSpan"/> value.
286             </summary>
287             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
288         </member>
289         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
290             <summary>
291             Writes a <see cref="T:System.Uri"/> value.
292             </summary>
293             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
294         </member>
295         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
296             <summary>
297             Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
298             </summary>
299             <param name="value">The Object ID value to write.</param>
300         </member>
301         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
302             <summary>
303             Writes a BSON regex.
304             </summary>
305             <param name="pattern">The regex pattern.</param>
306             <param name="options">The regex options.</param>
307         </member>
308         <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
309             <summary>
310             Represents a BSON Oid (object id).
311             </summary>
312         </member>
313         <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
314             <summary>
315             Gets or sets the value of the Oid.
316             </summary>
317             <value>The value of the Oid.</value>
318         </member>
319         <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
320             <summary>
321             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
322             </summary>
323             <param name="value">The Oid value.</param>
324         </member>
325         <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
326             <summary>
327             Converts a binary value to and from a base 64 string value.
328             </summary>
329         </member>
330         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
331             <summary>
332             Writes the JSON representation of the object.
333             </summary>
334             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
335             <param name="value">The value.</param>
336             <param name="serializer">The calling serializer.</param>
337         </member>
338         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
339             <summary>
340             Reads the JSON representation of the object.
341             </summary>
342             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
343             <param name="objectType">Type of the object.</param>
344             <param name="existingValue">The existing value of object being read.</param>
345             <param name="serializer">The calling serializer.</param>
346             <returns>The object value.</returns>
347         </member>
348         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
349             <summary>
350             Determines whether this instance can convert the specified object type.
351             </summary>
352             <param name="objectType">Type of the object.</param>
353             <returns>
354                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
355             </returns>
356         </member>
357         <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
358             <summary>
359             Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
360             </summary>
361         </member>
362         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
363             <summary>
364             Writes the JSON representation of the object.
365             </summary>
366             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
367             <param name="value">The value.</param>
368             <param name="serializer">The calling serializer.</param>
369         </member>
370         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
371             <summary>
372             Reads the JSON representation of the object.
373             </summary>
374             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
375             <param name="objectType">Type of the object.</param>
376             <param name="existingValue">The existing value of object being read.</param>
377             <param name="serializer">The calling serializer.</param>
378             <returns>The object value.</returns>
379         </member>
380         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
381             <summary>
382             Determines whether this instance can convert the specified value type.
383             </summary>
384             <param name="valueType">Type of the value.</param>
385             <returns>
386                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
387             </returns>
388         </member>
389         <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
390             <summary>
391             Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
392             </summary>
393         </member>
394         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
395             <summary>
396             Writes the JSON representation of the object.
397             </summary>
398             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
399             <param name="value">The value.</param>
400             <param name="serializer">The calling serializer.</param>
401         </member>
402         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
403             <summary>
404             Reads the JSON representation of the object.
405             </summary>
406             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
407             <param name="objectType">Type of the object.</param>
408             <param name="existingValue">The existing value of object being read.</param>
409             <param name="serializer">The calling serializer.</param>
410             <returns>The object value.</returns>
411         </member>
412         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
413             <summary>
414             Determines whether this instance can convert the specified value type.
415             </summary>
416             <param name="valueType">Type of the value.</param>
417             <returns>
418                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
419             </returns>
420         </member>
421         <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
422             <summary>
423             Creates a custom object.
424             </summary>
425             <typeparam name="T">The object type to convert.</typeparam>
426         </member>
427         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
428             <summary>
429             Writes the JSON representation of the object.
430             </summary>
431             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
432             <param name="value">The value.</param>
433             <param name="serializer">The calling serializer.</param>
434         </member>
435         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
436             <summary>
437             Reads the JSON representation of the object.
438             </summary>
439             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
440             <param name="objectType">Type of the object.</param>
441             <param name="existingValue">The existing value of object being read.</param>
442             <param name="serializer">The calling serializer.</param>
443             <returns>The object value.</returns>
444         </member>
445         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
446             <summary>
447             Creates an object which will then be populated by the serializer.
448             </summary>
449             <param name="objectType">Type of the object.</param>
450             <returns>The created object.</returns>
451         </member>
452         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
453             <summary>
454             Determines whether this instance can convert the specified object type.
455             </summary>
456             <param name="objectType">Type of the object.</param>
457             <returns>
458                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
459             </returns>
460         </member>
461         <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
462             <summary>
463             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
464             </summary>
465             <value>
466                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
467             </value>
468         </member>
469         <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
470             <summary>
471             Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
472             </summary>
473         </member>
474         <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
475             <summary>
476             Determines whether this instance can convert the specified object type.
477             </summary>
478             <param name="objectType">Type of the object.</param>
479             <returns>
480                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
481             </returns>
482         </member>
483         <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
484             <summary>
485             Converts a F# discriminated union type to and from JSON.
486             </summary>
487         </member>
488         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
489             <summary>
490             Writes the JSON representation of the object.
491             </summary>
492             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
493             <param name="value">The value.</param>
494             <param name="serializer">The calling serializer.</param>
495         </member>
496         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
497             <summary>
498             Reads the JSON representation of the object.
499             </summary>
500             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
501             <param name="objectType">Type of the object.</param>
502             <param name="existingValue">The existing value of object being read.</param>
503             <param name="serializer">The calling serializer.</param>
504             <returns>The object value.</returns>
505         </member>
506         <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
507             <summary>
508             Determines whether this instance can convert the specified object type.
509             </summary>
510             <param name="objectType">Type of the object.</param>
511             <returns>
512                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
513             </returns>
514         </member>
515         <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
516             <summary>
517             Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
518             </summary>
519         </member>
520         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
521             <summary>
522             Writes the JSON representation of the object.
523             </summary>
524             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
525             <param name="value">The value.</param>
526             <param name="serializer">The calling serializer.</param>
527         </member>
528         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
529             <summary>
530             Reads the JSON representation of the object.
531             </summary>
532             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
533             <param name="objectType">Type of the object.</param>
534             <param name="existingValue">The existing value of object being read.</param>
535             <param name="serializer">The calling serializer.</param>
536             <returns>The object value.</returns>
537         </member>
538         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
539             <summary>
540             Determines whether this instance can convert the specified object type.
541             </summary>
542             <param name="objectType">Type of the object.</param>
543             <returns>
544                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
545             </returns>
546         </member>
547         <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
548             <summary>
549             Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON.
550             </summary>
551         </member>
552         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
553             <summary>
554             Writes the JSON representation of the object.
555             </summary>
556             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
557             <param name="value">The value.</param>
558             <param name="serializer">The calling serializer.</param>
559         </member>
560         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
561             <summary>
562             Reads the JSON representation of the object.
563             </summary>
564             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
565             <param name="objectType">Type of the object.</param>
566             <param name="existingValue">The existing value of object being read.</param>
567             <param name="serializer">The calling serializer.</param>
568             <returns>The object value.</returns>
569         </member>
570         <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
571             <summary>
572             Determines whether this instance can convert the specified object type.
573             </summary>
574             <param name="objectType">Type of the object.</param>
575             <returns>
576                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
577             </returns>
578         </member>
579         <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
580             <summary>
581             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
582             </summary>
583             <value>
584                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
585             </value>
586         </member>
587         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
588             <summary>
589             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
590             </summary>
591         </member>
592         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
593             <summary>
594             Writes the JSON representation of the object.
595             </summary>
596             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
597             <param name="value">The value.</param>
598             <param name="serializer">The calling serializer.</param>
599         </member>
600         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
601             <summary>
602             Reads the JSON representation of the object.
603             </summary>
604             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
605             <param name="objectType">Type of the object.</param>
606             <param name="existingValue">The existing value of object being read.</param>
607             <param name="serializer">The calling serializer.</param>
608             <returns>The object value.</returns>
609         </member>
610         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
611             <summary>
612             Determines whether this instance can convert the specified object type.
613             </summary>
614             <param name="objectType">Type of the object.</param>
615             <returns>
616                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
617             </returns>
618         </member>
619         <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
620             <summary>
621             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
622             </summary>
623         </member>
624         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
625             <summary>
626             Writes the JSON representation of the object.
627             </summary>
628             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
629             <param name="value">The value.</param>
630             <param name="serializer">The calling serializer.</param>
631         </member>
632         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
633             <summary>
634             Reads the JSON representation of the object.
635             </summary>
636             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
637             <param name="objectType">Type of the object.</param>
638             <param name="existingValue">The existing value of object being read.</param>
639             <param name="serializer">The calling serializer.</param>
640             <returns>The object value.</returns>
641         </member>
642         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
643             <summary>
644             Determines whether this instance can convert the specified object type.
645             </summary>
646             <param name="objectType">Type of the object.</param>
647             <returns>
648                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
649             </returns>
650         </member>
651         <member name="T:Newtonsoft.Json.Converters.RegexConverter">
652             <summary>
653             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
654             </summary>
655         </member>
656         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
657             <summary>
658             Writes the JSON representation of the object.
659             </summary>
660             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
661             <param name="value">The value.</param>
662             <param name="serializer">The calling serializer.</param>
663         </member>
664         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
665             <summary>
666             Reads the JSON representation of the object.
667             </summary>
668             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
669             <param name="objectType">Type of the object.</param>
670             <param name="existingValue">The existing value of object being read.</param>
671             <param name="serializer">The calling serializer.</param>
672             <returns>The object value.</returns>
673         </member>
674         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
675             <summary>
676             Determines whether this instance can convert the specified object type.
677             </summary>
678             <param name="objectType">Type of the object.</param>
679             <returns>
680                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
681             </returns>
682         </member>
683         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
684             <summary>
685             Converts an <see cref="T:System.Enum"/> to and from its name string value.
686             </summary>
687         </member>
688         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
689             <summary>
690             Gets or sets a value indicating whether the written enum text should be camel case.
691             </summary>
692             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
693         </member>
694         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
695             <summary>
696             Gets or sets a value indicating whether integer values are allowed when deserializing.
697             </summary>
698             <value><c>true</c> if integers are allowed when deserializing; otherwise, <c>false</c>.</value>
699         </member>
700         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
701             <summary>
702             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
703             </summary>
704         </member>
705         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Boolean)">
706             <summary>
707             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
708             </summary>
709             <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param>
710         </member>
711         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
712             <summary>
713             Writes the JSON representation of the object.
714             </summary>
715             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
716             <param name="value">The value.</param>
717             <param name="serializer">The calling serializer.</param>
718         </member>
719         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
720             <summary>
721             Reads the JSON representation of the object.
722             </summary>
723             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
724             <param name="objectType">Type of the object.</param>
725             <param name="existingValue">The existing value of object being read.</param>
726             <param name="serializer">The calling serializer.</param>
727             <returns>The object value.</returns>
728         </member>
729         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
730             <summary>
731             Determines whether this instance can convert the specified object type.
732             </summary>
733             <param name="objectType">Type of the object.</param>
734             <returns>
735             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
736             </returns>
737         </member>
738         <member name="T:Newtonsoft.Json.Converters.VersionConverter">
739             <summary>
740             Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
741             </summary>
742         </member>
743         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
744             <summary>
745             Writes the JSON representation of the object.
746             </summary>
747             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
748             <param name="value">The value.</param>
749             <param name="serializer">The calling serializer.</param>
750         </member>
751         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
752             <summary>
753             Reads the JSON representation of the object.
754             </summary>
755             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
756             <param name="objectType">Type of the object.</param>
757             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
758             <param name="serializer">The calling serializer.</param>
759             <returns>The object value.</returns>
760         </member>
761         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
762             <summary>
763             Determines whether this instance can convert the specified object type.
764             </summary>
765             <param name="objectType">Type of the object.</param>
766             <returns>
767                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
768             </returns>
769         </member>
770         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
771             <summary>
772             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
773             </summary>
774         </member>
775         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
776             <summary>
777             Gets or sets the date time styles used when converting a date to and from JSON.
778             </summary>
779             <value>The date time styles used when converting a date to and from JSON.</value>
780         </member>
781         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
782             <summary>
783             Gets or sets the date time format used when converting a date to and from JSON.
784             </summary>
785             <value>The date time format used when converting a date to and from JSON.</value>
786         </member>
787         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
788             <summary>
789             Gets or sets the culture used when converting a date to and from JSON.
790             </summary>
791             <value>The culture used when converting a date to and from JSON.</value>
792         </member>
793         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
794             <summary>
795             Writes the JSON representation of the object.
796             </summary>
797             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
798             <param name="value">The value.</param>
799             <param name="serializer">The calling serializer.</param>
800         </member>
801         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
802             <summary>
803             Reads the JSON representation of the object.
804             </summary>
805             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
806             <param name="objectType">Type of the object.</param>
807             <param name="existingValue">The existing value of object being read.</param>
808             <param name="serializer">The calling serializer.</param>
809             <returns>The object value.</returns>
810         </member>
811         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
812             <summary>
813             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>).
814             </summary>
815         </member>
816         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
817             <summary>
818             Writes the JSON representation of the object.
819             </summary>
820             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
821             <param name="value">The value.</param>
822             <param name="serializer">The calling serializer.</param>
823         </member>
824         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
825             <summary>
826             Reads the JSON representation of the object.
827             </summary>
828             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
829             <param name="objectType">Type of the object.</param>
830             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
831             <param name="serializer">The calling serializer.</param>
832             <returns>The object value.</returns>
833         </member>
834         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
835             <summary>
836             Converts XML to and from JSON.
837             </summary>
838         </member>
839         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
840             <summary>
841             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
842             </summary>
843             <value>The name of the deserialized root element.</value>
844         </member>
845         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
846             <summary>
847             Gets or sets a flag to indicate whether to write the Json.NET array attribute.
848             This attribute helps preserve arrays when converting the written XML back to JSON.
849             </summary>
850             <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
851         </member>
852         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
853             <summary>
854             Gets or sets a value indicating whether to write the root JSON object.
855             </summary>
856             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
857         </member>
858         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
859             <summary>
860             Writes the JSON representation of the object.
861             </summary>
862             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
863             <param name="serializer">The calling serializer.</param>
864             <param name="value">The value.</param>
865         </member>
866         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
867             <summary>
868             Reads the JSON representation of the object.
869             </summary>
870             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
871             <param name="objectType">Type of the object.</param>
872             <param name="existingValue">The existing value of object being read.</param>
873             <param name="serializer">The calling serializer.</param>
874             <returns>The object value.</returns>
875         </member>
876         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
877             <summary>
878             Checks if the <paramref name="attributeName"/> is a namespace attribute.
879             </summary>
880             <param name="attributeName">Attribute name to test.</param>
881             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
882             <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns>
883         </member>
884         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
885             <summary>
886             Determines whether this instance can convert the specified value type.
887             </summary>
888             <param name="valueType">Type of the value.</param>
889             <returns>
890                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
891             </returns>
892         </member>
893         <member name="T:Newtonsoft.Json.ConstructorHandling">
894             <summary>
895             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
896             </summary>
897         </member>
898         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
899             <summary>
900             First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
901             </summary>
902         </member>
903         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
904             <summary>
905             Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
906             </summary>
907         </member>
908         <member name="T:Newtonsoft.Json.FloatFormatHandling">
909             <summary>
910             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
911             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
912             </summary>
913         </member>
914         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
915             <summary>
916             Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
917             </summary>
918         </member>
919         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
920             <summary>
921             Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>.
922             Note that this will produce non-valid JSON.
923             </summary>
924         </member>
925         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
926             <summary>
927             Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, <c>null</c> for a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> property.
928             </summary>
929         </member>
930         <member name="T:Newtonsoft.Json.FloatParseHandling">
931             <summary>
932             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
933             </summary>
934         </member>
935         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
936             <summary>
937             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
938             </summary>
939         </member>
940         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
941             <summary>
942             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
943             </summary>
944         </member>
945         <member name="T:Newtonsoft.Json.IArrayPool`1">
946             <summary>
947             Provides an interface for using pooled arrays.
948             </summary>
949             <typeparam name="T">The array type content.</typeparam>
950         </member>
951         <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
952             <summary>
953             Rent an array from the pool. This array must be returned when it is no longer needed.
954             </summary>
955             <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param>
956             <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns>
957         </member>
958         <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
959             <summary>
960             Return an array to the pool.
961             </summary>
962             <param name="array">The array that is being returned.</param>
963         </member>
964         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
965             <summary>
966             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
967             </summary>
968         </member>
969         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
970             <summary>
971             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
972             </summary>
973         </member>
974         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
975             <summary>
976             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
977             </summary>
978             <param name="id">The container Id.</param>
979         </member>
980         <member name="T:Newtonsoft.Json.JsonException">
981             <summary>
982             The exception thrown when an error occurs during JSON serialization or deserialization.
983             </summary>
984         </member>
985         <member name="M:Newtonsoft.Json.JsonException.#ctor">
986             <summary>
987             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
988             </summary>
989         </member>
990         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
991             <summary>
992             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
993             with a specified error message.
994             </summary>
995             <param name="message">The error message that explains the reason for the exception.</param>
996         </member>
997         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
998             <summary>
999             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
1000             with a specified error message and a reference to the inner exception that is the cause of this exception.
1001             </summary>
1002             <param name="message">The error message that explains the reason for the exception.</param>
1003             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
1004         </member>
1005         <member name="T:Newtonsoft.Json.DateFormatHandling">
1006             <summary>
1007             Specifies how dates are formatted when writing JSON text.
1008             </summary>
1009         </member>
1010         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1011             <summary>
1012             Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
1013             </summary>
1014         </member>
1015         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1016             <summary>
1017             Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
1018             </summary>
1019         </member>
1020         <member name="T:Newtonsoft.Json.DateParseHandling">
1021             <summary>
1022             Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text.
1023             </summary>
1024         </member>
1025         <member name="F:Newtonsoft.Json.DateParseHandling.None">
1026             <summary>
1027             Date formatted strings are not parsed to a date type and are read as strings.
1028             </summary>
1029         </member>
1030         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1031             <summary>
1032             Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
1033             </summary>
1034         </member>
1035         <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1036             <summary>
1037             Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
1038             </summary>
1039         </member>
1040         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1041             <summary>
1042             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1043             </summary>
1044         </member>
1045         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1046             <summary>
1047             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.
1048             </summary>
1049         </member>
1050         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1051             <summary>
1052             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1053             </summary>
1054         </member>
1055         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1056             <summary>
1057             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1058             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1059             </summary>
1060         </member>
1061         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1062             <summary>
1063             Time zone information should be preserved when converting.
1064             </summary>
1065         </member>
1066         <member name="T:Newtonsoft.Json.Formatting">
1067             <summary>
1068             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1069             </summary>
1070         </member>
1071         <member name="F:Newtonsoft.Json.Formatting.None">
1072             <summary>
1073             No special formatting is applied. This is the default.
1074             </summary>
1075         </member>
1076         <member name="F:Newtonsoft.Json.Formatting.Indented">
1077             <summary>
1078             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.
1079             </summary>
1080         </member>
1081         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1082             <summary>
1083             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1084             </summary>
1085         </member>
1086         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
1087             <summary>
1088             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1089             and write values during serialization.
1090             </summary>
1091         </member>
1092         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
1093             <summary>
1094             Gets or sets a value that indicates whether to write extension data when serializing the object.
1095             </summary>
1096             <value>
1097                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1098             </value>
1099         </member>
1100         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
1101             <summary>
1102             Gets or sets a value that indicates whether to read extension data when deserializing the object.
1103             </summary>
1104             <value>
1105                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1106             </value>
1107         </member>
1108         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1109             <summary>
1110             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1111             </summary>
1112         </member>
1113         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
1114             <summary>
1115             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value.
1116             </summary>
1117         </member>
1118         <member name="T:Newtonsoft.Json.Linq.CommentHandling">
1119             <summary>
1120             Specifies how JSON comments are handled when loading JSON.
1121             </summary>
1122         </member>
1123         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
1124             <summary>
1125             Ignore comments.
1126             </summary>
1127         </member>
1128         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
1129             <summary>
1130             Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
1131             </summary>
1132         </member>
1133         <member name="T:Newtonsoft.Json.Linq.LineInfoHandling">
1134             <summary>
1135             Specifies how line information is handled when loading JSON.
1136             </summary>
1137         </member>
1138         <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Ignore">
1139             <summary>
1140             Ignore line information.
1141             </summary>
1142         </member>
1143         <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Load">
1144             <summary>
1145             Load line information.
1146             </summary>
1147         </member>
1148         <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
1149             <summary>
1150             Specifies the settings used when loading JSON.
1151             </summary>
1152         </member>
1153         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
1154             <summary>
1155             Gets or sets how JSON comments are handled when loading JSON.
1156             </summary>
1157             <value>The JSON comment handling.</value>
1158         </member>
1159         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.LineInfoHandling">
1160             <summary>
1161             Gets or sets how JSON line info is handled when loading JSON.
1162             </summary>
1163             <value>The JSON line info handling.</value>
1164         </member>
1165         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1166             <summary>
1167             Specifies the settings used when merging JSON.
1168             </summary>
1169         </member>
1170         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1171             <summary>
1172             Gets or sets the method used when merging JSON arrays.
1173             </summary>
1174             <value>The method used when merging JSON arrays.</value>
1175         </member>
1176         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeNullValueHandling">
1177             <summary>
1178             Gets or sets how null value properties are merged.
1179             </summary>
1180             <value>How null value properties are merged.</value>
1181         </member>
1182         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1183             <summary>
1184             Specifies how JSON arrays are merged together.
1185             </summary>
1186         </member>
1187         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1188             <summary>Concatenate arrays.</summary>
1189         </member>
1190         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1191             <summary>Union arrays, skipping items that already exist.</summary>
1192         </member>
1193         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1194             <summary>Replace all array items.</summary>
1195         </member>
1196         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1197             <summary>Merge array items together, matched by index.</summary>
1198         </member>
1199         <member name="T:Newtonsoft.Json.Linq.MergeNullValueHandling">
1200             <summary>
1201             Specifies how null value properties are merged.
1202             </summary>
1203         </member>
1204         <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Ignore">
1205             <summary>
1206             The content's null value properties will be ignored during merging.
1207             </summary>
1208         </member>
1209         <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Merge">
1210             <summary>
1211             The content's null value properties will be merged.
1212             </summary>
1213         </member>
1214         <member name="T:Newtonsoft.Json.Linq.JRaw">
1215             <summary>
1216             Represents a raw JSON string.
1217             </summary>
1218         </member>
1219         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
1220             <summary>
1221             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
1222             </summary>
1223             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
1224         </member>
1225         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
1226             <summary>
1227             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
1228             </summary>
1229             <param name="rawJson">The raw json.</param>
1230         </member>
1231         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
1232             <summary>
1233             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
1234             </summary>
1235             <param name="reader">The reader.</param>
1236             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
1237         </member>
1238         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1239             <summary>
1240             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1241             </summary>
1242         </member>
1243         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1244             <summary>
1245             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1246             </summary>
1247             <param name="name">The name.</param>
1248         </member>
1249         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1250             <summary>
1251             When overridden in a derived class, returns whether resetting an object changes its value.
1252             </summary>
1253             <returns>
1254             <c>true</c> if resetting the component changes its value; otherwise, <c>false</c>.
1255             </returns>
1256             <param name="component">The component to test for reset capability.</param>
1257         </member>
1258         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1259             <summary>
1260             When overridden in a derived class, gets the current value of the property on a component.
1261             </summary>
1262             <returns>
1263             The value of a property for a given component.
1264             </returns>
1265             <param name="component">The component with the property for which to retrieve the value.</param>
1266         </member>
1267         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1268             <summary>
1269             When overridden in a derived class, resets the value for this property of the component to the default value.
1270             </summary>
1271             <param name="component">The component with the property value that is to be reset to the default value.</param>
1272         </member>
1273         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1274             <summary>
1275             When overridden in a derived class, sets the value of the component to a different value.
1276             </summary>
1277             <param name="component">The component with the property value that is to be set.</param>
1278             <param name="value">The new value.</param>
1279         </member>
1280         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1281             <summary>
1282             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1283             </summary>
1284             <returns>
1285             <c>true</c> if the property should be persisted; otherwise, <c>false</c>.
1286             </returns>
1287             <param name="component">The component with the property to be examined for persistence.</param>
1288         </member>
1289         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1290             <summary>
1291             When overridden in a derived class, gets the type of the component this property is bound to.
1292             </summary>
1293             <returns>
1294             A <see cref="T:System.Type"/> that represents the type of component this property is bound to.
1295             When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or
1296             <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/>
1297             methods are invoked, the object specified might be an instance of this type.
1298             </returns>
1299         </member>
1300         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1301             <summary>
1302             When overridden in a derived class, gets a value indicating whether this property is read-only.
1303             </summary>
1304             <returns>
1305             <c>true</c> if the property is read-only; otherwise, <c>false</c>.
1306             </returns>
1307         </member>
1308         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1309             <summary>
1310             When overridden in a derived class, gets the type of the property.
1311             </summary>
1312             <returns>
1313             A <see cref="T:System.Type"/> that represents the type of the property.
1314             </returns>
1315         </member>
1316         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1317             <summary>
1318             Gets the hash code for the name of the member.
1319             </summary>
1320             <value></value>
1321             <returns>
1322             The hash code for the name of the member.
1323             </returns>
1324         </member>
1325         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1326             <summary>
1327             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1328             </summary>
1329             <typeparam name="T">The type of token.</typeparam>
1330         </member>
1331         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1332             <summary>
1333             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1334             </summary>
1335             <value></value>
1336         </member>
1337         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
1338             <summary>
1339             Compares tokens to determine whether they are equal.
1340             </summary>
1341         </member>
1342         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1343             <summary>
1344             Determines whether the specified objects are equal.
1345             </summary>
1346             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1347             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1348             <returns>
1349             <c>true</c> if the specified objects are equal; otherwise, <c>false</c>.
1350             </returns>
1351         </member>
1352         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
1353             <summary>
1354             Returns a hash code for the specified object.
1355             </summary>
1356             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
1357             <returns>A hash code for the specified object.</returns>
1358             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is <c>null</c>.</exception>
1359         </member>
1360         <member name="T:Newtonsoft.Json.Linq.Extensions">
1361             <summary>
1362             Contains the LINQ to JSON extension methods.
1363             </summary>
1364         </member>
1365         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
1366             <summary>
1367             Returns a collection of tokens that contains the ancestors of every token in the source collection.
1368             </summary>
1369             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1370             <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>
1371             <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>
1372         </member>
1373         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1374             <summary>
1375             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
1376             </summary>
1377             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1378             <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>
1379             <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>
1380         </member>
1381         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
1382             <summary>
1383             Returns a collection of tokens that contains the descendants of every token in the source collection.
1384             </summary>
1385             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1386             <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>
1387             <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>
1388         </member>
1389         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1390             <summary>
1391             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
1392             </summary>
1393             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1394             <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>
1395             <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>
1396         </member>
1397         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
1398             <summary>
1399             Returns a collection of child properties of every object in the source collection.
1400             </summary>
1401             <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>
1402             <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>
1403         </member>
1404         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1405             <summary>
1406             Returns a collection of child values of every object in the source collection with the given key.
1407             </summary>
1408             <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>
1409             <param name="key">The token key.</param>
1410             <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>
1411         </member>
1412         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1413             <summary>
1414             Returns a collection of child values of every object in the source collection.
1415             </summary>
1416             <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>
1417             <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>
1418         </member>
1419         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1420             <summary>
1421             Returns a collection of converted child values of every object in the source collection with the given key.
1422             </summary>
1423             <typeparam name="U">The type to convert the values to.</typeparam>
1424             <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>
1425             <param name="key">The token key.</param>
1426             <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>
1427         </member>
1428         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1429             <summary>
1430             Returns a collection of converted child values of every object in the source collection.
1431             </summary>
1432             <typeparam name="U">The type to convert the values to.</typeparam>
1433             <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>
1434             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1435         </member>
1436         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1437             <summary>
1438             Converts the value.
1439             </summary>
1440             <typeparam name="U">The type to convert the value to.</typeparam>
1441             <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>
1442             <returns>A converted value.</returns>
1443         </member>
1444         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
1445             <summary>
1446             Converts the value.
1447             </summary>
1448             <typeparam name="T">The source collection type.</typeparam>
1449             <typeparam name="U">The type to convert the value to.</typeparam>
1450             <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>
1451             <returns>A converted value.</returns>
1452         </member>
1453         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
1454             <summary>
1455             Returns a collection of child tokens of every array in the source collection.
1456             </summary>
1457             <typeparam name="T">The source collection type.</typeparam>
1458             <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>
1459             <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>
1460         </member>
1461         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
1462             <summary>
1463             Returns a collection of converted child tokens of every array in the source collection.
1464             </summary>
1465             <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>
1466             <typeparam name="U">The type to convert the values to.</typeparam>
1467             <typeparam name="T">The source collection type.</typeparam>
1468             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1469         </member>
1470         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1471             <summary>
1472             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1473             </summary>
1474             <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>
1475             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1476         </member>
1477         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
1478             <summary>
1479             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1480             </summary>
1481             <typeparam name="T">The source collection type.</typeparam>
1482             <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>
1483             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1484         </member>
1485         <member name="T:Newtonsoft.Json.Linq.JConstructor">
1486             <summary>
1487             Represents a JSON constructor.
1488             </summary>
1489         </member>
1490         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
1491             <summary>
1492             Gets the container's children tokens.
1493             </summary>
1494             <value>The container's children tokens.</value>
1495         </member>
1496         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
1497             <summary>
1498             Gets or sets the name of this constructor.
1499             </summary>
1500             <value>The constructor name.</value>
1501         </member>
1502         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
1503             <summary>
1504             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1505             </summary>
1506             <value>The type.</value>
1507         </member>
1508         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
1509             <summary>
1510             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
1511             </summary>
1512         </member>
1513         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
1514             <summary>
1515             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
1516             </summary>
1517             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
1518         </member>
1519         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
1520             <summary>
1521             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1522             </summary>
1523             <param name="name">The constructor name.</param>
1524             <param name="content">The contents of the constructor.</param>
1525         </member>
1526         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
1527             <summary>
1528             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1529             </summary>
1530             <param name="name">The constructor name.</param>
1531             <param name="content">The contents of the constructor.</param>
1532         </member>
1533         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
1534             <summary>
1535             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
1536             </summary>
1537             <param name="name">The constructor name.</param>
1538         </member>
1539         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1540             <summary>
1541             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1542             </summary>
1543             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1544             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1545         </member>
1546         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
1547             <summary>
1548             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1549             </summary>
1550             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1551         </member>
1552         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
1553             <summary>
1554             Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
1555             </summary>
1556             <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>
1557             <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>
1558         </member>
1559         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1560             <summary>
1561             Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
1562             </summary>
1563             <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>
1564             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1565             If this is <c>null</c>, default load settings will be used.</param>
1566             <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>
1567         </member>
1568         <member name="T:Newtonsoft.Json.Linq.JContainer">
1569             <summary>
1570             Represents a token that can contain other tokens.
1571             </summary>
1572         </member>
1573         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
1574             <summary>
1575             Occurs when the list changes or an item in the list changes.
1576             </summary>
1577         </member>
1578         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
1579             <summary>
1580             Occurs before an item is added to the collection.
1581             </summary>
1582         </member>
1583         <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
1584             <summary>
1585             Occurs when the items list of the collection has changed, or the collection is reset.
1586             </summary>
1587         </member>
1588         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
1589             <summary>
1590             Gets the container's children tokens.
1591             </summary>
1592             <value>The container's children tokens.</value>
1593         </member>
1594         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
1595             <summary>
1596             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
1597             </summary>
1598             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
1599         </member>
1600         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
1601             <summary>
1602             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
1603             </summary>
1604             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
1605         </member>
1606         <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
1607             <summary>
1608             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
1609             </summary>
1610             <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
1611         </member>
1612         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
1613             <summary>
1614             Gets a value indicating whether this token has child tokens.
1615             </summary>
1616             <value>
1617                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
1618             </value>
1619         </member>
1620         <member name="P:Newtonsoft.Json.Linq.JContainer.First">
1621             <summary>
1622             Get the first child token of this token.
1623             </summary>
1624             <value>
1625             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1626             </value>
1627         </member>
1628         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
1629             <summary>
1630             Get the last child token of this token.
1631             </summary>
1632             <value>
1633             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1634             </value>
1635         </member>
1636         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
1637             <summary>
1638             Returns a collection of the child tokens of this token, in document order.
1639             </summary>
1640             <returns>
1641             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.
1642             </returns>
1643         </member>
1644         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
1645             <summary>
1646             Returns a collection of the child values of this token, in document order.
1647             </summary>
1648             <typeparam name="T">The type to convert the values to.</typeparam>
1649             <returns>
1650             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.
1651             </returns>
1652         </member>
1653         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
1654             <summary>
1655             Returns a collection of the descendant tokens for this token in document order.
1656             </summary>
1657             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1658         </member>
1659         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
1660             <summary>
1661             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
1662             </summary>
1663             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1664         </member>
1665         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
1666             <summary>
1667             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1668             </summary>
1669             <param name="content">The content to be added.</param>
1670         </member>
1671         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
1672             <summary>
1673             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1674             </summary>
1675             <param name="content">The content to be added.</param>
1676         </member>
1677         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
1678             <summary>
1679             Creates a <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1680             </summary>
1681             <returns>A <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
1682         </member>
1683         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
1684             <summary>
1685             Replaces the child nodes of this token with the specified content.
1686             </summary>
1687             <param name="content">The content.</param>
1688         </member>
1689         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
1690             <summary>
1691             Removes the child nodes from this token.
1692             </summary>
1693         </member>
1694         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
1695             <summary>
1696             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1697             </summary>
1698             <param name="content">The content to be merged.</param>
1699         </member>
1700         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
1701             <summary>
1702             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
1703             </summary>
1704             <param name="content">The content to be merged.</param>
1705             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
1706         </member>
1707         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
1708             <summary>
1709             Gets the count of child JSON tokens.
1710             </summary>
1711             <value>The count of child JSON tokens.</value>
1712         </member>
1713         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
1714             <summary>
1715             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1716             </summary>
1717             <typeparam name="T">The type of token.</typeparam>
1718         </member>
1719         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
1720             <summary>
1721             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1722             </summary>
1723         </member>
1724         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1725             <summary>
1726             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
1727             </summary>
1728             <param name="enumerable">The enumerable.</param>
1729         </member>
1730         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
1731             <summary>
1732             Returns an enumerator that can be used to iterate through the collection.
1733             </summary>
1734             <returns>
1735             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1736             </returns>
1737         </member>
1738         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
1739             <summary>
1740             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1741             </summary>
1742             <value></value>
1743         </member>
1744         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
1745             <summary>
1746             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
1747             </summary>
1748             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
1749             <returns>
1750                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
1751             </returns>
1752         </member>
1753         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
1754             <summary>
1755             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
1756             </summary>
1757             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
1758             <returns>
1759                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
1760             </returns>
1761         </member>
1762         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
1763             <summary>
1764             Returns a hash code for this instance.
1765             </summary>
1766             <returns>
1767             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
1768             </returns>
1769         </member>
1770         <member name="T:Newtonsoft.Json.Linq.JObject">
1771             <summary>
1772             Represents a JSON object.
1773             </summary>
1774             <example>
1775               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1776             </example>
1777         </member>
1778         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
1779             <summary>
1780             Gets the container's children tokens.
1781             </summary>
1782             <value>The container's children tokens.</value>
1783         </member>
1784         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
1785             <summary>
1786             Occurs when a property value changes.
1787             </summary>
1788         </member>
1789         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
1790             <summary>
1791             Occurs when a property value is changing.
1792             </summary>
1793         </member>
1794         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
1795             <summary>
1796             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
1797             </summary>
1798         </member>
1799         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
1800             <summary>
1801             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
1802             </summary>
1803             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
1804         </member>
1805         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
1806             <summary>
1807             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1808             </summary>
1809             <param name="content">The contents of the object.</param>
1810         </member>
1811         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
1812             <summary>
1813             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1814             </summary>
1815             <param name="content">The contents of the object.</param>
1816         </member>
1817         <member name="P:Newtonsoft.Json.Linq.JObject.Type">
1818             <summary>
1819             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1820             </summary>
1821             <value>The type.</value>
1822         </member>
1823         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
1824             <summary>
1825             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.
1826             </summary>
1827             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.</returns>
1828         </member>
1829         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
1830             <summary>
1831             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
1832             </summary>
1833             <param name="name">The property name.</param>
1834             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or <c>null</c>.</returns>
1835         </member>
1836         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
1837             <summary>
1838             Gets a <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.
1839             </summary>
1840             <returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.</returns>
1841         </member>
1842         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
1843             <summary>
1844             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1845             </summary>
1846             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1847         </member>
1848         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
1849             <summary>
1850             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1851             </summary>
1852             <value></value>
1853         </member>
1854         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
1855             <summary>
1856             Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
1857             </summary>
1858             <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>
1859             <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>
1860             <exception cref="T:Newtonsoft.Json.JsonReaderException">
1861                 <paramref name="reader"/> is not valid JSON.
1862             </exception>
1863         </member>
1864         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1865             <summary>
1866             Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
1867             </summary>
1868             <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>
1869             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1870             If this is <c>null</c>, default load settings will be used.</param>
1871             <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>
1872             <exception cref="T:Newtonsoft.Json.JsonReaderException">
1873                 <paramref name="reader"/> is not valid JSON.
1874             </exception>
1875         </member>
1876         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
1877             <summary>
1878             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1879             </summary>
1880             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1881             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1882             <exception cref="T:Newtonsoft.Json.JsonReaderException">
1883                 <paramref name="json"/> is not valid JSON.
1884             </exception>
1885             <example>
1886               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1887             </example>
1888         </member>
1889         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
1890             <summary>
1891             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1892             </summary>
1893             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1894             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1895             If this is <c>null</c>, default load settings will be used.</param>
1896             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1897             <exception cref="T:Newtonsoft.Json.JsonReaderException">
1898                 <paramref name="json"/> is not valid JSON.
1899             </exception>
1900             <example>
1901               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1902             </example>
1903         </member>
1904         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
1905             <summary>
1906             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1907             </summary>
1908             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1909             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
1910         </member>
1911         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
1912             <summary>
1913             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1914             </summary>
1915             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1916             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
1917             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
1918         </member>
1919         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1920             <summary>
1921             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1922             </summary>
1923             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1924             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1925         </member>
1926         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
1927             <summary>
1928             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1929             </summary>
1930             <param name="propertyName">Name of the property.</param>
1931             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1932         </member>
1933         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
1934             <summary>
1935             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1936             The exact property name will be searched for first and if no matching property is found then
1937             the <see cref="T:System.StringComparison"/> will be used to match a property.
1938             </summary>
1939             <param name="propertyName">Name of the property.</param>
1940             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1941             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1942         </member>
1943         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
1944             <summary>
1945             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1946             The exact property name will be searched for first and if no matching property is found then
1947             the <see cref="T:System.StringComparison"/> will be used to match a property.
1948             </summary>
1949             <param name="propertyName">Name of the property.</param>
1950             <param name="value">The value.</param>
1951             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1952             <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
1953         </member>
1954         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
1955             <summary>
1956             Adds the specified property name.
1957             </summary>
1958             <param name="propertyName">Name of the property.</param>
1959             <param name="value">The value.</param>
1960         </member>
1961         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
1962             <summary>
1963             Removes the property with the specified name.
1964             </summary>
1965             <param name="propertyName">Name of the property.</param>
1966             <returns><c>true</c> if item was successfully removed; otherwise, <c>false</c>.</returns>
1967         </member>
1968         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
1969             <summary>
1970             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1971             </summary>
1972             <param name="propertyName">Name of the property.</param>
1973             <param name="value">The value.</param>
1974             <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
1975         </member>
1976         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
1977             <summary>
1978             Returns an enumerator that can be used to iterate through the collection.
1979             </summary>
1980             <returns>
1981             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1982             </returns>
1983         </member>
1984         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
1985             <summary>
1986             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
1987             </summary>
1988             <param name="propertyName">Name of the property.</param>
1989         </member>
1990         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
1991             <summary>
1992             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
1993             </summary>
1994             <param name="propertyName">Name of the property.</param>
1995         </member>
1996         <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
1997             <summary>
1998             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
1999             </summary>
2000             <param name="parameter">The expression tree representation of the runtime value.</param>
2001             <returns>
2002             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
2003             </returns>
2004         </member>
2005         <member name="T:Newtonsoft.Json.Linq.JArray">
2006             <summary>
2007             Represents a JSON array.
2008             </summary>
2009             <example>
2010               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2011             </example>
2012         </member>
2013         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
2014             <summary>
2015             Gets the container's children tokens.
2016             </summary>
2017             <value>The container's children tokens.</value>
2018         </member>
2019         <member name="P:Newtonsoft.Json.Linq.JArray.Type">
2020             <summary>
2021             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2022             </summary>
2023             <value>The type.</value>
2024         </member>
2025         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
2026             <summary>
2027             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
2028             </summary>
2029         </member>
2030         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
2031             <summary>
2032             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
2033             </summary>
2034             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
2035         </member>
2036         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
2037             <summary>
2038             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2039             </summary>
2040             <param name="content">The contents of the array.</param>
2041         </member>
2042         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
2043             <summary>
2044             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
2045             </summary>
2046             <param name="content">The contents of the array.</param>
2047         </member>
2048         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
2049             <summary>
2050             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2051             </summary>
2052             <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>
2053             <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>
2054         </member>
2055         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
2056             <summary>
2057             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
2058             </summary>
2059             <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>
2060             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2061             If this is <c>null</c>, default load settings will be used.</param>
2062             <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>
2063         </member>
2064         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
2065             <summary>
2066             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2067             </summary>
2068             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2069             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2070             <example>
2071               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2072             </example>
2073         </member>
2074         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
2075             <summary>
2076             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2077             </summary>
2078             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2079             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2080             If this is <c>null</c>, default load settings will be used.</param>
2081             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2082             <example>
2083               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2084             </example>
2085         </member>
2086         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
2087             <summary>
2088             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2089             </summary>
2090             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2091             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
2092         </member>
2093         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2094             <summary>
2095             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2096             </summary>
2097             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2098             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
2099             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
2100         </member>
2101         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2102             <summary>
2103             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2104             </summary>
2105             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2106             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2107         </member>
2108         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
2109             <summary>
2110             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2111             </summary>
2112             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2113         </member>
2114         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
2115             <summary>
2116             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
2117             </summary>
2118             <value></value>
2119         </member>
2120         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
2121             <summary>
2122             Determines the index of a specific item in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2123             </summary>
2124             <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2125             <returns>
2126             The index of <paramref name="item"/> if found in the list; otherwise, -1.
2127             </returns>
2128         </member>
2129         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
2130             <summary>
2131             Inserts an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/> at the specified index.
2132             </summary>
2133             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
2134             <param name="item">The object to insert into the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2135             <exception cref="T:System.ArgumentOutOfRangeException">
2136             <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2137             </exception>
2138         </member>
2139         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
2140             <summary>
2141             Removes the <see cref="T:Newtonsoft.Json.Linq.JArray"/> item at the specified index.
2142             </summary>
2143             <param name="index">The zero-based index of the item to remove.</param>
2144             <exception cref="T:System.ArgumentOutOfRangeException">
2145             <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2146             </exception>
2147         </member>
2148         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
2149             <summary>
2150             Returns an enumerator that iterates through the collection.
2151             </summary>
2152             <returns>
2153             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that can be used to iterate through the collection.
2154             </returns>
2155         </member>
2156         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
2157             <summary>
2158             Adds an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2159             </summary>
2160             <param name="item">The object to add to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2161         </member>
2162         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
2163             <summary>
2164             Removes all items from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2165             </summary>
2166         </member>
2167         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
2168             <summary>
2169             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> contains a specific value.
2170             </summary>
2171             <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2172             <returns>
2173             <c>true</c> if <paramref name="item"/> is found in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>.
2174             </returns>
2175         </member>
2176         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
2177             <summary>
2178             Copies the elements of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> to an array, starting at a particular array index.
2179             </summary>
2180             <param name="array">The array.</param>
2181             <param name="arrayIndex">Index of the array.</param>
2182         </member>
2183         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
2184             <summary>
2185             Gets a value indicating whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only.
2186             </summary>
2187             <returns><c>true</c> if the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only; otherwise, <c>false</c>.</returns>
2188         </member>
2189         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
2190             <summary>
2191             Removes the first occurrence of a specific object from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2192             </summary>
2193             <param name="item">The object to remove from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2194             <returns>
2195             <c>true</c> if <paramref name="item"/> was successfully removed from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>. This method also returns <c>false</c> if <paramref name="item"/> is not found in the original <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
2196             </returns>
2197         </member>
2198         <member name="T:Newtonsoft.Json.Linq.JTokenReader">
2199             <summary>
2200             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2201             </summary>
2202         </member>
2203         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
2204             <summary>
2205             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
2206             </summary>
2207         </member>
2208         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
2209             <summary>
2210             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
2211             </summary>
2212             <param name="token">The token to read from.</param>
2213         </member>
2214         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
2215             <summary>
2216             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2217             </summary>
2218             <returns>
2219             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
2220             </returns>
2221         </member>
2222         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
2223             <summary>
2224             Gets the path of the current JSON token. 
2225             </summary>
2226         </member>
2227         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
2228             <summary>
2229             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
2230             </summary>
2231         </member>
2232         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
2233             <summary>
2234             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
2235             </summary>
2236         </member>
2237         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
2238             <summary>
2239             Gets the token being written.
2240             </summary>
2241             <value>The token being written.</value>
2242         </member>
2243         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
2244             <summary>
2245             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"/>.
2246             </summary>
2247             <param name="container">The container being written to.</param>
2248         </member>
2249         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
2250             <summary>
2251             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
2252             </summary>
2253         </member>
2254         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
2255             <summary>
2256             Flushes whatever is in the buffer to the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
2257             </summary>
2258         </member>
2259         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
2260             <summary>
2261             Closes this writer.
2262             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
2263             </summary>
2264             <remarks>
2265             Setting <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> to <c>true</c> has no additional effect, since the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/> is a type that cannot be closed.
2266             </remarks>
2267         </member>
2268         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
2269             <summary>
2270             Writes the beginning of a JSON object.
2271             </summary>
2272         </member>
2273         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
2274             <summary>
2275             Writes the beginning of a JSON array.
2276             </summary>
2277         </member>
2278         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
2279             <summary>
2280             Writes the start of a constructor with the given name.
2281             </summary>
2282             <param name="name">The name of the constructor.</param>
2283         </member>
2284         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
2285             <summary>
2286             Writes the end.
2287             </summary>
2288             <param name="token">The token.</param>
2289         </member>
2290         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
2291             <summary>
2292             Writes the property name of a name/value pair on a JSON object.
2293             </summary>
2294             <param name="name">The name of the property.</param>
2295         </member>
2296         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
2297             <summary>
2298             Writes a <see cref="T:System.Object"/> value.
2299             An error will be raised if the value cannot be written as a single JSON token.
2300             </summary>
2301             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
2302         </member>
2303         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
2304             <summary>
2305             Writes a null value.
2306             </summary>
2307         </member>
2308         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
2309             <summary>
2310             Writes an undefined value.
2311             </summary>
2312         </member>
2313         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
2314             <summary>
2315             Writes raw JSON.
2316             </summary>
2317             <param name="json">The raw JSON to write.</param>
2318         </member>
2319         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
2320             <summary>
2321             Writes a comment <c>/*...*/</c> containing the specified text.
2322             </summary>
2323             <param name="text">Text to place inside the comment.</param>
2324         </member>
2325         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
2326             <summary>
2327             Writes a <see cref="T:System.String"/> value.
2328             </summary>
2329             <param name="value">The <see cref="T:System.String"/> value to write.</param>
2330         </member>
2331         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
2332             <summary>
2333             Writes a <see cref="T:System.Int32"/> value.
2334             </summary>
2335             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
2336         </member>
2337         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
2338             <summary>
2339             Writes a <see cref="T:System.UInt32"/> value.
2340             </summary>
2341             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
2342         </member>
2343         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
2344             <summary>
2345             Writes a <see cref="T:System.Int64"/> value.
2346             </summary>
2347             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
2348         </member>
2349         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
2350             <summary>
2351             Writes a <see cref="T:System.UInt64"/> value.
2352             </summary>
2353             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
2354         </member>
2355         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
2356             <summary>
2357             Writes a <see cref="T:System.Single"/> value.
2358             </summary>
2359             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
2360         </member>
2361         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
2362             <summary>
2363             Writes a <see cref="T:System.Double"/> value.
2364             </summary>
2365             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
2366         </member>
2367         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
2368             <summary>
2369             Writes a <see cref="T:System.Boolean"/> value.
2370             </summary>
2371             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
2372         </member>
2373         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
2374             <summary>
2375             Writes a <see cref="T:System.Int16"/> value.
2376             </summary>
2377             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
2378         </member>
2379         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
2380             <summary>
2381             Writes a <see cref="T:System.UInt16"/> value.
2382             </summary>
2383             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
2384         </member>
2385         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
2386             <summary>
2387             Writes a <see cref="T:System.Char"/> value.
2388             </summary>
2389             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
2390         </member>
2391         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
2392             <summary>
2393             Writes a <see cref="T:System.Byte"/> value.
2394             </summary>
2395             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
2396         </member>
2397         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
2398             <summary>
2399             Writes a <see cref="T:System.SByte"/> value.
2400             </summary>
2401             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
2402         </member>
2403         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
2404             <summary>
2405             Writes a <see cref="T:System.Decimal"/> value.
2406             </summary>
2407             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
2408         </member>
2409         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
2410             <summary>
2411             Writes a <see cref="T:System.DateTime"/> value.
2412             </summary>
2413             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
2414         </member>
2415         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
2416             <summary>
2417             Writes a <see cref="T:System.DateTimeOffset"/> value.
2418             </summary>
2419             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
2420         </member>
2421         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
2422             <summary>
2423             Writes a <see cref="T:System.Byte"/>[] value.
2424             </summary>
2425             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
2426         </member>
2427         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
2428             <summary>
2429             Writes a <see cref="T:System.TimeSpan"/> value.
2430             </summary>
2431             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
2432         </member>
2433         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
2434             <summary>
2435             Writes a <see cref="T:System.Guid"/> value.
2436             </summary>
2437             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
2438         </member>
2439         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
2440             <summary>
2441             Writes a <see cref="T:System.Uri"/> value.
2442             </summary>
2443             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
2444         </member>
2445         <member name="T:Newtonsoft.Json.Linq.JToken">
2446             <summary>
2447             Represents an abstract JSON token.
2448             </summary>
2449         </member>
2450         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2451             <summary>
2452             Gets a comparer that can compare two tokens for value equality.
2453             </summary>
2454             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2455         </member>
2456         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2457             <summary>
2458             Gets or sets the parent.
2459             </summary>
2460             <value>The parent.</value>
2461         </member>
2462         <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2463             <summary>
2464             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2465             </summary>
2466             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2467         </member>
2468         <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2469             <summary>
2470             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2471             </summary>
2472             <value>The type.</value>
2473         </member>
2474         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2475             <summary>
2476             Gets a value indicating whether this token has child tokens.
2477             </summary>
2478             <value>
2479                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2480             </value>
2481         </member>
2482         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2483             <summary>
2484             Compares the values of two tokens, including the values of all descendant tokens.
2485             </summary>
2486             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2487             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2488             <returns><c>true</c> if the tokens are equal; otherwise <c>false</c>.</returns>
2489         </member>
2490         <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2491             <summary>
2492             Gets the next sibling token of this node.
2493             </summary>
2494             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2495         </member>
2496         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2497             <summary>
2498             Gets the previous sibling token of this node.
2499             </summary>
2500             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2501         </member>
2502         <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2503             <summary>
2504             Gets the path of the JSON token. 
2505             </summary>
2506         </member>
2507         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2508             <summary>
2509             Adds the specified content immediately after this token.
2510             </summary>
2511             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2512         </member>
2513         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2514             <summary>
2515             Adds the specified content immediately before this token.
2516             </summary>
2517             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2518         </member>
2519         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2520             <summary>
2521             Returns a collection of the ancestor tokens of this token.
2522             </summary>
2523             <returns>A collection of the ancestor tokens of this token.</returns>
2524         </member>
2525         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2526             <summary>
2527             Returns a collection of tokens that contain this token, and the ancestors of this token.
2528             </summary>
2529             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2530         </member>
2531         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2532             <summary>
2533             Returns a collection of the sibling tokens after this token, in document order.
2534             </summary>
2535             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2536         </member>
2537         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2538             <summary>
2539             Returns a collection of the sibling tokens before this token, in document order.
2540             </summary>
2541             <returns>A collection of the sibling tokens before this token, in document order.</returns>
2542         </member>
2543         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2544             <summary>
2545             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2546             </summary>
2547             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2548         </member>
2549         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2550             <summary>
2551             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2552             </summary>
2553             <typeparam name="T">The type to convert the token to.</typeparam>
2554             <param name="key">The token key.</param>
2555             <returns>The converted token value.</returns>
2556         </member>
2557         <member name="P:Newtonsoft.Json.Linq.JToken.First">
2558             <summary>
2559             Get the first child token of this token.
2560             </summary>
2561             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2562         </member>
2563         <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2564             <summary>
2565             Get the last child token of this token.
2566             </summary>
2567             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2568         </member>
2569         <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2570             <summary>
2571             Returns a collection of the child tokens of this token, in document order.
2572             </summary>
2573             <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>
2574         </member>
2575         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2576             <summary>
2577             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2578             </summary>
2579             <typeparam name="T">The type to filter the child tokens on.</typeparam>
2580             <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>
2581         </member>
2582         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2583             <summary>
2584             Returns a collection of the child values of this token, in document order.
2585             </summary>
2586             <typeparam name="T">The type to convert the values to.</typeparam>
2587             <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>
2588         </member>
2589         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2590             <summary>
2591             Removes this token from its parent.
2592             </summary>
2593         </member>
2594         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2595             <summary>
2596             Replaces this token with the specified token.
2597             </summary>
2598             <param name="value">The value.</param>
2599         </member>
2600         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2601             <summary>
2602             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2603             </summary>
2604             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2605             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2606         </member>
2607         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2608             <summary>
2609             Returns the indented JSON for this token.
2610             </summary>
2611             <returns>
2612             The indented JSON for this token.
2613             </returns>
2614         </member>
2615         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2616             <summary>
2617             Returns the JSON for this token using the given formatting and converters.
2618             </summary>
2619             <param name="formatting">Indicates how the output should be formatted.</param>
2620             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
2621             <returns>The JSON for this token using the given formatting and converters.</returns>
2622         </member>
2623         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2624             <summary>
2625             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2626             </summary>
2627             <param name="value">The value.</param>
2628             <returns>The result of the conversion.</returns>
2629         </member>
2630         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
2631             <summary>
2632             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
2633             </summary>
2634             <param name="value">The value.</param>
2635             <returns>The result of the conversion.</returns>
2636         </member>
2637         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2638             <summary>
2639             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2640             </summary>
2641             <param name="value">The value.</param>
2642             <returns>The result of the conversion.</returns>
2643         </member>
2644         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2645             <summary>
2646             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
2647             </summary>
2648             <param name="value">The value.</param>
2649             <returns>The result of the conversion.</returns>
2650         </member>
2651         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2652             <summary>
2653             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2654             </summary>
2655             <param name="value">The value.</param>
2656             <returns>The result of the conversion.</returns>
2657         </member>
2658         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
2659             <summary>
2660             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2661             </summary>
2662             <param name="value">The value.</param>
2663             <returns>The result of the conversion.</returns>
2664         </member>
2665         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2666             <summary>
2667             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2668             </summary>
2669             <param name="value">The value.</param>
2670             <returns>The result of the conversion.</returns>
2671         </member>
2672         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2673             <summary>
2674             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2675             </summary>
2676             <param name="value">The value.</param>
2677             <returns>The result of the conversion.</returns>
2678         </member>
2679         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2680             <summary>
2681             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/>.
2682             </summary>
2683             <param name="value">The value.</param>
2684             <returns>The result of the conversion.</returns>
2685         </member>
2686         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2687             <summary>
2688             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2689             </summary>
2690             <param name="value">The value.</param>
2691             <returns>The result of the conversion.</returns>
2692         </member>
2693         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2694             <summary>
2695             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2696             </summary>
2697             <param name="value">The value.</param>
2698             <returns>The result of the conversion.</returns>
2699         </member>
2700         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2701             <summary>
2702             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2703             </summary>
2704             <param name="value">The value.</param>
2705             <returns>The result of the conversion.</returns>
2706         </member>
2707         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2708             <summary>
2709             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2710             </summary>
2711             <param name="value">The value.</param>
2712             <returns>The result of the conversion.</returns>
2713         </member>
2714         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2715             <summary>
2716             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2717             </summary>
2718             <param name="value">The value.</param>
2719             <returns>The result of the conversion.</returns>
2720         </member>
2721         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2722             <summary>
2723             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2724             </summary>
2725             <param name="value">The value.</param>
2726             <returns>The result of the conversion.</returns>
2727         </member>
2728         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2729             <summary>
2730             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> .
2731             </summary>
2732             <param name="value">The value.</param>
2733             <returns>The result of the conversion.</returns>
2734         </member>
2735         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2736             <summary>
2737             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/>.
2738             </summary>
2739             <param name="value">The value.</param>
2740             <returns>The result of the conversion.</returns>
2741         </member>
2742         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2743             <summary>
2744             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/>.
2745             </summary>
2746             <param name="value">The value.</param>
2747             <returns>The result of the conversion.</returns>
2748         </member>
2749         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2750             <summary>
2751             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/>.
2752             </summary>
2753             <param name="value">The value.</param>
2754             <returns>The result of the conversion.</returns>
2755         </member>
2756         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2757             <summary>
2758             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/>.
2759             </summary>
2760             <param name="value">The value.</param>
2761             <returns>The result of the conversion.</returns>
2762         </member>
2763         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2764             <summary>
2765             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2766             </summary>
2767             <param name="value">The value.</param>
2768             <returns>The result of the conversion.</returns>
2769         </member>
2770         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2771             <summary>
2772             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
2773             </summary>
2774             <param name="value">The value.</param>
2775             <returns>The result of the conversion.</returns>
2776         </member>
2777         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2778             <summary>
2779             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/>.
2780             </summary>
2781             <param name="value">The value.</param>
2782             <returns>The result of the conversion.</returns>
2783         </member>
2784         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2785             <summary>
2786             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2787             </summary>
2788             <param name="value">The value.</param>
2789             <returns>The result of the conversion.</returns>
2790         </member>
2791         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2792             <summary>
2793             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/>.
2794             </summary>
2795             <param name="value">The value.</param>
2796             <returns>The result of the conversion.</returns>
2797         </member>
2798         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2799             <summary>
2800             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/>.
2801             </summary>
2802             <param name="value">The value.</param>
2803             <returns>The result of the conversion.</returns>
2804         </member>
2805         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2806             <summary>
2807             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2808             </summary>
2809             <param name="value">The value.</param>
2810             <returns>The result of the conversion.</returns>
2811         </member>
2812         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2813             <summary>
2814             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2815             </summary>
2816             <param name="value">The value.</param>
2817             <returns>The result of the conversion.</returns>
2818         </member>
2819         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2820             <summary>
2821             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2822             </summary>
2823             <param name="value">The value.</param>
2824             <returns>The result of the conversion.</returns>
2825         </member>
2826         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2827             <summary>
2828             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2829             </summary>
2830             <param name="value">The value.</param>
2831             <returns>The result of the conversion.</returns>
2832         </member>
2833         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2834             <summary>
2835             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2836             </summary>
2837             <param name="value">The value.</param>
2838             <returns>The result of the conversion.</returns>
2839         </member>
2840         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2841             <summary>
2842             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2843             </summary>
2844             <param name="value">The value.</param>
2845             <returns>The result of the conversion.</returns>
2846         </member>
2847         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2848             <summary>
2849             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2850             </summary>
2851             <param name="value">The value.</param>
2852             <returns>The result of the conversion.</returns>
2853         </member>
2854         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2855             <summary>
2856             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> .
2857             </summary>
2858             <param name="value">The value.</param>
2859             <returns>The result of the conversion.</returns>
2860         </member>
2861         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2862             <summary>
2863             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2864             </summary>
2865             <param name="value">The value.</param>
2866             <returns>The result of the conversion.</returns>
2867         </member>
2868         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2869             <summary>
2870             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/>.
2871             </summary>
2872             <param name="value">The value.</param>
2873             <returns>The result of the conversion.</returns>
2874         </member>
2875         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2876             <summary>
2877             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2878             </summary>
2879             <param name="value">The value.</param>
2880             <returns>The result of the conversion.</returns>
2881         </member>
2882         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2883             <summary>
2884             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2885             </summary>
2886             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2887             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2888         </member>
2889         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
2890             <summary>
2891             Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2892             </summary>
2893             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2894             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2895         </member>
2896         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2897             <summary>
2898             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2899             </summary>
2900             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2901             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2902         </member>
2903         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2904             <summary>
2905             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2906             </summary>
2907             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2908             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2909         </member>
2910         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2911             <summary>
2912             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2913             </summary>
2914             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2915             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2916         </member>
2917         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2918             <summary>
2919             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2920             </summary>
2921             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2922             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2923         </member>
2924         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2925             <summary>
2926             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2927             </summary>
2928             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2929             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2930         </member>
2931         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2932             <summary>
2933             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2934             </summary>
2935             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2936             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2937         </member>
2938         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2939             <summary>
2940             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2941             </summary>
2942             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2943             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2944         </member>
2945         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
2946             <summary>
2947             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2948             </summary>
2949             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2950             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2951         </member>
2952         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2953             <summary>
2954             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2955             </summary>
2956             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2957             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2958         </member>
2959         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2960             <summary>
2961             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2962             </summary>
2963             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2964             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2965         </member>
2966         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2967             <summary>
2968             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2969             </summary>
2970             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2971             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2972         </member>
2973         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2974             <summary>
2975             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2976             </summary>
2977             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2978             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2979         </member>
2980         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2981             <summary>
2982             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2983             </summary>
2984             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2985             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2986         </member>
2987         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2988             <summary>
2989             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2990             </summary>
2991             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2992             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2993         </member>
2994         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2995             <summary>
2996             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2997             </summary>
2998             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2999             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3000         </member>
3001         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
3002             <summary>
3003             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3004             </summary>
3005             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3006             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3007         </member>
3008         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
3009             <summary>
3010             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3011             </summary>
3012             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3013             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3014         </member>
3015         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
3016             <summary>
3017             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3018             </summary>
3019             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3020             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3021         </member>
3022         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
3023             <summary>
3024             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3025             </summary>
3026             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3027             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3028         </member>
3029         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
3030             <summary>
3031             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3032             </summary>
3033             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3034             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3035         </member>
3036         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
3037             <summary>
3038             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3039             </summary>
3040             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3041             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3042         </member>
3043         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
3044             <summary>
3045             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3046             </summary>
3047             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3048             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3049         </member>
3050         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
3051             <summary>
3052             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3053             </summary>
3054             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3055             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3056         </member>
3057         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
3058             <summary>
3059             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3060             </summary>
3061             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3062             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3063         </member>
3064         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
3065             <summary>
3066             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3067             </summary>
3068             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3069             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3070         </member>
3071         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
3072             <summary>
3073             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3074             </summary>
3075             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3076             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3077         </member>
3078         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
3079             <summary>
3080             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3081             </summary>
3082             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3083             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3084         </member>
3085         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3086             <summary>
3087             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3088             </summary>
3089             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3090             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3091         </member>
3092         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3093             <summary>
3094             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3095             </summary>
3096             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3097             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3098         </member>
3099         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3100             <summary>
3101             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3102             </summary>
3103             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3104             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3105         </member>
3106         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3107             <summary>
3108             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3109             </summary>
3110             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3111             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3112         </member>
3113         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3114             <summary>
3115             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3116             </summary>
3117             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3118             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3119         </member>
3120         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3121             <summary>
3122             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3123             </summary>
3124             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3125             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3126         </member>
3127         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3128             <summary>
3129             Creates a <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3130             </summary>
3131             <returns>A <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3132         </member>
3133         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3134             <summary>
3135             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3136             </summary>
3137             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3138             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
3139         </member>
3140         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3141             <summary>
3142             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3143             </summary>
3144             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3145             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3146             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
3147         </member>
3148         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3149             <summary>
3150             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3151             </summary>
3152             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3153             <returns>The new object created from the JSON value.</returns>
3154         </member>
3155         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3156             <summary>
3157             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3158             </summary>
3159             <param name="objectType">The object type that the token will be deserialized to.</param>
3160             <returns>The new object created from the JSON value.</returns>
3161         </member>
3162         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3163             <summary>
3164             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3165             </summary>
3166             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3167             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3168             <returns>The new object created from the JSON value.</returns>
3169         </member>
3170         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3171             <summary>
3172             Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3173             </summary>
3174             <param name="objectType">The object type that the token will be deserialized to.</param>
3175             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3176             <returns>The new object created from the JSON value.</returns>
3177         </member>
3178         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3179             <summary>
3180             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3181             </summary>
3182             <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3183             <returns>
3184             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3185             that were read from the reader. The runtime type of the token is determined
3186             by the token type of the first token encountered in the reader.
3187             </returns>
3188         </member>
3189         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3190             <summary>
3191             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3192             </summary>
3193             <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>
3194             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3195             If this is <c>null</c>, default load settings will be used.</param>
3196             <returns>
3197             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3198             that were read from the reader. The runtime type of the token is determined
3199             by the token type of the first token encountered in the reader.
3200             </returns>
3201         </member>
3202         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3203             <summary>
3204             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3205             </summary>
3206             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3207             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3208         </member>
3209         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
3210             <summary>
3211             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3212             </summary>
3213             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3214             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3215             If this is <c>null</c>, default load settings will be used.</param>
3216             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3217         </member>
3218         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3219             <summary>
3220             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3221             </summary>
3222             <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3223             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3224             If this is <c>null</c>, default load settings will be used.</param>
3225             <returns>
3226             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3227             that were read from the reader. The runtime type of the token is determined
3228             by the token type of the first token encountered in the reader.
3229             </returns>
3230         </member>
3231         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3232             <summary>
3233             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3234             </summary>
3235             <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3236             <returns>
3237             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3238             that were read from the reader. The runtime type of the token is determined
3239             by the token type of the first token encountered in the reader.
3240             </returns>
3241         </member>
3242         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3243             <summary>
3244             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3245             </summary>
3246             <param name="path">
3247             A <see cref="T:System.String"/> that contains a JPath expression.
3248             </param>
3249             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or <c>null</c>.</returns>
3250         </member>
3251         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3252             <summary>
3253             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3254             </summary>
3255             <param name="path">
3256             A <see cref="T:System.String"/> that contains a JPath expression.
3257             </param>
3258             <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>
3259             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3260         </member>
3261         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3262             <summary>
3263             Selects a collection of elements using a JPath expression.
3264             </summary>
3265             <param name="path">
3266             A <see cref="T:System.String"/> that contains a JPath expression.
3267             </param>
3268             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
3269         </member>
3270         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3271             <summary>
3272             Selects a collection of elements using a JPath expression.
3273             </summary>
3274             <param name="path">
3275             A <see cref="T:System.String"/> that contains a JPath expression.
3276             </param>
3277             <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>
3278             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
3279         </member>
3280         <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
3281             <summary>
3282             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3283             </summary>
3284             <param name="parameter">The expression tree representation of the runtime value.</param>
3285             <returns>
3286             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3287             </returns>
3288         </member>
3289         <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
3290             <summary>
3291             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3292             </summary>
3293             <param name="parameter">The expression tree representation of the runtime value.</param>
3294             <returns>
3295             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3296             </returns>
3297         </member>
3298         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3299             <summary>
3300             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3301             </summary>
3302             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3303         </member>
3304         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3305             <summary>
3306             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3307             </summary>
3308             <param name="annotation">The annotation to add.</param>
3309         </member>
3310         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3311             <summary>
3312             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3313             </summary>
3314             <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3315             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3316         </member>
3317         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3318             <summary>
3319             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3320             </summary>
3321             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3322             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3323         </member>
3324         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3325             <summary>
3326             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3327             </summary>
3328             <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3329             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3330         </member>
3331         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3332             <summary>
3333             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3334             </summary>
3335             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3336             <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>
3337         </member>
3338         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3339             <summary>
3340             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3341             </summary>
3342             <typeparam name="T">The type of annotations to remove.</typeparam>
3343         </member>
3344         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3345             <summary>
3346             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3347             </summary>
3348             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3349         </member>
3350         <member name="T:Newtonsoft.Json.Linq.JProperty">
3351             <summary>
3352             Represents a JSON property.
3353             </summary>
3354         </member>
3355         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
3356             <summary>
3357             Gets the container's children tokens.
3358             </summary>
3359             <value>The container's children tokens.</value>
3360         </member>
3361         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
3362             <summary>
3363             Gets the property name.
3364             </summary>
3365             <value>The property name.</value>
3366         </member>
3367         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
3368             <summary>
3369             Gets or sets the property value.
3370             </summary>
3371             <value>The property value.</value>
3372         </member>
3373         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
3374             <summary>
3375             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
3376             </summary>
3377             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
3378         </member>
3379         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
3380             <summary>
3381             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3382             </summary>
3383             <value>The type.</value>
3384         </member>
3385         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
3386             <summary>
3387             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3388             </summary>
3389             <param name="name">The property name.</param>
3390             <param name="content">The property content.</param>
3391         </member>
3392         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
3393             <summary>
3394             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3395             </summary>
3396             <param name="name">The property name.</param>
3397             <param name="content">The property content.</param>
3398         </member>
3399         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3400             <summary>
3401             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3402             </summary>
3403             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3404             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3405         </member>
3406         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
3407             <summary>
3408             Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3409             </summary>
3410             <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>
3411             <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>
3412         </member>
3413         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3414             <summary>
3415             Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3416             </summary>
3417             <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>
3418             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3419             If this is <c>null</c>, default load settings will be used.</param>
3420             <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>
3421         </member>
3422         <member name="T:Newtonsoft.Json.Linq.JTokenType">
3423             <summary>
3424             Specifies the type of token.
3425             </summary>
3426         </member>
3427         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
3428             <summary>
3429             No token type has been set.
3430             </summary>
3431         </member>
3432         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
3433             <summary>
3434             A JSON object.
3435             </summary>
3436         </member>
3437         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
3438             <summary>
3439             A JSON array.
3440             </summary>
3441         </member>
3442         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
3443             <summary>
3444             A JSON constructor.
3445             </summary>
3446         </member>
3447         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
3448             <summary>
3449             A JSON object property.
3450             </summary>
3451         </member>
3452         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
3453             <summary>
3454             A comment.
3455             </summary>
3456         </member>
3457         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
3458             <summary>
3459             An integer value.
3460             </summary>
3461         </member>
3462         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
3463             <summary>
3464             A float value.
3465             </summary>
3466         </member>
3467         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
3468             <summary>
3469             A string value.
3470             </summary>
3471         </member>
3472         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
3473             <summary>
3474             A boolean value.
3475             </summary>
3476         </member>
3477         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
3478             <summary>
3479             A null value.
3480             </summary>
3481         </member>
3482         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
3483             <summary>
3484             An undefined value.
3485             </summary>
3486         </member>
3487         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
3488             <summary>
3489             A date value.
3490             </summary>
3491         </member>
3492         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
3493             <summary>
3494             A raw JSON value.
3495             </summary>
3496         </member>
3497         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
3498             <summary>
3499             A collection of bytes value.
3500             </summary>
3501         </member>
3502         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
3503             <summary>
3504             A Guid value.
3505             </summary>
3506         </member>
3507         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
3508             <summary>
3509             A Uri value.
3510             </summary>
3511         </member>
3512         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
3513             <summary>
3514             A TimeSpan value.
3515             </summary>
3516         </member>
3517         <member name="T:Newtonsoft.Json.Linq.JValue">
3518             <summary>
3519             Represents a value in JSON (string, integer, date, etc).
3520             </summary>
3521         </member>
3522         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3523             <summary>
3524             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3525             </summary>
3526             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3527         </member>
3528         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3529             <summary>
3530             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3531             </summary>
3532             <param name="value">The value.</param>
3533         </member>
3534         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3535             <summary>
3536             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3537             </summary>
3538             <param name="value">The value.</param>
3539         </member>
3540         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3541             <summary>
3542             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3543             </summary>
3544             <param name="value">The value.</param>
3545         </member>
3546         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3547             <summary>
3548             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3549             </summary>
3550             <param name="value">The value.</param>
3551         </member>
3552         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3553             <summary>
3554             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3555             </summary>
3556             <param name="value">The value.</param>
3557         </member>
3558         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3559             <summary>
3560             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3561             </summary>
3562             <param name="value">The value.</param>
3563         </member>
3564         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3565             <summary>
3566             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3567             </summary>
3568             <param name="value">The value.</param>
3569         </member>
3570         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
3571             <summary>
3572             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3573             </summary>
3574             <param name="value">The value.</param>
3575         </member>
3576         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3577             <summary>
3578             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3579             </summary>
3580             <param name="value">The value.</param>
3581         </member>
3582         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3583             <summary>
3584             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3585             </summary>
3586             <param name="value">The value.</param>
3587         </member>
3588         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3589             <summary>
3590             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3591             </summary>
3592             <param name="value">The value.</param>
3593         </member>
3594         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3595             <summary>
3596             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3597             </summary>
3598             <param name="value">The value.</param>
3599         </member>
3600         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3601             <summary>
3602             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3603             </summary>
3604             <param name="value">The value.</param>
3605         </member>
3606         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3607             <summary>
3608             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3609             </summary>
3610             <param name="value">The value.</param>
3611         </member>
3612         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3613             <summary>
3614             Gets a value indicating whether this token has child tokens.
3615             </summary>
3616             <value>
3617                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
3618             </value>
3619         </member>
3620         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3621             <summary>
3622             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3623             </summary>
3624             <param name="value">The value.</param>
3625             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3626         </member>
3627         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3628             <summary>
3629             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3630             </summary>
3631             <param name="value">The value.</param>
3632             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3633         </member>
3634         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3635             <summary>
3636             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3637             </summary>
3638             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3639         </member>
3640         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3641             <summary>
3642             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.
3643             </summary>
3644             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.</returns>
3645         </member>
3646         <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3647             <summary>
3648             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3649             </summary>
3650             <value>The type.</value>
3651         </member>
3652         <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3653             <summary>
3654             Gets or sets the underlying token value.
3655             </summary>
3656             <value>The underlying token value.</value>
3657         </member>
3658         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3659             <summary>
3660             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3661             </summary>
3662             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3663             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
3664         </member>
3665         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3666             <summary>
3667             Indicates whether the current object is equal to another object of the same type.
3668             </summary>
3669             <returns>
3670             <c>true</c> if the current object is equal to the <paramref name="other"/> parameter; otherwise, <c>false</c>.
3671             </returns>
3672             <param name="other">An object to compare with this object.</param>
3673         </member>
3674         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3675             <summary>
3676             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3677             </summary>
3678             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3679             <returns>
3680             <c>true</c> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <c>false</c>.
3681             </returns>
3682         </member>
3683         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3684             <summary>
3685             Serves as a hash function for a particular type.
3686             </summary>
3687             <returns>
3688             A hash code for the current <see cref="T:System.Object"/>.
3689             </returns>
3690         </member>
3691         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3692             <summary>
3693             Returns a <see cref="T:System.String"/> that represents this instance.
3694             </summary>
3695             <returns>
3696             A <see cref="T:System.String"/> that represents this instance.
3697             </returns>
3698         </member>
3699         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3700             <summary>
3701             Returns a <see cref="T:System.String"/> that represents this instance.
3702             </summary>
3703             <param name="format">The format.</param>
3704             <returns>
3705             A <see cref="T:System.String"/> that represents this instance.
3706             </returns>
3707         </member>
3708         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3709             <summary>
3710             Returns a <see cref="T:System.String"/> that represents this instance.
3711             </summary>
3712             <param name="formatProvider">The format provider.</param>
3713             <returns>
3714             A <see cref="T:System.String"/> that represents this instance.
3715             </returns>
3716         </member>
3717         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3718             <summary>
3719             Returns a <see cref="T:System.String"/> that represents this instance.
3720             </summary>
3721             <param name="format">The format.</param>
3722             <param name="formatProvider">The format provider.</param>
3723             <returns>
3724             A <see cref="T:System.String"/> that represents this instance.
3725             </returns>
3726         </member>
3727         <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
3728             <summary>
3729             Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
3730             </summary>
3731             <param name="parameter">The expression tree representation of the runtime value.</param>
3732             <returns>
3733             The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3734             </returns>
3735         </member>
3736         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3737             <summary>
3738             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.
3739             </summary>
3740             <param name="obj">An object to compare with this instance.</param>
3741             <returns>
3742             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3743             Value
3744             Meaning
3745             Less than zero
3746             This instance is less than <paramref name="obj"/>.
3747             Zero
3748             This instance is equal to <paramref name="obj"/>.
3749             Greater than zero
3750             This instance is greater than <paramref name="obj"/>.
3751             </returns>
3752             <exception cref="T:System.ArgumentException">
3753                 <paramref name="obj"/> is not of the same type as this instance.
3754             </exception>
3755         </member>
3756         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
3757             <summary>
3758             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3759             </summary>
3760         </member>
3761         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
3762             <summary>
3763             Read metadata properties located at the start of a JSON object.
3764             </summary>
3765         </member>
3766         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
3767             <summary>
3768             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
3769             </summary>
3770         </member>
3771         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
3772             <summary>
3773             Do not try to read metadata properties.
3774             </summary>
3775         </member>
3776         <member name="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy">
3777             <summary>
3778             A camel case naming strategy.
3779             </summary>
3780         </member>
3781         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
3782             <summary>
3783             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
3784             </summary>
3785             <param name="processDictionaryKeys">
3786             A flag indicating whether dictionary keys should be processed.
3787             </param>
3788             <param name="overrideSpecifiedNames">
3789             A flag indicating whether explicitly specified property names should be processed,
3790             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
3791             </param>
3792         </member>
3793         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
3794             <summary>
3795             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
3796             </summary>
3797             <param name="processDictionaryKeys">
3798             A flag indicating whether dictionary keys should be processed.
3799             </param>
3800             <param name="overrideSpecifiedNames">
3801             A flag indicating whether explicitly specified property names should be processed,
3802             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
3803             </param>
3804             <param name="processExtensionDataNames">
3805             A flag indicating whether extension data names should be processed.
3806             </param>
3807         </member>
3808         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor">
3809             <summary>
3810             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
3811             </summary>
3812         </member>
3813         <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.ResolvePropertyName(System.String)">
3814             <summary>
3815             Resolves the specified property name.
3816             </summary>
3817             <param name="name">The property name to resolve.</param>
3818             <returns>The resolved property name.</returns>
3819         </member>
3820         <member name="T:Newtonsoft.Json.Serialization.DefaultNamingStrategy">
3821             <summary>
3822             The default naming strategy. Property names and dictionary keys are unchanged.
3823             </summary>
3824         </member>
3825         <member name="M:Newtonsoft.Json.Serialization.DefaultNamingStrategy.ResolvePropertyName(System.String)">
3826             <summary>
3827             Resolves the specified property name.
3828             </summary>
3829             <param name="name">The property name to resolve.</param>
3830             <returns>The resolved property name.</returns>
3831         </member>
3832         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
3833             <summary>
3834             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
3835             </summary>
3836         </member>
3837         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
3838             <summary>
3839             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3840             For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
3841             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
3842             </summary>
3843             <value>
3844             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3845             </value>
3846         </member>
3847         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3848             <summary>
3849             Writes the specified trace level, message and optional exception.
3850             </summary>
3851             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3852             <param name="message">The trace message.</param>
3853             <param name="ex">The trace exception. This parameter is optional.</param>
3854         </member>
3855         <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
3856             <summary>
3857             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
3858             </summary>
3859         </member>
3860         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
3861             <summary>
3862             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
3863             </summary>
3864             <param name="memberInfo">The member info.</param>
3865         </member>
3866         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
3867             <summary>
3868             Sets the value.
3869             </summary>
3870             <param name="target">The target to set the value on.</param>
3871             <param name="value">The value to set on the target.</param>
3872         </member>
3873         <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
3874             <summary>
3875             Gets the value.
3876             </summary>
3877             <param name="target">The target to get the value from.</param>
3878             <returns>The value.</returns>
3879         </member>
3880         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
3881             <summary>
3882             Provides methods to get attributes.
3883             </summary>
3884         </member>
3885         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
3886             <summary>
3887             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3888             </summary>
3889             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
3890             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3891         </member>
3892         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3893             <summary>
3894             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3895             </summary>
3896             <param name="attributeType">The type of the attributes.</param>
3897             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
3898             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3899         </member>
3900         <member name="T:Newtonsoft.Json.Serialization.ISerializationBinder">
3901             <summary>
3902             Allows users to control class loading and mandate what class to load.
3903             </summary>
3904         </member>
3905         <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToType(System.String,System.String)">
3906             <summary>
3907             When implemented, controls the binding of a serialized object to a type.
3908             </summary>
3909             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
3910             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object</param>
3911             <returns>The type of the object the formatter creates a new instance of.</returns>
3912         </member>
3913         <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToName(System.Type,System.String@,System.String@)">
3914             <summary>
3915             When implemented, controls the binding of a serialized object to a type.
3916             </summary>
3917             <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
3918             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
3919             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
3920         </member>
3921         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
3922             <summary>
3923             Represents a trace writer.
3924             </summary>
3925         </member>
3926         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
3927             <summary>
3928             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3929             For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
3930             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
3931             </summary>
3932             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
3933         </member>
3934         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3935             <summary>
3936             Writes the specified trace level, message and optional exception.
3937             </summary>
3938             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3939             <param name="message">The trace message.</param>
3940             <param name="ex">The trace exception. This parameter is optional.</param>
3941         </member>
3942         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
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.JsonContainerContract.ItemConverter">
3948             <summary>
3949             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
3950             </summary>
3951             <value>The converter.</value>
3952         </member>
3953         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
3954             <summary>
3955             Gets or sets a value indicating whether the collection items preserve object references.
3956             </summary>
3957             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
3958         </member>
3959         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
3960             <summary>
3961             Gets or sets the collection item reference loop handling.
3962             </summary>
3963             <value>The reference loop handling.</value>
3964         </member>
3965         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
3966             <summary>
3967             Gets or sets the collection item type name handling.
3968             </summary>
3969             <value>The type name handling.</value>
3970         </member>
3971         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
3972             <summary>
3973             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
3974             </summary>
3975             <param name="underlyingType">The underlying type for the contract.</param>
3976         </member>
3977         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
3978             <summary>
3979             Represents a trace writer that writes to memory. When the trace message limit is
3980             reached then old trace messages will be removed as new messages are added.
3981             </summary>
3982         </member>
3983         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
3984             <summary>
3985             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3986             For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
3987             <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
3988             </summary>
3989             <value>
3990             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3991             </value>
3992         </member>
3993         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
3994             <summary>
3995             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
3996             </summary>
3997         </member>
3998         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3999             <summary>
4000             Writes the specified trace level, message and optional exception.
4001             </summary>
4002             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
4003             <param name="message">The trace message.</param>
4004             <param name="ex">The trace exception. This parameter is optional.</param>
4005         </member>
4006         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
4007             <summary>
4008             Returns an enumeration of the most recent trace messages.
4009             </summary>
4010             <returns>An enumeration of the most recent trace messages.</returns>
4011         </member>
4012         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
4013             <summary>
4014             Returns a <see cref="T:System.String"/> of the most recent trace messages.
4015             </summary>
4016             <returns>
4017             A <see cref="T:System.String"/> of the most recent trace messages.
4018             </returns>
4019         </member>
4020         <member name="T:Newtonsoft.Json.Serialization.NamingStrategy">
4021             <summary>
4022             A base class for resolving how property names and dictionary keys are serialized.
4023             </summary>
4024         </member>
4025         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessDictionaryKeys">
4026             <summary>
4027             A flag indicating whether dictionary keys should be processed.
4028             Defaults to <c>false</c>.
4029             </summary>
4030         </member>
4031         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessExtensionDataNames">
4032             <summary>
4033             A flag indicating whether extension data names should be processed.
4034             Defaults to <c>false</c>.
4035             </summary>
4036         </member>
4037         <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.OverrideSpecifiedNames">
4038             <summary>
4039             A flag indicating whether explicitly specified property names,
4040             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>, should be processed.
4041             Defaults to <c>false</c>.
4042             </summary>
4043         </member>
4044         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetPropertyName(System.String,System.Boolean)">
4045             <summary>
4046             Gets the serialized name for a given property name.
4047             </summary>
4048             <param name="name">The initial property name.</param>
4049             <param name="hasSpecifiedName">A flag indicating whether the property has had a name explicitly specified.</param>
4050             <returns>The serialized property name.</returns>
4051         </member>
4052         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetExtensionDataName(System.String)">
4053             <summary>
4054             Gets the serialized name for a given extension data name.
4055             </summary>
4056             <param name="name">The initial extension data name.</param>
4057             <returns>The serialized extension data name.</returns>
4058         </member>
4059         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetDictionaryKey(System.String)">
4060             <summary>
4061             Gets the serialized key for a given dictionary key.
4062             </summary>
4063             <param name="key">The initial dictionary key.</param>
4064             <returns>The serialized dictionary key.</returns>
4065         </member>
4066         <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.ResolvePropertyName(System.String)">
4067             <summary>
4068             Resolves the specified property name.
4069             </summary>
4070             <param name="name">The property name to resolve.</param>
4071             <returns>The resolved property name.</returns>
4072         </member>
4073         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
4074             <summary>
4075             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"/>.
4076             </summary>
4077         </member>
4078         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
4079             <summary>
4080             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
4081             </summary>
4082             <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>
4083         </member>
4084         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
4085             <summary>
4086             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
4087             </summary>
4088             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
4089             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
4090         </member>
4091         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
4092             <summary>
4093             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
4094             </summary>
4095             <param name="attributeType">The type of the attributes.</param>
4096             <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
4097             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
4098         </member>
4099         <member name="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy">
4100             <summary>
4101             A snake case naming strategy.
4102             </summary>
4103         </member>
4104         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
4105             <summary>
4106             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
4107             </summary>
4108             <param name="processDictionaryKeys">
4109             A flag indicating whether dictionary keys should be processed.
4110             </param>
4111             <param name="overrideSpecifiedNames">
4112             A flag indicating whether explicitly specified property names should be processed,
4113             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
4114             </param>
4115         </member>
4116         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
4117             <summary>
4118             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
4119             </summary>
4120             <param name="processDictionaryKeys">
4121             A flag indicating whether dictionary keys should be processed.
4122             </param>
4123             <param name="overrideSpecifiedNames">
4124             A flag indicating whether explicitly specified property names should be processed,
4125             e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
4126             </param>
4127             <param name="processExtensionDataNames">
4128             A flag indicating whether extension data names should be processed.
4129             </param>
4130         </member>
4131         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor">
4132             <summary>
4133             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
4134             </summary>
4135         </member>
4136         <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.ResolvePropertyName(System.String)">
4137             <summary>
4138             Resolves the specified property name.
4139             </summary>
4140             <param name="name">The property name to resolve.</param>
4141             <returns>The resolved property name.</returns>
4142         </member>
4143         <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
4144             <summary>
4145             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4146             </summary>
4147         </member>
4148         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
4149             <summary>
4150             Gets the object's properties.
4151             </summary>
4152             <value>The object's properties.</value>
4153         </member>
4154         <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
4155             <summary>
4156             Gets or sets the property name resolver.
4157             </summary>
4158             <value>The property name resolver.</value>
4159         </member>
4160         <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
4161             <summary>
4162             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
4163             </summary>
4164             <param name="underlyingType">The underlying type for the contract.</param>
4165         </member>
4166         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
4167             <summary>
4168             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4169             </summary>
4170         </member>
4171         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
4172             <summary>
4173             Gets or sets the <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.
4174             </summary>
4175             <value>The <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.</value>
4176         </member>
4177         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
4178             <summary>
4179             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
4180             </summary>
4181             <param name="underlyingType">The underlying type for the contract.</param>
4182         </member>
4183         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
4184             <summary>
4185             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4186             </summary>
4187         </member>
4188         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
4189             <summary>
4190             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
4191             </summary>
4192             <param name="underlyingType">The underlying type for the contract.</param>
4193         </member>
4194         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
4195             <summary>
4196             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4197             </summary>
4198         </member>
4199         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
4200             <summary>
4201             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
4202             </summary>
4203             <param name="underlyingType">The underlying type for the contract.</param>
4204         </member>
4205         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
4206             <summary>
4207             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
4208             </summary>
4209         </member>
4210         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
4211             <summary>
4212             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
4213             </summary>
4214             <param name="memberInfo">The member info.</param>
4215         </member>
4216         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
4217             <summary>
4218             Sets the value.
4219             </summary>
4220             <param name="target">The target to set the value on.</param>
4221             <param name="value">The value to set on the target.</param>
4222         </member>
4223         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
4224             <summary>
4225             Gets the value.
4226             </summary>
4227             <param name="target">The target to get the value from.</param>
4228             <returns>The value.</returns>
4229         </member>
4230         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
4231             <summary>
4232             Provides data for the Error event.
4233             </summary>
4234         </member>
4235         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
4236             <summary>
4237             Gets the current object the error event is being raised against.
4238             </summary>
4239             <value>The current object the error event is being raised against.</value>
4240         </member>
4241         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
4242             <summary>
4243             Gets the error context.
4244             </summary>
4245             <value>The error context.</value>
4246         </member>
4247         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
4248             <summary>
4249             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
4250             </summary>
4251             <param name="currentObject">The current object.</param>
4252             <param name="errorContext">The error context.</param>
4253         </member>
4254         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
4255             <summary>
4256             Resolves member mappings for a type, camel casing property names.
4257             </summary>
4258         </member>
4259         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
4260             <summary>
4261             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
4262             </summary>
4263         </member>
4264         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolveContract(System.Type)">
4265             <summary>
4266             Resolves the contract for a given type.
4267             </summary>
4268             <param name="type">The type to resolve a contract for.</param>
4269             <returns>The contract for a given type.</returns>
4270         </member>
4271         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
4272             <summary>
4273             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
4274             </summary>
4275         </member>
4276         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
4277             <summary>
4278             Gets a value indicating whether members are being get and set using dynamic code generation.
4279             This value is determined by the runtime permissions available.
4280             </summary>
4281             <value>
4282                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
4283             </value>
4284         </member>
4285         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
4286             <summary>
4287             Gets or sets the default members search flags.
4288             </summary>
4289             <value>The default members search flags.</value>
4290         </member>
4291         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
4292             <summary>
4293             Gets or sets a value indicating whether compiler generated members should be serialized.
4294             </summary>
4295             <value>
4296                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
4297             </value>
4298         </member>
4299         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
4300             <summary>
4301             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
4302             </summary>
4303             <value>
4304                 <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>.
4305             </value>
4306         </member>
4307         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
4308             <summary>
4309             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
4310             </summary>
4311             <value>
4312                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
4313             </value>
4314         </member>
4315         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.NamingStrategy">
4316             <summary>
4317             Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized.
4318             </summary>
4319             <value>The naming strategy used to resolve how property names and dictionary keys are serialized.</value>
4320         </member>
4321         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
4322             <summary>
4323             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
4324             </summary>
4325         </member>
4326         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
4327             <summary>
4328             Resolves the contract for a given type.
4329             </summary>
4330             <param name="type">The type to resolve a contract for.</param>
4331             <returns>The contract for a given type.</returns>
4332         </member>
4333         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
4334             <summary>
4335             Gets the serializable members for the type.
4336             </summary>
4337             <param name="objectType">The type to get serializable members for.</param>
4338             <returns>The serializable members for the type.</returns>
4339         </member>
4340         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
4341             <summary>
4342             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
4343             </summary>
4344             <param name="objectType">Type of the object.</param>
4345             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
4346         </member>
4347         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
4348             <summary>
4349             Creates the constructor parameters.
4350             </summary>
4351             <param name="constructor">The constructor to create properties for.</param>
4352             <param name="memberProperties">The type's member properties.</param>
4353             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
4354         </member>
4355         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
4356             <summary>
4357             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
4358             </summary>
4359             <param name="matchingMemberProperty">The matching member property.</param>
4360             <param name="parameterInfo">The constructor parameter.</param>
4361             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
4362         </member>
4363         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
4364             <summary>
4365             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
4366             </summary>
4367             <param name="objectType">Type of the object.</param>
4368             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
4369         </member>
4370         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
4371             <summary>
4372             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
4373             </summary>
4374             <param name="objectType">Type of the object.</param>
4375             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
4376         </member>
4377         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
4378             <summary>
4379             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
4380             </summary>
4381             <param name="objectType">Type of the object.</param>
4382             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
4383         </member>
4384         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
4385             <summary>
4386             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
4387             </summary>
4388             <param name="objectType">Type of the object.</param>
4389             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
4390         </member>
4391         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
4392             <summary>
4393             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
4394             </summary>
4395             <param name="objectType">Type of the object.</param>
4396             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
4397         </member>
4398         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
4399             <summary>
4400             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
4401             </summary>
4402             <param name="objectType">Type of the object.</param>
4403             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
4404         </member>
4405         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
4406             <summary>
4407             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
4408             </summary>
4409             <param name="objectType">Type of the object.</param>
4410             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
4411         </member>
4412         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
4413             <summary>
4414             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
4415             </summary>
4416             <param name="objectType">Type of the object.</param>
4417             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
4418         </member>
4419         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
4420             <summary>
4421             Determines which contract type is created for the given type.
4422             </summary>
4423             <param name="objectType">Type of the object.</param>
4424             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
4425         </member>
4426         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
4427             <summary>
4428             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
4429             </summary>
4430             <param name="type">The type to create properties for.</param>
4431             /// <param name="memberSerialization">The member serialization mode for the type.</param>
4432             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
4433         </member>
4434         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
4435             <summary>
4436             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
4437             </summary>
4438             <param name="member">The member.</param>
4439             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
4440         </member>
4441         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
4442             <summary>
4443             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
4444             </summary>
4445             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
4446             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
4447             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
4448         </member>
4449         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
4450             <summary>
4451             Resolves the name of the property.
4452             </summary>
4453             <param name="propertyName">Name of the property.</param>
4454             <returns>Resolved name of the property.</returns>
4455         </member>
4456         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveExtensionDataName(System.String)">
4457             <summary>
4458             Resolves the name of the extension data. By default no changes are made to extension data names.
4459             </summary>
4460             <param name="extensionDataName">Name of the extension data.</param>
4461             <returns>Resolved name of the extension data.</returns>
4462         </member>
4463         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
4464             <summary>
4465             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
4466             </summary>
4467             <param name="dictionaryKey">Key of the dictionary.</param>
4468             <returns>Resolved key of the dictionary.</returns>
4469         </member>
4470         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
4471             <summary>
4472             Gets the resolved name of the property.
4473             </summary>
4474             <param name="propertyName">Name of the property.</param>
4475             <returns>Name of the property.</returns>
4476         </member>
4477         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
4478             <summary>
4479             The default serialization binder used when resolving and loading classes from type names.
4480             </summary>
4481         </member>
4482         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.#ctor">
4483             <summary>
4484             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"/> class.
4485             </summary>
4486         </member>
4487         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
4488             <summary>
4489             When overridden in a derived class, controls the binding of a serialized object to a type.
4490             </summary>
4491             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
4492             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
4493             <returns>
4494             The type of the object the formatter creates a new instance of.
4495             </returns>
4496         </member>
4497         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
4498             <summary>
4499             When overridden in a derived class, controls the binding of a serialized object to a type.
4500             </summary>
4501             <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
4502             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
4503             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
4504         </member>
4505         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
4506             <summary>
4507             Provides information surrounding an error.
4508             </summary>
4509         </member>
4510         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
4511             <summary>
4512             Gets the error.
4513             </summary>
4514             <value>The error.</value>
4515         </member>
4516         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
4517             <summary>
4518             Gets the original object that caused the error.
4519             </summary>
4520             <value>The original object that caused the error.</value>
4521         </member>
4522         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
4523             <summary>
4524             Gets the member that caused the error.
4525             </summary>
4526             <value>The member that caused the error.</value>
4527         </member>
4528         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
4529             <summary>
4530             Gets the path of the JSON location where the error occurred.
4531             </summary>
4532             <value>The path of the JSON location where the error occurred.</value>
4533         </member>
4534         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
4535             <summary>
4536             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
4537             </summary>
4538             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
4539         </member>
4540         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
4541             <summary>
4542             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
4543             </summary>
4544             <example>
4545               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
4546               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
4547             </example>
4548         </member>
4549         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
4550             <summary>
4551             Resolves the contract for a given type.
4552             </summary>
4553             <param name="type">The type to resolve a contract for.</param>
4554             <returns>The contract for a given type.</returns>
4555         </member>
4556         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
4557             <summary>
4558             Provides methods to get and set values.
4559             </summary>
4560         </member>
4561         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
4562             <summary>
4563             Sets the value.
4564             </summary>
4565             <param name="target">The target to set the value on.</param>
4566             <param name="value">The value to set on the target.</param>
4567         </member>
4568         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
4569             <summary>
4570             Gets the value.
4571             </summary>
4572             <param name="target">The target to get the value from.</param>
4573             <returns>The value.</returns>
4574         </member>
4575         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
4576             <summary>
4577             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4578             </summary>
4579         </member>
4580         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
4581             <summary>
4582             Gets the <see cref="T:System.Type"/> of the collection items.
4583             </summary>
4584             <value>The <see cref="T:System.Type"/> of the collection items.</value>
4585         </member>
4586         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
4587             <summary>
4588             Gets a value indicating whether the collection type is a multidimensional array.
4589             </summary>
4590             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
4591         </member>
4592         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
4593             <summary>
4594             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4595             </summary>
4596             <value>The function used to create the object.</value>
4597         </member>
4598         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
4599             <summary>
4600             Gets a value indicating whether the creator has a parameter with the collection values.
4601             </summary>
4602             <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
4603         </member>
4604         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
4605             <summary>
4606             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
4607             </summary>
4608             <param name="underlyingType">The underlying type for the contract.</param>
4609         </member>
4610         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
4611             <summary>
4612             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
4613             </summary>
4614             <param name="o">The object that raised the callback event.</param>
4615             <param name="context">The streaming context.</param>
4616         </member>
4617         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
4618             <summary>
4619             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
4620             </summary>
4621             <param name="o">The object that raised the callback event.</param>
4622             <param name="context">The streaming context.</param>
4623             <param name="errorContext">The error context.</param>
4624         </member>
4625         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
4626             <summary>
4627             Sets extension data for an object during deserialization.
4628             </summary>
4629             <param name="o">The object to set extension data on.</param>
4630             <param name="key">The extension data key.</param>
4631             <param name="value">The extension data value.</param>
4632         </member>
4633         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
4634             <summary>
4635             Gets extension data for an object during serialization.
4636             </summary>
4637             <param name="o">The object to set extension data on.</param>
4638         </member>
4639         <member name="T:Newtonsoft.Json.Serialization.JsonContract">
4640             <summary>
4641             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4642             </summary>
4643         </member>
4644         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
4645             <summary>
4646             Gets the underlying type for the contract.
4647             </summary>
4648             <value>The underlying type for the contract.</value>
4649         </member>
4650         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
4651             <summary>
4652             Gets or sets the type created during deserialization.
4653             </summary>
4654             <value>The type created during deserialization.</value>
4655         </member>
4656         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
4657             <summary>
4658             Gets or sets whether this type contract is serialized as a reference.
4659             </summary>
4660             <value>Whether this type contract is serialized as a reference.</value>
4661         </member>
4662         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
4663             <summary>
4664             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
4665             </summary>
4666             <value>The converter.</value>
4667         </member>
4668         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
4669             <summary>
4670             Gets or sets all methods called immediately after deserialization of the object.
4671             </summary>
4672             <value>The methods called immediately after deserialization of the object.</value>
4673         </member>
4674         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
4675             <summary>
4676             Gets or sets all methods called during deserialization of the object.
4677             </summary>
4678             <value>The methods called during deserialization of the object.</value>
4679         </member>
4680         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
4681             <summary>
4682             Gets or sets all methods called after serialization of the object graph.
4683             </summary>
4684             <value>The methods called after serialization of the object graph.</value>
4685         </member>
4686         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
4687             <summary>
4688             Gets or sets all methods called before serialization of the object.
4689             </summary>
4690             <value>The methods called before serialization of the object.</value>
4691         </member>
4692         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
4693             <summary>
4694             Gets or sets all method called when an error is thrown during the serialization of the object.
4695             </summary>
4696             <value>The methods called when an error is thrown during the serialization of the object.</value>
4697         </member>
4698         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
4699             <summary>
4700             Gets or sets the default creator method used to create the object.
4701             </summary>
4702             <value>The default creator method used to create the object.</value>
4703         </member>
4704         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
4705             <summary>
4706             Gets or sets a value indicating whether the default creator is non-public.
4707             </summary>
4708             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
4709         </member>
4710         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
4711             <summary>
4712             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4713             </summary>
4714         </member>
4715         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
4716             <summary>
4717             Gets or sets the dictionary key resolver.
4718             </summary>
4719             <value>The dictionary key resolver.</value>
4720         </member>
4721         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
4722             <summary>
4723             Gets the <see cref="T:System.Type"/> of the dictionary keys.
4724             </summary>
4725             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
4726         </member>
4727         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
4728             <summary>
4729             Gets the <see cref="T:System.Type"/> of the dictionary values.
4730             </summary>
4731             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
4732         </member>
4733         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
4734             <summary>
4735             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4736             </summary>
4737             <value>The function used to create the object.</value>
4738         </member>
4739         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
4740             <summary>
4741             Gets a value indicating whether the creator has a parameter with the dictionary values.
4742             </summary>
4743             <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
4744         </member>
4745         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
4746             <summary>
4747             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
4748             </summary>
4749             <param name="underlyingType">The underlying type for the contract.</param>
4750         </member>
4751         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
4752             <summary>
4753             Maps a JSON property to a .NET member or constructor parameter.
4754             </summary>
4755         </member>
4756         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
4757             <summary>
4758             Gets or sets the name of the property.
4759             </summary>
4760             <value>The name of the property.</value>
4761         </member>
4762         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
4763             <summary>
4764             Gets or sets the type that declared this property.
4765             </summary>
4766             <value>The type that declared this property.</value>
4767         </member>
4768         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
4769             <summary>
4770             Gets or sets the order of serialization of a member.
4771             </summary>
4772             <value>The numeric order of serialization.</value>
4773         </member>
4774         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
4775             <summary>
4776             Gets or sets the name of the underlying member or parameter.
4777             </summary>
4778             <value>The name of the underlying member or parameter.</value>
4779         </member>
4780         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
4781             <summary>
4782             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
4783             </summary>
4784             <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>
4785         </member>
4786         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
4787             <summary>
4788             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
4789             </summary>
4790             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
4791         </member>
4792         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
4793             <summary>
4794             Gets or sets the type of the property.
4795             </summary>
4796             <value>The type of the property.</value>
4797         </member>
4798         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
4799             <summary>
4800             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
4801             If set this converter takes precedence over the contract converter for the property type.
4802             </summary>
4803             <value>The converter.</value>
4804         </member>
4805         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
4806             <summary>
4807             Gets or sets the member converter.
4808             </summary>
4809             <value>The member converter.</value>
4810         </member>
4811         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
4812             <summary>
4813             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
4814             </summary>
4815             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
4816         </member>
4817         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
4818             <summary>
4819             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
4820             </summary>
4821             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
4822         </member>
4823         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
4824             <summary>
4825             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
4826             </summary>
4827             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
4828         </member>
4829         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
4830             <summary>
4831             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
4832             </summary>
4833             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
4834         </member>
4835         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
4836             <summary>
4837             Gets the default value.
4838             </summary>
4839             <value>The default value.</value>
4840         </member>
4841         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
4842             <summary>
4843             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
4844             </summary>
4845             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
4846         </member>
4847         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
4848             <summary>
4849             Gets or sets a value indicating whether this property preserves object references.
4850             </summary>
4851             <value>
4852                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
4853             </value>
4854         </member>
4855         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
4856             <summary>
4857             Gets or sets the property null value handling.
4858             </summary>
4859             <value>The null value handling.</value>
4860         </member>
4861         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
4862             <summary>
4863             Gets or sets the property default value handling.
4864             </summary>
4865             <value>The default value handling.</value>
4866         </member>
4867         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
4868             <summary>
4869             Gets or sets the property reference loop handling.
4870             </summary>
4871             <value>The reference loop handling.</value>
4872         </member>
4873         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
4874             <summary>
4875             Gets or sets the property object creation handling.
4876             </summary>
4877             <value>The object creation handling.</value>
4878         </member>
4879         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
4880             <summary>
4881             Gets or sets or sets the type name handling.
4882             </summary>
4883             <value>The type name handling.</value>
4884         </member>
4885         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
4886             <summary>
4887             Gets or sets a predicate used to determine whether the property should be serialized.
4888             </summary>
4889             <value>A predicate used to determine whether the property should be serialized.</value>
4890         </member>
4891         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
4892             <summary>
4893             Gets or sets a predicate used to determine whether the property should be deserialized.
4894             </summary>
4895             <value>A predicate used to determine whether the property should be deserialized.</value>
4896         </member>
4897         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
4898             <summary>
4899             Gets or sets a predicate used to determine whether the property should be serialized.
4900             </summary>
4901             <value>A predicate used to determine whether the property should be serialized.</value>
4902         </member>
4903         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
4904             <summary>
4905             Gets or sets an action used to set whether the property has been deserialized.
4906             </summary>
4907             <value>An action used to set whether the property has been deserialized.</value>
4908         </member>
4909         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
4910             <summary>
4911             Returns a <see cref="T:System.String"/> that represents this instance.
4912             </summary>
4913             <returns>
4914             A <see cref="T:System.String"/> that represents this instance.
4915             </returns>
4916         </member>
4917         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
4918             <summary>
4919             Gets or sets the converter used when serializing the property's collection items.
4920             </summary>
4921             <value>The collection's items converter.</value>
4922         </member>
4923         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
4924             <summary>
4925             Gets or sets whether this property's collection items are serialized as a reference.
4926             </summary>
4927             <value>Whether this property's collection items are serialized as a reference.</value>
4928         </member>
4929         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
4930             <summary>
4931             Gets or sets the type name handling used when serializing the property's collection items.
4932             </summary>
4933             <value>The collection's items type name handling.</value>
4934         </member>
4935         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
4936             <summary>
4937             Gets or sets the reference loop handling used when serializing the property's collection items.
4938             </summary>
4939             <value>The collection's items reference loop handling.</value>
4940         </member>
4941         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
4942             <summary>
4943             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
4944             </summary>
4945         </member>
4946         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
4947             <summary>
4948             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
4949             </summary>
4950             <param name="type">The type.</param>
4951         </member>
4952         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
4953             <summary>
4954             When implemented in a derived class, extracts the key from the specified element.
4955             </summary>
4956             <param name="item">The element from which to extract the key.</param>
4957             <returns>The key for the specified element.</returns>
4958         </member>
4959         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
4960             <summary>
4961             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4962             </summary>
4963             <param name="property">The property to add to the collection.</param>
4964         </member>
4965         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
4966             <summary>
4967             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4968             First attempts to get an exact case match of <paramref name="propertyName"/> and then
4969             a case insensitive match.
4970             </summary>
4971             <param name="propertyName">Name of the property.</param>
4972             <returns>A matching property if found.</returns>
4973         </member>
4974         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
4975             <summary>
4976             Gets a property by property name.
4977             </summary>
4978             <param name="propertyName">The name of the property to get.</param>
4979             <param name="comparisonType">Type property name string comparison.</param>
4980             <returns>A matching property if found.</returns>
4981         </member>
4982         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4983             <summary>
4984             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4985             </summary>
4986         </member>
4987         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4988             <summary>
4989             Resolves a reference to its object.
4990             </summary>
4991             <param name="context">The serialization context.</param>
4992             <param name="reference">The reference to resolve.</param>
4993             <returns>The object that was resolved from the reference.</returns>
4994         </member>
4995         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4996             <summary>
4997             Gets the reference for the specified object.
4998             </summary>
4999             <param name="context">The serialization context.</param>
5000             <param name="value">The object to get a reference for.</param>
5001             <returns>The reference to the object.</returns>
5002         </member>
5003         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
5004             <summary>
5005             Determines whether the specified object is referenced.
5006             </summary>
5007             <param name="context">The serialization context.</param>
5008             <param name="value">The object to test for a reference.</param>
5009             <returns>
5010                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
5011             </returns>
5012         </member>
5013         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
5014             <summary>
5015             Adds a reference to the specified object.
5016             </summary>
5017             <param name="context">The serialization context.</param>
5018             <param name="reference">The reference.</param>
5019             <param name="value">The object to reference.</param>
5020         </member>
5021         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
5022             <summary>
5023             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5024             </summary>
5025         </member>
5026         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
5027             <summary>
5028             Gets or sets the object member serialization.
5029             </summary>
5030             <value>The member object serialization.</value>
5031         </member>
5032         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
5033             <summary>
5034             Gets or sets a value that indicates whether the object's properties are required.
5035             </summary>
5036             <value>
5037                 A value indicating whether the object's properties are required.
5038             </value>
5039         </member>
5040         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
5041             <summary>
5042             Gets the object's properties.
5043             </summary>
5044             <value>The object's properties.</value>
5045         </member>
5046         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
5047             <summary>
5048             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"/>.
5049             </summary>
5050         </member>
5051         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
5052             <summary>
5053             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
5054             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
5055             </summary>
5056             <value>The function used to create the object.</value>
5057         </member>
5058         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
5059             <summary>
5060             Gets or sets the extension data setter.
5061             </summary>
5062         </member>
5063         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
5064             <summary>
5065             Gets or sets the extension data getter.
5066             </summary>
5067         </member>
5068         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataValueType">
5069             <summary>
5070             Gets or sets the extension data value type.
5071             </summary>
5072         </member>
5073         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataNameResolver">
5074             <summary>
5075             Gets or sets the extension data name resolver.
5076             </summary>
5077             <value>The extension data name resolver.</value>
5078         </member>
5079         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
5080             <summary>
5081             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
5082             </summary>
5083             <param name="underlyingType">The underlying type for the contract.</param>
5084         </member>
5085         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
5086             <summary>
5087             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5088             </summary>
5089         </member>
5090         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
5091             <summary>
5092             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
5093             </summary>
5094             <param name="underlyingType">The underlying type for the contract.</param>
5095         </member>
5096         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
5097             <summary>
5098             Lookup and create an instance of the <see cref="T:Newtonsoft.Json.JsonConverter"/> type described by the argument.
5099             </summary>
5100             <param name="converterType">The <see cref="T:Newtonsoft.Json.JsonConverter"/> type to create.</param>
5101             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
5102             If <c>null</c>, the default constructor is used.</param>
5103         </member>
5104         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
5105             <summary>
5106             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
5107             </summary>
5108         </member>
5109         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
5110             <summary>
5111             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
5112             </summary>
5113             <param name="memberInfo">The member info.</param>
5114         </member>
5115         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
5116             <summary>
5117             Sets the value.
5118             </summary>
5119             <param name="target">The target to set the value on.</param>
5120             <param name="value">The value to set on the target.</param>
5121         </member>
5122         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
5123             <summary>
5124             Gets the value.
5125             </summary>
5126             <param name="target">The target to get the value from.</param>
5127             <returns>The value.</returns>
5128         </member>
5129         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
5130             <summary>
5131             When applied to a method, specifies that the method is called when an error occurs serializing an object.
5132             </summary>
5133         </member>
5134         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
5135             <summary>
5136             Represents a method that constructs an object.
5137             </summary>
5138             <typeparam name="T">The object type to create.</typeparam>
5139         </member>
5140         <member name="T:Newtonsoft.Json.StringEscapeHandling">
5141             <summary>
5142             Specifies how strings are escaped when writing JSON text.
5143             </summary>
5144         </member>
5145         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
5146             <summary>
5147             Only control characters (e.g. newline) are escaped.
5148             </summary>
5149         </member>
5150         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
5151             <summary>
5152             All non-ASCII and control characters (e.g. newline) are escaped.
5153             </summary>
5154         </member>
5155         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
5156             <summary>
5157             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
5158             </summary>
5159         </member>
5160         <member name="T:Newtonsoft.Json.TypeNameAssemblyFormatHandling">
5161             <summary>
5162             Indicates the method that will be used during deserialization for locating and loading assemblies.
5163             </summary>
5164         </member>
5165         <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple">
5166             <summary>
5167             In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the <c>LoadWithPartialName</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
5168             </summary>
5169         </member>
5170         <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Full">
5171             <summary>
5172             In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The <c>Load</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
5173             </summary>
5174         </member>
5175         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5176             <summary>
5177             Helper method for generating a MetaObject which calls a
5178             specific method on Dynamic that returns a result
5179             </summary>
5180         </member>
5181         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5182             <summary>
5183             Helper method for generating a MetaObject which calls a
5184             specific method on Dynamic, but uses one of the arguments for
5185             the result.
5186             </summary>
5187         </member>
5188         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
5189             <summary>
5190             Helper method for generating a MetaObject which calls a
5191             specific method on Dynamic, but uses one of the arguments for
5192             the result.
5193             </summary>
5194         </member>
5195         <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
5196             <summary>
5197             Returns a Restrictions object which includes our current restrictions merged
5198             with a restriction limiting our type
5199             </summary>
5200         </member>
5201         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
5202             <summary>
5203             Converts the value to the specified type. If the value is unable to be converted, the
5204             value is checked whether it assignable to the specified type.
5205             </summary>
5206             <param name="initialValue">The value to convert.</param>
5207             <param name="culture">The culture to use when converting.</param>
5208             <param name="targetType">The type to convert or cast the value to.</param>
5209             <returns>
5210             The converted type. If conversion was unsuccessful, the initial value
5211             is returned if assignable to the target type.
5212             </returns>
5213         </member>
5214         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultExp64Power10">
5215             <summary>
5216             Exponents for both powers of 10 and 0.1
5217             </summary>
5218         </member>
5219         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10">
5220             <summary>
5221             Normalized powers of 10
5222             </summary>
5223         </member>
5224         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10Inv">
5225             <summary>
5226             Normalized powers of 0.1
5227             </summary>
5228         </member>
5229         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultExp64Power10By16">
5230             <summary>
5231             Exponents for both powers of 10^16 and 0.1^16
5232             </summary>
5233         </member>
5234         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10By16">
5235             <summary>
5236             Normalized powers of 10^16
5237             </summary>
5238         </member>
5239         <member name="F:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.MultVal64Power10By16Inv">
5240             <summary>
5241             Normalized powers of 0.1^16
5242             </summary>
5243         </member>
5244         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.IEEE754.PackDouble(System.Boolean,System.UInt64,System.Int32)">
5245             <summary>
5246             Packs <paramref name="val"/>*10^<paramref name="scale"/> as 64-bit floating point value according to IEEE 754 standard
5247             </summary>
5248             <param name="negative">Sign</param>
5249             <param name="val">Mantissa</param>
5250             <param name="scale">Exponent</param>
5251             <remarks>
5252             Adoption of native function NumberToDouble() from coreclr sources,
5253             see https://github.com/dotnet/coreclr/blob/master/src/classlibnative/bcltype/number.cpp#L451
5254             </remarks>
5255         </member>
5256         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
5257             <summary>
5258             Gets a dictionary of the names and values of an <see cref="T:System.Enum"/> type.
5259             </summary>
5260             <returns></returns>
5261         </member>
5262         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
5263             <summary>
5264             Gets a dictionary of the names and values of an Enum type.
5265             </summary>
5266             <param name="enumType">The enum type to get names and values for.</param>
5267             <returns></returns>
5268         </member>
5269         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
5270             <summary>
5271             Builds a string. Unlike <see cref="T:System.Text.StringBuilder"/> this class lets you reuse its internal buffer.
5272             </summary>
5273         </member>
5274         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
5275             <summary>
5276             Determines whether the collection is <c>null</c> or empty.
5277             </summary>
5278             <param name="collection">The collection.</param>
5279             <returns>
5280                 <c>true</c> if the collection is <c>null</c> or empty; otherwise, <c>false</c>.
5281             </returns>
5282         </member>
5283         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
5284             <summary>
5285             Adds the elements of the specified collection to the specified generic <see cref="T:System.Collections.Generic.IList`1"/>.
5286             </summary>
5287             <param name="initial">The list to add to.</param>
5288             <param name="collection">The collection of elements to add.</param>
5289         </member>
5290         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
5291             <summary>
5292             Gets the type of the typed collection's items.
5293             </summary>
5294             <param name="type">The type.</param>
5295             <returns>The type of the typed collection's items.</returns>
5296         </member>
5297         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
5298             <summary>
5299             Gets the member's underlying type.
5300             </summary>
5301             <param name="member">The member.</param>
5302             <returns>The underlying type of the member.</returns>
5303         </member>
5304         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
5305             <summary>
5306             Determines whether the member is an indexed property.
5307             </summary>
5308             <param name="member">The member.</param>
5309             <returns>
5310                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
5311             </returns>
5312         </member>
5313         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
5314             <summary>
5315             Determines whether the property is an indexed property.
5316             </summary>
5317             <param name="property">The property.</param>
5318             <returns>
5319                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
5320             </returns>
5321         </member>
5322         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
5323             <summary>
5324             Gets the member's value on the object.
5325             </summary>
5326             <param name="member">The member.</param>
5327             <param name="target">The target object.</param>
5328             <returns>The member's value on the object.</returns>
5329         </member>
5330         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
5331             <summary>
5332             Sets the member's value on the target object.
5333             </summary>
5334             <param name="member">The member.</param>
5335             <param name="target">The target.</param>
5336             <param name="value">The value.</param>
5337         </member>
5338         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
5339             <summary>
5340             Determines whether the specified MemberInfo can be read.
5341             </summary>
5342             <param name="member">The MemberInfo to determine whether can be read.</param>
5343             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
5344             <returns>
5345                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
5346             </returns>
5347         </member>
5348         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
5349             <summary>
5350             Determines whether the specified MemberInfo can be set.
5351             </summary>
5352             <param name="member">The MemberInfo to determine whether can be set.</param>
5353             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
5354             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
5355             <returns>
5356                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
5357             </returns>
5358         </member>
5359         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
5360             <summary>
5361             Determines whether the string is all white space. Empty string will return <c>false</c>.
5362             </summary>
5363             <param name="s">The string to test whether it is all white space.</param>
5364             <returns>
5365                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
5366             </returns>
5367         </member>
5368         <member name="T:Newtonsoft.Json.Required">
5369             <summary>
5370             Indicating whether a property is required.
5371             </summary>
5372         </member>
5373         <member name="F:Newtonsoft.Json.Required.Default">
5374             <summary>
5375             The property is not required. The default state.
5376             </summary>
5377         </member>
5378         <member name="F:Newtonsoft.Json.Required.AllowNull">
5379             <summary>
5380             The property must be defined in JSON but can be a null value.
5381             </summary>
5382         </member>
5383         <member name="F:Newtonsoft.Json.Required.Always">
5384             <summary>
5385             The property must be defined in JSON and cannot be a null value.
5386             </summary>
5387         </member>
5388         <member name="F:Newtonsoft.Json.Required.DisallowNull">
5389             <summary>
5390             The property is not required but it cannot be a null value.
5391             </summary>
5392         </member>
5393         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
5394             <summary>
5395             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5396             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement <see cref="T:System.Runtime.Serialization.ISerializable"/>.
5397             </summary>
5398             <example>
5399               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
5400             </example>
5401         </member>
5402         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
5403             <summary>
5404             Do not preserve references when serializing types.
5405             </summary>
5406         </member>
5407         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
5408             <summary>
5409             Preserve references when serializing into a JSON object structure.
5410             </summary>
5411         </member>
5412         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
5413             <summary>
5414             Preserve references when serializing into a JSON array structure.
5415             </summary>
5416         </member>
5417         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
5418             <summary>
5419             Preserve references when serializing.
5420             </summary>
5421         </member>
5422         <member name="T:Newtonsoft.Json.IJsonLineInfo">
5423             <summary>
5424             Provides an interface to enable a class to return line and position information.
5425             </summary>
5426         </member>
5427         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
5428             <summary>
5429             Gets a value indicating whether the class can return line information.
5430             </summary>
5431             <returns>
5432                 <c>true</c> if <see cref="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"/> and <see cref="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"/> can be provided; otherwise, <c>false</c>.
5433             </returns>
5434         </member>
5435         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
5436             <summary>
5437             Gets the current line number.
5438             </summary>
5439             <value>The current line number or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
5440         </member>
5441         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
5442             <summary>
5443             Gets the current line position.
5444             </summary>
5445             <value>The current line position or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
5446         </member>
5447         <member name="T:Newtonsoft.Json.JsonArrayAttribute">
5448             <summary>
5449             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
5450             </summary>
5451         </member>
5452         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
5453             <summary>
5454             Gets or sets a value indicating whether null items are allowed in the collection.
5455             </summary>
5456             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
5457         </member>
5458         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
5459             <summary>
5460             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
5461             </summary>
5462         </member>
5463         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
5464             <summary>
5465             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items.
5466             </summary>
5467             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
5468         </member>
5469         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
5470             <summary>
5471             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
5472             </summary>
5473             <param name="id">The container Id.</param>
5474         </member>
5475         <member name="T:Newtonsoft.Json.JsonContainerAttribute">
5476             <summary>
5477             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5478             </summary>
5479         </member>
5480         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
5481             <summary>
5482             Gets or sets the id.
5483             </summary>
5484             <value>The id.</value>
5485         </member>
5486         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
5487             <summary>
5488             Gets or sets the title.
5489             </summary>
5490             <value>The title.</value>
5491         </member>
5492         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
5493             <summary>
5494             Gets or sets the description.
5495             </summary>
5496             <value>The description.</value>
5497         </member>
5498         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
5499             <summary>
5500             Gets or sets the collection's items converter.
5501             </summary>
5502             <value>The collection's items converter.</value>
5503         </member>
5504         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
5505             <summary>
5506             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"/>.
5507             If <c>null</c>, the default constructor is used.
5508             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
5509             order, and type of these parameters.
5510             </summary>
5511             <example>
5512             <code>
5513             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
5514             </code>
5515             </example>
5516         </member>
5517         <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
5518             <summary>
5519             Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
5520             </summary>
5521             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
5522         </member>
5523         <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
5524             <summary>
5525             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"/>.
5526             If <c>null</c>, the default constructor is used.
5527             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
5528             order, and type of these parameters.
5529             </summary>
5530             <example>
5531             <code>
5532             [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
5533             </code>
5534             </example>
5535         </member>
5536         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
5537             <summary>
5538             Gets or sets a value that indicates whether to preserve object references.
5539             </summary>
5540             <value>
5541                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
5542             </value>
5543         </member>
5544         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
5545             <summary>
5546             Gets or sets a value that indicates whether to preserve collection's items references.
5547             </summary>
5548             <value>
5549                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
5550             </value>
5551         </member>
5552         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
5553             <summary>
5554             Gets or sets the reference loop handling used when serializing the collection's items.
5555             </summary>
5556             <value>The reference loop handling.</value>
5557         </member>
5558         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
5559             <summary>
5560             Gets or sets the type name handling used when serializing the collection's items.
5561             </summary>
5562             <value>The type name handling.</value>
5563         </member>
5564         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
5565             <summary>
5566             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
5567             </summary>
5568         </member>
5569         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
5570             <summary>
5571             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
5572             </summary>
5573             <param name="id">The container Id.</param>
5574         </member>
5575         <member name="T:Newtonsoft.Json.DefaultValueHandling">
5576             <summary>
5577             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5578             </summary>
5579             <example>
5580               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
5581               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
5582             </example>
5583         </member>
5584         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
5585             <summary>
5586             Include members where the member value is the same as the member's default value when serializing objects.
5587             Included members are written to JSON. Has no effect when deserializing.
5588             </summary>
5589         </member>
5590         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
5591             <summary>
5592             Ignore members where the member value is the same as the member's default value when serializing objects
5593             so that it is not written to JSON.
5594             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
5595             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
5596             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
5597             </summary>
5598         </member>
5599         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
5600             <summary>
5601             Members with a default value but no JSON will be set to their default value when deserializing.
5602             </summary>
5603         </member>
5604         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
5605             <summary>
5606             Ignore members where the member value is the same as the member's default value when serializing objects
5607             and set members to their default value when deserializing.
5608             </summary>
5609         </member>
5610         <member name="T:Newtonsoft.Json.JsonConverterAttribute">
5611             <summary>
5612             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
5613             </summary>
5614         </member>
5615         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
5616             <summary>
5617             Gets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.
5618             </summary>
5619             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
5620         </member>
5621         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
5622             <summary>
5623             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"/>.
5624             If <c>null</c>, the default constructor is used.
5625             </summary>
5626         </member>
5627         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
5628             <summary>
5629             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5630             </summary>
5631             <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
5632         </member>
5633         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
5634             <summary>
5635             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
5636             </summary>
5637             <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
5638             <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/>. Can be <c>null</c>.</param>
5639         </member>
5640         <member name="T:Newtonsoft.Json.JsonObjectAttribute">
5641             <summary>
5642             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
5643             </summary>
5644         </member>
5645         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
5646             <summary>
5647             Gets or sets the member serialization.
5648             </summary>
5649             <value>The member serialization.</value>
5650         </member>
5651         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
5652             <summary>
5653             Gets or sets a value that indicates whether the object's properties are required.
5654             </summary>
5655             <value>
5656                 A value indicating whether the object's properties are required.
5657             </value>
5658         </member>
5659         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
5660             <summary>
5661             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
5662             </summary>
5663         </member>
5664         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
5665             <summary>
5666             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
5667             </summary>
5668             <param name="memberSerialization">The member serialization.</param>
5669         </member>
5670         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
5671             <summary>
5672             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
5673             </summary>
5674             <param name="id">The container Id.</param>
5675         </member>
5676         <member name="T:Newtonsoft.Json.JsonSerializerSettings">
5677             <summary>
5678             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
5679             </summary>
5680         </member>
5681         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
5682             <summary>
5683             Gets or sets how reference loops (e.g. a class referencing itself) are handled.
5684             </summary>
5685             <value>Reference loop handling.</value>
5686         </member>
5687         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
5688             <summary>
5689             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
5690             </summary>
5691             <value>Missing member handling.</value>
5692         </member>
5693         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
5694             <summary>
5695             Gets or sets how objects are created during deserialization.
5696             </summary>
5697             <value>The object creation handling.</value>
5698         </member>
5699         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
5700             <summary>
5701             Gets or sets how null values are handled during serialization and deserialization.
5702             </summary>
5703             <value>Null value handling.</value>
5704         </member>
5705         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
5706             <summary>
5707             Gets or sets how default values are handled during serialization and deserialization.
5708             </summary>
5709             <value>The default value handling.</value>
5710         </member>
5711         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
5712             <summary>
5713             Gets or sets a <see cref="T:Newtonsoft.Json.JsonConverter"/> collection that will be used during serialization.
5714             </summary>
5715             <value>The converters.</value>
5716         </member>
5717         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
5718             <summary>
5719             Gets or sets how object references are preserved by the serializer.
5720             </summary>
5721             <value>The preserve references handling.</value>
5722         </member>
5723         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
5724             <summary>
5725             Gets or sets how type name writing and reading is handled by the serializer.
5726             </summary>
5727             <remarks>
5728             <see cref="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
5729             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/>
5730             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
5731             </remarks>
5732             <value>The type name handling.</value>
5733         </member>
5734         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
5735             <summary>
5736             Gets or sets how metadata properties are used during deserialization.
5737             </summary>
5738             <value>The metadata properties handling.</value>
5739         </member>
5740         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
5741             <summary>
5742             Gets or sets how a type name assembly is written and resolved by the serializer.
5743             </summary>
5744             <value>The type name assembly format.</value>
5745         </member>
5746         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormatHandling">
5747             <summary>
5748             Gets or sets how a type name assembly is written and resolved by the serializer.
5749             </summary>
5750             <value>The type name assembly format.</value>
5751         </member>
5752         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
5753             <summary>
5754             Gets or sets how constructors are used during deserialization.
5755             </summary>
5756             <value>The constructor handling.</value>
5757         </member>
5758         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
5759             <summary>
5760             Gets or sets the contract resolver used by the serializer when
5761             serializing .NET objects to JSON and vice versa.
5762             </summary>
5763             <value>The contract resolver.</value>
5764         </member>
5765         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
5766             <summary>
5767             Gets or sets the equality comparer used by the serializer when comparing references.
5768             </summary>
5769             <value>The equality comparer.</value>
5770         </member>
5771         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
5772             <summary>
5773             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5774             </summary>
5775             <value>The reference resolver.</value>
5776         </member>
5777         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
5778             <summary>
5779             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
5780             </summary>
5781             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
5782         </member>
5783         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
5784             <summary>
5785             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
5786             </summary>
5787             <value>The trace writer.</value>
5788         </member>
5789         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
5790             <summary>
5791             Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/> used by the serializer when resolving type names.
5792             </summary>
5793             <value>The binder.</value>
5794         </member>
5795         <member name="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder">
5796             <summary>
5797             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
5798             </summary>
5799             <value>The binder.</value>
5800         </member>
5801         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
5802             <summary>
5803             Gets or sets the error handler called during serialization and deserialization.
5804             </summary>
5805             <value>The error handler called during serialization and deserialization.</value>
5806         </member>
5807         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
5808             <summary>
5809             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
5810             </summary>
5811             <value>The context.</value>
5812         </member>
5813         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
5814             <summary>
5815             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
5816             and the expected date format when reading JSON text.
5817             </summary>
5818         </member>
5819         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
5820             <summary>
5821             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
5822             </summary>
5823         </member>
5824         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
5825             <summary>
5826             Indicates how JSON text output is formatted.
5827             </summary>
5828         </member>
5829         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
5830             <summary>
5831             Gets or sets how dates are written to JSON text.
5832             </summary>
5833         </member>
5834         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
5835             <summary>
5836             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
5837             </summary>
5838         </member>
5839         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
5840             <summary>
5841             Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
5842             </summary>
5843         </member>
5844         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
5845             <summary>
5846             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5847             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5848             are written as JSON.
5849             </summary>
5850         </member>
5851         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
5852             <summary>
5853             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
5854             </summary>
5855         </member>
5856         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
5857             <summary>
5858             Gets or sets how strings are escaped when writing JSON text.
5859             </summary>
5860         </member>
5861         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
5862             <summary>
5863             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5864             </summary>
5865         </member>
5866         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
5867             <summary>
5868             Gets a value indicating whether there will be a check for additional content after deserializing an object.
5869             </summary>
5870             <value>
5871                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
5872             </value>
5873         </member>
5874         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
5875             <summary>
5876             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
5877             </summary>
5878         </member>
5879         <member name="T:Newtonsoft.Json.JsonValidatingReader">
5880             <summary>
5881             <para>
5882             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
5883             </para>
5884             <note type="caution">
5885             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.
5886             </note>
5887             </summary>
5888         </member>
5889         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
5890             <summary>
5891             Sets an event handler for receiving schema validation errors.
5892             </summary>
5893         </member>
5894         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
5895             <summary>
5896             Gets the text value of the current JSON token.
5897             </summary>
5898             <value></value>
5899         </member>
5900         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
5901             <summary>
5902             Gets the depth of the current token in the JSON document.
5903             </summary>
5904             <value>The depth of the current token in the JSON document.</value>
5905         </member>
5906         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
5907             <summary>
5908             Gets the path of the current JSON token. 
5909             </summary>
5910         </member>
5911         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
5912             <summary>
5913             Gets the quotation mark character used to enclose the value of a string.
5914             </summary>
5915             <value></value>
5916         </member>
5917         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
5918             <summary>
5919             Gets the type of the current JSON token.
5920             </summary>
5921             <value></value>
5922         </member>
5923         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
5924             <summary>
5925             Gets the .NET type for the current JSON token.
5926             </summary>
5927             <value></value>
5928         </member>
5929         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
5930             <summary>
5931             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
5932             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
5933             </summary>
5934             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
5935         </member>
5936         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
5937             <summary>
5938             Gets or sets the schema.
5939             </summary>
5940             <value>The schema.</value>
5941         </member>
5942         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
5943             <summary>
5944             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
5945             </summary>
5946             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
5947         </member>
5948         <member name="M:Newtonsoft.Json.JsonValidatingReader.Close">
5949             <summary>
5950             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
5951             If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> is also closed.
5952             </summary>
5953         </member>
5954         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
5955             <summary>
5956             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
5957             </summary>
5958             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.</returns>
5959         </member>
5960         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
5961             <summary>
5962             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Byte"/>[].
5963             </summary>
5964             <returns>
5965             A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null.
5966             </returns>
5967         </member>
5968         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
5969             <summary>
5970             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
5971             </summary>
5972             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.</returns>
5973         </member>
5974         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDouble">
5975             <summary>
5976             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
5977             </summary>
5978             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.</returns>
5979         </member>
5980         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBoolean">
5981             <summary>
5982             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
5983             </summary>
5984             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.</returns>
5985         </member>
5986         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
5987             <summary>
5988             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.String"/>.
5989             </summary>
5990             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
5991         </member>
5992         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
5993             <summary>
5994             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
5995             </summary>
5996             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
5997         </member>
5998         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
5999             <summary>
6000             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
6001             </summary>
6002             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.</returns>
6003         </member>
6004         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
6005             <summary>
6006             Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/>.
6007             </summary>
6008             <returns>
6009             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
6010             </returns>
6011         </member>
6012         <member name="T:Newtonsoft.Json.MemberSerialization">
6013             <summary>
6014             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6015             </summary>
6016         </member>
6017         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
6018             <summary>
6019             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6020             This is the default member serialization mode.
6021             </summary>
6022         </member>
6023         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
6024             <summary>
6025             Only members marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
6026             This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
6027             </summary>
6028         </member>
6029         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
6030             <summary>
6031             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6032             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
6033             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to <c>false</c>.
6034             </summary>
6035         </member>
6036         <member name="T:Newtonsoft.Json.ObjectCreationHandling">
6037             <summary>
6038             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6039             </summary>
6040         </member>
6041         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
6042             <summary>
6043             Reuse existing objects, create new objects when needed.
6044             </summary>
6045         </member>
6046         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
6047             <summary>
6048             Only reuse existing objects.
6049             </summary>
6050         </member>
6051         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
6052             <summary>
6053             Always create new objects.
6054             </summary>
6055         </member>
6056         <member name="T:Newtonsoft.Json.JsonTextReader">
6057             <summary>
6058             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
6059             </summary>
6060         </member>
6061         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
6062             <summary>
6063             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
6064             </summary>
6065             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the JSON data to read.</param>
6066         </member>
6067         <member name="P:Newtonsoft.Json.JsonTextReader.ArrayPool">
6068             <summary>
6069             Gets or sets the reader's character buffer pool.
6070             </summary>
6071         </member>
6072         <member name="M:Newtonsoft.Json.JsonTextReader.Read">
6073             <summary>
6074             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/>.
6075             </summary>
6076             <returns>
6077             <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
6078             </returns>
6079         </member>
6080         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
6081             <summary>
6082             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
6083             </summary>
6084             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
6085         </member>
6086         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
6087             <summary>
6088             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
6089             </summary>
6090             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
6091         </member>
6092         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
6093             <summary>
6094             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>.
6095             </summary>
6096             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6097         </member>
6098         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
6099             <summary>
6100             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[].
6101             </summary>
6102             <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
6103         </member>
6104         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBoolean">
6105             <summary>
6106             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
6107             </summary>
6108             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
6109         </member>
6110         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
6111             <summary>
6112             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
6113             </summary>
6114             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
6115         </member>
6116         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
6117             <summary>
6118             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
6119             </summary>
6120             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
6121         </member>
6122         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDouble">
6123             <summary>
6124             Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
6125             </summary>
6126             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
6127         </member>
6128         <member name="M:Newtonsoft.Json.JsonTextReader.Close">
6129             <summary>
6130             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
6131             If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextReader"/> is also closed.
6132             </summary>
6133         </member>
6134         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
6135             <summary>
6136             Gets a value indicating whether the class can return line information.
6137             </summary>
6138             <returns>
6139                 <c>true</c> if <see cref="P:Newtonsoft.Json.JsonTextReader.LineNumber"/> and <see cref="P:Newtonsoft.Json.JsonTextReader.LinePosition"/> can be provided; otherwise, <c>false</c>.
6140             </returns>
6141         </member>
6142         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
6143             <summary>
6144             Gets the current line number.
6145             </summary>
6146             <value>
6147             The current line number or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
6148             </value>
6149         </member>
6150         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
6151             <summary>
6152             Gets the current line position.
6153             </summary>
6154             <value>
6155             The current line position or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
6156             </value>
6157         </member>
6158         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
6159             <summary>
6160             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
6161             </summary>
6162         </member>
6163         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
6164             <summary>
6165             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> used when serializing the property's collection items.
6166             </summary>
6167             <value>The collection's items <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
6168         </member>
6169         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
6170             <summary>
6171             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType"/>.
6172             If <c>null</c>, the default constructor is used.
6173             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
6174             order, and type of these parameters.
6175             </summary>
6176             <example>
6177             <code>
6178             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
6179             </code>
6180             </example>
6181         </member>
6182         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType">
6183             <summary>
6184             Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
6185             </summary>
6186             <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
6187         </member>
6188         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyParameters">
6189             <summary>
6190             The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType"/>.
6191             If <c>null</c>, the default constructor is used.
6192             When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
6193             order, and type of these parameters.
6194             </summary>
6195             <example>
6196             <code>
6197             [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
6198             </code>
6199             </example>
6200         </member>
6201         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
6202             <summary>
6203             Gets or sets the null value handling used when serializing this property.
6204             </summary>
6205             <value>The null value handling.</value>
6206         </member>
6207         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
6208             <summary>
6209             Gets or sets the default value handling used when serializing this property.
6210             </summary>
6211             <value>The default value handling.</value>
6212         </member>
6213         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
6214             <summary>
6215             Gets or sets the reference loop handling used when serializing this property.
6216             </summary>
6217             <value>The reference loop handling.</value>
6218         </member>
6219         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
6220             <summary>
6221             Gets or sets the object creation handling used when deserializing this property.
6222             </summary>
6223             <value>The object creation handling.</value>
6224         </member>
6225         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
6226             <summary>
6227             Gets or sets the type name handling used when serializing this property.
6228             </summary>
6229             <value>The type name handling.</value>
6230         </member>
6231         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
6232             <summary>
6233             Gets or sets whether this property's value is serialized as a reference.
6234             </summary>
6235             <value>Whether this property's value is serialized as a reference.</value>
6236         </member>
6237         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
6238             <summary>
6239             Gets or sets the order of serialization of a member.
6240             </summary>
6241             <value>The numeric order of serialization.</value>
6242         </member>
6243         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
6244             <summary>
6245             Gets or sets a value indicating whether this property is required.
6246             </summary>
6247             <value>
6248                 A value indicating whether this property is required.
6249             </value>
6250         </member>
6251         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
6252             <summary>
6253             Gets or sets the name of the property.
6254             </summary>
6255             <value>The name of the property.</value>
6256         </member>
6257         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
6258             <summary>
6259             Gets or sets the reference loop handling used when serializing the property's collection items.
6260             </summary>
6261             <value>The collection's items reference loop handling.</value>
6262         </member>
6263         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
6264             <summary>
6265             Gets or sets the type name handling used when serializing the property's collection items.
6266             </summary>
6267             <value>The collection's items type name handling.</value>
6268         </member>
6269         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
6270             <summary>
6271             Gets or sets whether this property's collection items are serialized as a reference.
6272             </summary>
6273             <value>Whether this property's collection items are serialized as a reference.</value>
6274         </member>
6275         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
6276             <summary>
6277             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
6278             </summary>
6279         </member>
6280         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
6281             <summary>
6282             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
6283             </summary>
6284             <param name="propertyName">Name of the property.</param>
6285         </member>
6286         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
6287             <summary>
6288             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
6289             </summary>
6290         </member>
6291         <member name="T:Newtonsoft.Json.JsonTextWriter">
6292             <summary>
6293             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6294             </summary>
6295         </member>
6296         <member name="P:Newtonsoft.Json.JsonTextWriter.ArrayPool">
6297             <summary>
6298             Gets or sets the writer's character array pool.
6299             </summary>
6300         </member>
6301         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
6302             <summary>
6303             Gets or sets how many <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar"/>s to write for each level in the hierarchy when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
6304             </summary>
6305         </member>
6306         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
6307             <summary>
6308             Gets or sets which character to use to quote attribute values.
6309             </summary>
6310         </member>
6311         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
6312             <summary>
6313             Gets or sets which character to use for indenting when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
6314             </summary>
6315         </member>
6316         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
6317             <summary>
6318             Gets or sets a value indicating whether object names will be surrounded with quotes.
6319             </summary>
6320         </member>
6321         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
6322             <summary>
6323             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextWriter"/> class using the specified <see cref="T:System.IO.TextWriter"/>.
6324             </summary>
6325             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> to write to.</param>
6326         </member>
6327         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
6328             <summary>
6329             Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.TextWriter"/> and also flushes the underlying <see cref="T:System.IO.TextWriter"/>.
6330             </summary>
6331         </member>
6332         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
6333             <summary>
6334             Closes this writer.
6335             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextWriter"/> is also closed.
6336             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
6337             </summary>
6338         </member>
6339         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
6340             <summary>
6341             Writes the beginning of a JSON object.
6342             </summary>
6343         </member>
6344         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
6345             <summary>
6346             Writes the beginning of a JSON array.
6347             </summary>
6348         </member>
6349         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
6350             <summary>
6351             Writes the start of a constructor with the given name.
6352             </summary>
6353             <param name="name">The name of the constructor.</param>
6354         </member>
6355         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6356             <summary>
6357             Writes the specified end token.
6358             </summary>
6359             <param name="token">The end token to write.</param>
6360         </member>
6361         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
6362             <summary>
6363             Writes the property name of a name/value pair on a JSON object.
6364             </summary>
6365             <param name="name">The name of the property.</param>
6366         </member>
6367         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
6368             <summary>
6369             Writes the property name of a name/value pair on a JSON object.
6370             </summary>
6371             <param name="name">The name of the property.</param>
6372             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
6373         </member>
6374         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
6375             <summary>
6376             Writes indent characters.
6377             </summary>
6378         </member>
6379         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
6380             <summary>
6381             Writes the JSON value delimiter.
6382             </summary>
6383         </member>
6384         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
6385             <summary>
6386             Writes an indent space.
6387             </summary>
6388         </member>
6389         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
6390             <summary>
6391             Writes a <see cref="T:System.Object"/> value.
6392             An error will raised if the value cannot be written as a single JSON token.
6393             </summary>
6394             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6395         </member>
6396         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
6397             <summary>
6398             Writes a null value.
6399             </summary>
6400         </member>
6401         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
6402             <summary>
6403             Writes an undefined value.
6404             </summary>
6405         </member>
6406         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
6407             <summary>
6408             Writes raw JSON.
6409             </summary>
6410             <param name="json">The raw JSON to write.</param>
6411         </member>
6412         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
6413             <summary>
6414             Writes a <see cref="T:System.String"/> value.
6415             </summary>
6416             <param name="value">The <see cref="T:System.String"/> value to write.</param>
6417         </member>
6418         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
6419             <summary>
6420             Writes a <see cref="T:System.Int32"/> value.
6421             </summary>
6422             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6423         </member>
6424         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
6425             <summary>
6426             Writes a <see cref="T:System.UInt32"/> value.
6427             </summary>
6428             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
6429         </member>
6430         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
6431             <summary>
6432             Writes a <see cref="T:System.Int64"/> value.
6433             </summary>
6434             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
6435         </member>
6436         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
6437             <summary>
6438             Writes a <see cref="T:System.UInt64"/> value.
6439             </summary>
6440             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
6441         </member>
6442         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
6443             <summary>
6444             Writes a <see cref="T:System.Single"/> value.
6445             </summary>
6446             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
6447         </member>
6448         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
6449             <summary>
6450             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
6451             </summary>
6452             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
6453         </member>
6454         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
6455             <summary>
6456             Writes a <see cref="T:System.Double"/> value.
6457             </summary>
6458             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
6459         </member>
6460         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
6461             <summary>
6462             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
6463             </summary>
6464             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
6465         </member>
6466         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
6467             <summary>
6468             Writes a <see cref="T:System.Boolean"/> value.
6469             </summary>
6470             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
6471         </member>
6472         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
6473             <summary>
6474             Writes a <see cref="T:System.Int16"/> value.
6475             </summary>
6476             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
6477         </member>
6478         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
6479             <summary>
6480             Writes a <see cref="T:System.UInt16"/> value.
6481             </summary>
6482             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
6483         </member>
6484         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
6485             <summary>
6486             Writes a <see cref="T:System.Char"/> value.
6487             </summary>
6488             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
6489         </member>
6490         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
6491             <summary>
6492             Writes a <see cref="T:System.Byte"/> value.
6493             </summary>
6494             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
6495         </member>
6496         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
6497             <summary>
6498             Writes a <see cref="T:System.SByte"/> value.
6499             </summary>
6500             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
6501         </member>
6502         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
6503             <summary>
6504             Writes a <see cref="T:System.Decimal"/> value.
6505             </summary>
6506             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
6507         </member>
6508         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
6509             <summary>
6510             Writes a <see cref="T:System.DateTime"/> value.
6511             </summary>
6512             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
6513         </member>
6514         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
6515             <summary>
6516             Writes a <see cref="T:System.Byte"/>[] value.
6517             </summary>
6518             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6519         </member>
6520         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
6521             <summary>
6522             Writes a <see cref="T:System.DateTimeOffset"/> value.
6523             </summary>
6524             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
6525         </member>
6526         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
6527             <summary>
6528             Writes a <see cref="T:System.Guid"/> value.
6529             </summary>
6530             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
6531         </member>
6532         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
6533             <summary>
6534             Writes a <see cref="T:System.TimeSpan"/> value.
6535             </summary>
6536             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
6537         </member>
6538         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
6539             <summary>
6540             Writes a <see cref="T:System.Uri"/> value.
6541             </summary>
6542             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6543         </member>
6544         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
6545             <summary>
6546             Writes a comment <c>/*...*/</c> containing the specified text. 
6547             </summary>
6548             <param name="text">Text to place inside the comment.</param>
6549         </member>
6550         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
6551             <summary>
6552             Writes the given white space.
6553             </summary>
6554             <param name="ws">The string of white space characters.</param>
6555         </member>
6556         <member name="T:Newtonsoft.Json.JsonWriterException">
6557             <summary>
6558             The exception thrown when an error occurs while writing JSON text.
6559             </summary>
6560         </member>
6561         <member name="P:Newtonsoft.Json.JsonWriterException.Path">
6562             <summary>
6563             Gets the path to the JSON where the error occurred.
6564             </summary>
6565             <value>The path to the JSON where the error occurred.</value>
6566         </member>
6567         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
6568             <summary>
6569             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
6570             </summary>
6571         </member>
6572         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
6573             <summary>
6574             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6575             with a specified error message.
6576             </summary>
6577             <param name="message">The error message that explains the reason for the exception.</param>
6578         </member>
6579         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
6580             <summary>
6581             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6582             with a specified error message and a reference to the inner exception that is the cause of this exception.
6583             </summary>
6584             <param name="message">The error message that explains the reason for the exception.</param>
6585             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
6586         </member>
6587         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.String,System.Exception)">
6588             <summary>
6589             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
6590             with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception.
6591             </summary>
6592             <param name="message">The error message that explains the reason for the exception.</param>
6593             <param name="path">The path to the JSON where the error occurred.</param>
6594             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
6595         </member>
6596         <member name="T:Newtonsoft.Json.JsonReaderException">
6597             <summary>
6598             The exception thrown when an error occurs while reading JSON text.
6599             </summary>
6600         </member>
6601         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
6602             <summary>
6603             Gets the line number indicating where the error occurred.
6604             </summary>
6605             <value>The line number indicating where the error occurred.</value>
6606         </member>
6607         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
6608             <summary>
6609             Gets the line position indicating where the error occurred.
6610             </summary>
6611             <value>The line position indicating where the error occurred.</value>
6612         </member>
6613         <member name="P:Newtonsoft.Json.JsonReaderException.Path">
6614             <summary>
6615             Gets the path to the JSON where the error occurred.
6616             </summary>
6617             <value>The path to the JSON where the error occurred.</value>
6618         </member>
6619         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
6620             <summary>
6621             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
6622             </summary>
6623         </member>
6624         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
6625             <summary>
6626             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6627             with a specified error message.
6628             </summary>
6629             <param name="message">The error message that explains the reason for the exception.</param>
6630         </member>
6631         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
6632             <summary>
6633             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6634             with a specified error message and a reference to the inner exception that is the cause of this exception.
6635             </summary>
6636             <param name="message">The error message that explains the reason for the exception.</param>
6637             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
6638         </member>
6639         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
6640             <summary>
6641             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
6642             with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
6643             </summary>
6644             <param name="message">The error message that explains the reason for the exception.</param>
6645             <param name="path">The path to the JSON where the error occurred.</param>
6646             <param name="lineNumber">The line number indicating where the error occurred.</param>
6647             <param name="linePosition">The line position indicating where the error occurred.</param>
6648             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
6649         </member>
6650         <member name="T:Newtonsoft.Json.JsonConverter">
6651             <summary>
6652             Converts an object to and from JSON.
6653             </summary>
6654         </member>
6655         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
6656             <summary>
6657             Writes the JSON representation of the object.
6658             </summary>
6659             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
6660             <param name="value">The value.</param>
6661             <param name="serializer">The calling serializer.</param>
6662         </member>
6663         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
6664             <summary>
6665             Reads the JSON representation of the object.
6666             </summary>
6667             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
6668             <param name="objectType">Type of the object.</param>
6669             <param name="existingValue">The existing value of object being read.</param>
6670             <param name="serializer">The calling serializer.</param>
6671             <returns>The object value.</returns>
6672         </member>
6673         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
6674             <summary>
6675             Determines whether this instance can convert the specified object type.
6676             </summary>
6677             <param name="objectType">Type of the object.</param>
6678             <returns>
6679                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
6680             </returns>
6681         </member>
6682         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
6683             <summary>
6684             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
6685             </summary>
6686             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
6687         </member>
6688         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
6689             <summary>
6690             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
6691             </summary>
6692             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
6693         </member>
6694         <member name="T:Newtonsoft.Json.JsonConverterCollection">
6695             <summary>
6696             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
6697             </summary>
6698         </member>
6699         <member name="T:Newtonsoft.Json.JsonReader">
6700             <summary>
6701             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6702             </summary>
6703         </member>
6704         <member name="T:Newtonsoft.Json.JsonReader.State">
6705             <summary>
6706             Specifies the state of the reader.
6707             </summary>
6708         </member>
6709         <member name="F:Newtonsoft.Json.JsonReader.State.Start">
6710             <summary>
6711             A <see cref="T:Newtonsoft.Json.JsonReader"/> read method has not been called.
6712             </summary>
6713         </member>
6714         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
6715             <summary>
6716             The end of the file has been reached successfully.
6717             </summary>
6718         </member>
6719         <member name="F:Newtonsoft.Json.JsonReader.State.Property">
6720             <summary>
6721             Reader is at a property.
6722             </summary>
6723         </member>
6724         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
6725             <summary>
6726             Reader is at the start of an object.
6727             </summary>
6728         </member>
6729         <member name="F:Newtonsoft.Json.JsonReader.State.Object">
6730             <summary>
6731             Reader is in an object.
6732             </summary>
6733         </member>
6734         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
6735             <summary>
6736             Reader is at the start of an array.
6737             </summary>
6738         </member>
6739         <member name="F:Newtonsoft.Json.JsonReader.State.Array">
6740             <summary>
6741             Reader is in an array.
6742             </summary>
6743         </member>
6744         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
6745             <summary>
6746             The <see cref="M:Newtonsoft.Json.JsonReader.Close"/> method has been called.
6747             </summary>
6748         </member>
6749         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
6750             <summary>
6751             Reader has just read a value.
6752             </summary>
6753         </member>
6754         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
6755             <summary>
6756             Reader is at the start of a constructor.
6757             </summary>
6758         </member>
6759         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
6760             <summary>
6761             Reader is in a constructor.
6762             </summary>
6763         </member>
6764         <member name="F:Newtonsoft.Json.JsonReader.State.Error">
6765             <summary>
6766             An error occurred that prevents the read operation from continuing.
6767             </summary>
6768         </member>
6769         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
6770             <summary>
6771             The end of the file has been reached successfully.
6772             </summary>
6773         </member>
6774         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
6775             <summary>
6776             Gets the current reader state.
6777             </summary>
6778             <value>The current reader state.</value>
6779         </member>
6780         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
6781             <summary>
6782             Gets or sets a value indicating whether the source should be closed when this reader is closed.
6783             </summary>
6784             <value>
6785             <c>true</c> to close the source when this reader is closed; otherwise <c>false</c>. The default is <c>true</c>.
6786             </value>
6787         </member>
6788         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
6789             <summary>
6790             Gets or sets a value indicating whether multiple pieces of JSON content can
6791             be read from a continuous stream without erroring.
6792             </summary>
6793             <value>
6794             <c>true</c> to support reading multiple pieces of JSON content; otherwise <c>false</c>.
6795             The default is <c>false</c>.
6796             </value>
6797         </member>
6798         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
6799             <summary>
6800             Gets the quotation mark character used to enclose the value of a string.
6801             </summary>
6802         </member>
6803         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
6804             <summary>
6805             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON.
6806             </summary>
6807         </member>
6808         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
6809             <summary>
6810             Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6811             </summary>
6812         </member>
6813         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
6814             <summary>
6815             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6816             </summary>
6817         </member>
6818         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
6819             <summary>
6820             Gets or sets how custom date formatted strings are parsed when reading JSON.
6821             </summary>
6822         </member>
6823         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
6824             <summary>
6825             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6826             </summary>
6827         </member>
6828         <member name="P:Newtonsoft.Json.JsonReader.TokenType">
6829             <summary>
6830             Gets the type of the current JSON token. 
6831             </summary>
6832         </member>
6833         <member name="P:Newtonsoft.Json.JsonReader.Value">
6834             <summary>
6835             Gets the text value of the current JSON token.
6836             </summary>
6837         </member>
6838         <member name="P:Newtonsoft.Json.JsonReader.ValueType">
6839             <summary>
6840             Gets the .NET type for the current JSON token.
6841             </summary>
6842         </member>
6843         <member name="P:Newtonsoft.Json.JsonReader.Depth">
6844             <summary>
6845             Gets the depth of the current token in the JSON document.
6846             </summary>
6847             <value>The depth of the current token in the JSON document.</value>
6848         </member>
6849         <member name="P:Newtonsoft.Json.JsonReader.Path">
6850             <summary>
6851             Gets the path of the current JSON token. 
6852             </summary>
6853         </member>
6854         <member name="P:Newtonsoft.Json.JsonReader.Culture">
6855             <summary>
6856             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6857             </summary>
6858         </member>
6859         <member name="M:Newtonsoft.Json.JsonReader.#ctor">
6860             <summary>
6861             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class.
6862             </summary>
6863         </member>
6864         <member name="M:Newtonsoft.Json.JsonReader.Read">
6865             <summary>
6866             Reads the next JSON token from the source.
6867             </summary>
6868             <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
6869         </member>
6870         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
6871             <summary>
6872             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
6873             </summary>
6874             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
6875         </member>
6876         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
6877             <summary>
6878             Reads the next JSON token from the source as a <see cref="T:System.String"/>.
6879             </summary>
6880             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6881         </member>
6882         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
6883             <summary>
6884             Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
6885             </summary>
6886             <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
6887         </member>
6888         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDouble">
6889             <summary>
6890             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
6891             </summary>
6892             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
6893         </member>
6894         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBoolean">
6895             <summary>
6896             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
6897             </summary>
6898             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
6899         </member>
6900         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
6901             <summary>
6902             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
6903             </summary>
6904             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
6905         </member>
6906         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
6907             <summary>
6908             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
6909             </summary>
6910             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
6911         </member>
6912         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
6913             <summary>
6914             Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
6915             </summary>
6916             <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
6917         </member>
6918         <member name="M:Newtonsoft.Json.JsonReader.Skip">
6919             <summary>
6920             Skips the children of the current token.
6921             </summary>
6922         </member>
6923         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
6924             <summary>
6925             Sets the current token.
6926             </summary>
6927             <param name="newToken">The new token.</param>
6928         </member>
6929         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
6930             <summary>
6931             Sets the current token and value.
6932             </summary>
6933             <param name="newToken">The new token.</param>
6934             <param name="value">The value.</param>
6935         </member>
6936         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)">
6937             <summary>
6938             Sets the current token and value.
6939             </summary>
6940             <param name="newToken">The new token.</param>
6941             <param name="value">The value.</param>
6942             <param name="updateIndex">A flag indicating whether the position index inside an array should be updated.</param>
6943         </member>
6944         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
6945             <summary>
6946             Sets the state based on current token type.
6947             </summary>
6948         </member>
6949         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
6950             <summary>
6951             Releases unmanaged and - optionally - managed resources.
6952             </summary>
6953             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
6954         </member>
6955         <member name="M:Newtonsoft.Json.JsonReader.Close">
6956             <summary>
6957             Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
6958             If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the source is also closed.
6959             </summary>
6960         </member>
6961         <member name="T:Newtonsoft.Json.JsonConvert">
6962             <summary>
6963             Provides methods for converting between .NET types and JSON types.
6964             </summary>
6965             <example>
6966               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
6967             </example>
6968         </member>
6969         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
6970             <summary>
6971             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
6972             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
6973             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"/>.
6974             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
6975             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
6976             </summary>
6977         </member>
6978         <member name="F:Newtonsoft.Json.JsonConvert.True">
6979             <summary>
6980             Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
6981             </summary>
6982         </member>
6983         <member name="F:Newtonsoft.Json.JsonConvert.False">
6984             <summary>
6985             Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
6986             </summary>
6987         </member>
6988         <member name="F:Newtonsoft.Json.JsonConvert.Null">
6989             <summary>
6990             Represents JavaScript's <c>null</c> as a string. This field is read-only.
6991             </summary>
6992         </member>
6993         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
6994             <summary>
6995             Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
6996             </summary>
6997         </member>
6998         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
6999             <summary>
7000             Represents JavaScript's positive infinity as a string. This field is read-only.
7001             </summary>
7002         </member>
7003         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
7004             <summary>
7005             Represents JavaScript's negative infinity as a string. This field is read-only.
7006             </summary>
7007         </member>
7008         <member name="F:Newtonsoft.Json.JsonConvert.NaN">
7009             <summary>
7010             Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
7011             </summary>
7012         </member>
7013         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
7014             <summary>
7015             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
7016             </summary>
7017             <param name="value">The value to convert.</param>
7018             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
7019         </member>
7020         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
7021             <summary>
7022             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
7023             </summary>
7024             <param name="value">The value to convert.</param>
7025             <param name="format">The format the date will be converted to.</param>
7026             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
7027             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
7028         </member>
7029         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
7030             <summary>
7031             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
7032             </summary>
7033             <param name="value">The value to convert.</param>
7034             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
7035         </member>
7036         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
7037             <summary>
7038             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
7039             </summary>
7040             <param name="value">The value to convert.</param>
7041             <param name="format">The format the date will be converted to.</param>
7042             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
7043         </member>
7044         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
7045             <summary>
7046             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
7047             </summary>
7048             <param name="value">The value to convert.</param>
7049             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
7050         </member>
7051         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
7052             <summary>
7053             Converts the <see cref="T:System.Char"/> to its JSON string representation.
7054             </summary>
7055             <param name="value">The value to convert.</param>
7056             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
7057         </member>
7058         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
7059             <summary>
7060             Converts the <see cref="T:System.Enum"/> to its JSON string representation.
7061             </summary>
7062             <param name="value">The value to convert.</param>
7063             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
7064         </member>
7065         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
7066             <summary>
7067             Converts the <see cref="T:System.Int32"/> to its JSON string representation.
7068             </summary>
7069             <param name="value">The value to convert.</param>
7070             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
7071         </member>
7072         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
7073             <summary>
7074             Converts the <see cref="T:System.Int16"/> to its JSON string representation.
7075             </summary>
7076             <param name="value">The value to convert.</param>
7077             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
7078         </member>
7079         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
7080             <summary>
7081             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
7082             </summary>
7083             <param name="value">The value to convert.</param>
7084             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
7085         </member>
7086         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
7087             <summary>
7088             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
7089             </summary>
7090             <param name="value">The value to convert.</param>
7091             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
7092         </member>
7093         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
7094             <summary>
7095             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
7096             </summary>
7097             <param name="value">The value to convert.</param>
7098             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
7099         </member>
7100         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
7101             <summary>
7102             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
7103             </summary>
7104             <param name="value">The value to convert.</param>
7105             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
7106         </member>
7107         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
7108             <summary>
7109             Converts the <see cref="T:System.Single"/> to its JSON string representation.
7110             </summary>
7111             <param name="value">The value to convert.</param>
7112             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
7113         </member>
7114         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
7115             <summary>
7116             Converts the <see cref="T:System.Double"/> to its JSON string representation.
7117             </summary>
7118             <param name="value">The value to convert.</param>
7119             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
7120         </member>
7121         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
7122             <summary>
7123             Converts the <see cref="T:System.Byte"/> to its JSON string representation.
7124             </summary>
7125             <param name="value">The value to convert.</param>
7126             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
7127         </member>
7128         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
7129             <summary>
7130             Converts the <see cref="T:System.SByte"/> to its JSON string representation.
7131             </summary>
7132             <param name="value">The value to convert.</param>
7133             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
7134         </member>
7135         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
7136             <summary>
7137             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
7138             </summary>
7139             <param name="value">The value to convert.</param>
7140             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
7141         </member>
7142         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
7143             <summary>
7144             Converts the <see cref="T:System.Guid"/> to its JSON string representation.
7145             </summary>
7146             <param name="value">The value to convert.</param>
7147             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
7148         </member>
7149         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
7150             <summary>
7151             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
7152             </summary>
7153             <param name="value">The value to convert.</param>
7154             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
7155         </member>
7156         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
7157             <summary>
7158             Converts the <see cref="T:System.Uri"/> to its JSON string representation.
7159             </summary>
7160             <param name="value">The value to convert.</param>
7161             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
7162         </member>
7163         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
7164             <summary>
7165             Converts the <see cref="T:System.String"/> to its JSON string representation.
7166             </summary>
7167             <param name="value">The value to convert.</param>
7168             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7169         </member>
7170         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
7171             <summary>
7172             Converts the <see cref="T:System.String"/> to its JSON string representation.
7173             </summary>
7174             <param name="value">The value to convert.</param>
7175             <param name="delimiter">The string delimiter character.</param>
7176             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7177         </member>
7178         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
7179             <summary>
7180             Converts the <see cref="T:System.String"/> to its JSON string representation.
7181             </summary>
7182             <param name="value">The value to convert.</param>
7183             <param name="delimiter">The string delimiter character.</param>
7184             <param name="stringEscapeHandling">The string escape handling.</param>
7185             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7186         </member>
7187         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
7188             <summary>
7189             Converts the <see cref="T:System.Object"/> to its JSON string representation.
7190             </summary>
7191             <param name="value">The value to convert.</param>
7192             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
7193         </member>
7194         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
7195             <summary>
7196             Serializes the specified object to a JSON string.
7197             </summary>
7198             <param name="value">The object to serialize.</param>
7199             <returns>A JSON string representation of the object.</returns>
7200         </member>
7201         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
7202             <summary>
7203             Serializes the specified object to a JSON string using formatting.
7204             </summary>
7205             <param name="value">The object to serialize.</param>
7206             <param name="formatting">Indicates how the output should be formatted.</param>
7207             <returns>
7208             A JSON string representation of the object.
7209             </returns>
7210         </member>
7211         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
7212             <summary>
7213             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7214             </summary>
7215             <param name="value">The object to serialize.</param>
7216             <param name="converters">A collection of converters used while serializing.</param>
7217             <returns>A JSON string representation of the object.</returns>
7218         </member>
7219         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
7220             <summary>
7221             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7222             </summary>
7223             <param name="value">The object to serialize.</param>
7224             <param name="formatting">Indicates how the output should be formatted.</param>
7225             <param name="converters">A collection of converters used while serializing.</param>
7226             <returns>A JSON string representation of the object.</returns>
7227         </member>
7228         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7229             <summary>
7230             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7231             </summary>
7232             <param name="value">The object to serialize.</param>
7233             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7234             If this is <c>null</c>, default serialization settings will be used.</param>
7235             <returns>
7236             A JSON string representation of the object.
7237             </returns>
7238         </member>
7239         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7240             <summary>
7241             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7242             </summary>
7243             <param name="value">The object to serialize.</param>
7244             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7245             If this is <c>null</c>, default serialization settings will be used.</param>
7246             <param name="type">
7247             The type of the value being serialized.
7248             This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
7249             Specifying the type is optional.
7250             </param>
7251             <returns>
7252             A JSON string representation of the object.
7253             </returns>
7254         </member>
7255         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7256             <summary>
7257             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7258             </summary>
7259             <param name="value">The object to serialize.</param>
7260             <param name="formatting">Indicates how the output should be formatted.</param>
7261             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7262             If this is <c>null</c>, default serialization settings will be used.</param>
7263             <returns>
7264             A JSON string representation of the object.
7265             </returns>
7266         </member>
7267         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7268             <summary>
7269             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7270             </summary>
7271             <param name="value">The object to serialize.</param>
7272             <param name="formatting">Indicates how the output should be formatted.</param>
7273             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7274             If this is <c>null</c>, default serialization settings will be used.</param>
7275             <param name="type">
7276             The type of the value being serialized.
7277             This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
7278             Specifying the type is optional.
7279             </param>
7280             <returns>
7281             A JSON string representation of the object.
7282             </returns>
7283         </member>
7284         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
7285             <summary>
7286             Deserializes the JSON to a .NET object.
7287             </summary>
7288             <param name="value">The JSON to deserialize.</param>
7289             <returns>The deserialized object from the JSON string.</returns>
7290         </member>
7291         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7292             <summary>
7293             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7294             </summary>
7295             <param name="value">The JSON to deserialize.</param>
7296             <param name="settings">
7297             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7298             If this is <c>null</c>, default serialization settings will be used.
7299             </param>
7300             <returns>The deserialized object from the JSON string.</returns>
7301         </member>
7302         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
7303             <summary>
7304             Deserializes the JSON to the specified .NET type.
7305             </summary>
7306             <param name="value">The JSON to deserialize.</param>
7307             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
7308             <returns>The deserialized object from the JSON string.</returns>
7309         </member>
7310         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
7311             <summary>
7312             Deserializes the JSON to the specified .NET type.
7313             </summary>
7314             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7315             <param name="value">The JSON to deserialize.</param>
7316             <returns>The deserialized object from the JSON string.</returns>
7317         </member>
7318         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
7319             <summary>
7320             Deserializes the JSON to the given anonymous type.
7321             </summary>
7322             <typeparam name="T">
7323             The anonymous type to deserialize to. This can't be specified
7324             traditionally and must be inferred from the anonymous type passed
7325             as a parameter.
7326             </typeparam>
7327             <param name="value">The JSON to deserialize.</param>
7328             <param name="anonymousTypeObject">The anonymous type object.</param>
7329             <returns>The deserialized anonymous type from the JSON string.</returns>
7330         </member>
7331         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
7332             <summary>
7333             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7334             </summary>
7335             <typeparam name="T">
7336             The anonymous type to deserialize to. This can't be specified
7337             traditionally and must be inferred from the anonymous type passed
7338             as a parameter.
7339             </typeparam>
7340             <param name="value">The JSON to deserialize.</param>
7341             <param name="anonymousTypeObject">The anonymous type object.</param>
7342             <param name="settings">
7343             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7344             If this is <c>null</c>, default serialization settings will be used.
7345             </param>
7346             <returns>The deserialized anonymous type from the JSON string.</returns>
7347         </member>
7348         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
7349             <summary>
7350             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7351             </summary>
7352             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7353             <param name="value">The JSON to deserialize.</param>
7354             <param name="converters">Converters to use while deserializing.</param>
7355             <returns>The deserialized object from the JSON string.</returns>
7356         </member>
7357         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7358             <summary>
7359             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7360             </summary>
7361             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7362             <param name="value">The object to deserialize.</param>
7363             <param name="settings">
7364             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7365             If this is <c>null</c>, default serialization settings will be used.
7366             </param>
7367             <returns>The deserialized object from the JSON string.</returns>
7368         </member>
7369         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
7370             <summary>
7371             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7372             </summary>
7373             <param name="value">The JSON to deserialize.</param>
7374             <param name="type">The type of the object to deserialize.</param>
7375             <param name="converters">Converters to use while deserializing.</param>
7376             <returns>The deserialized object from the JSON string.</returns>
7377         </member>
7378         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7379             <summary>
7380             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7381             </summary>
7382             <param name="value">The JSON to deserialize.</param>
7383             <param name="type">The type of the object to deserialize to.</param>
7384             <param name="settings">
7385             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7386             If this is <c>null</c>, default serialization settings will be used.
7387             </param>
7388             <returns>The deserialized object from the JSON string.</returns>
7389         </member>
7390         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
7391             <summary>
7392             Populates the object with values from the JSON string.
7393             </summary>
7394             <param name="value">The JSON to populate values from.</param>
7395             <param name="target">The target object to populate values onto.</param>
7396         </member>
7397         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7398             <summary>
7399             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7400             </summary>
7401             <param name="value">The JSON to populate values from.</param>
7402             <param name="target">The target object to populate values onto.</param>
7403             <param name="settings">
7404             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7405             If this is <c>null</c>, default serialization settings will be used.
7406             </param>
7407         </member>
7408         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
7409             <summary>
7410             Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string.
7411             </summary>
7412             <param name="node">The node to serialize.</param>
7413             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
7414         </member>
7415         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
7416             <summary>
7417             Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting.
7418             </summary>
7419             <param name="node">The node to serialize.</param>
7420             <param name="formatting">Indicates how the output should be formatted.</param>
7421             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
7422         </member>
7423         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
7424             <summary>
7425             Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
7426             </summary>
7427             <param name="node">The node to serialize.</param>
7428             <param name="formatting">Indicates how the output should be formatted.</param>
7429             <param name="omitRootObject">Omits writing the root object.</param>
7430             <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
7431         </member>
7432         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
7433             <summary>
7434             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string.
7435             </summary>
7436             <param name="value">The JSON string.</param>
7437             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
7438         </member>
7439         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
7440             <summary>
7441             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
7442             </summary>
7443             <param name="value">The JSON string.</param>
7444             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7445             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
7446         </member>
7447         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
7448             <summary>
7449             Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
7450             and writes a Json.NET array attribute for collections.
7451             </summary>
7452             <param name="value">The JSON string.</param>
7453             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7454             <param name="writeArrayAttribute">
7455             A flag to indicate whether to write the Json.NET array attribute.
7456             This attribute helps preserve arrays when converting the written XML back to JSON.
7457             </param>
7458             <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
7459         </member>
7460         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
7461             <summary>
7462             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
7463             </summary>
7464             <param name="node">The node to convert to JSON.</param>
7465             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7466         </member>
7467         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
7468             <summary>
7469             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
7470             </summary>
7471             <param name="node">The node to convert to JSON.</param>
7472             <param name="formatting">Indicates how the output should be formatted.</param>
7473             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7474         </member>
7475         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
7476             <summary>
7477             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>.
7478             </summary>
7479             <param name="node">The node to serialize.</param>
7480             <param name="formatting">Indicates how the output should be formatted.</param>
7481             <param name="omitRootObject">Omits writing the root object.</param>
7482             <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7483         </member>
7484         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
7485             <summary>
7486             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
7487             </summary>
7488             <param name="value">The JSON string.</param>
7489             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7490         </member>
7491         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
7492             <summary>
7493             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
7494             </summary>
7495             <param name="value">The JSON string.</param>
7496             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7497             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7498         </member>
7499         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
7500             <summary>
7501             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
7502             and writes a Json.NET array attribute for collections.
7503             </summary>
7504             <param name="value">The JSON string.</param>
7505             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7506             <param name="writeArrayAttribute">
7507             A flag to indicate whether to write the Json.NET array attribute.
7508             This attribute helps preserve arrays when converting the written XML back to JSON.
7509             </param>
7510             <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
7511         </member>
7512         <member name="T:Newtonsoft.Json.JsonSerializationException">
7513             <summary>
7514             The exception thrown when an error occurs during JSON serialization or deserialization.
7515             </summary>
7516         </member>
7517         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
7518             <summary>
7519             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
7520             </summary>
7521         </member>
7522         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
7523             <summary>
7524             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7525             with a specified error message.
7526             </summary>
7527             <param name="message">The error message that explains the reason for the exception.</param>
7528         </member>
7529         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
7530             <summary>
7531             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
7532             with a specified error message and a reference to the inner exception that is the cause of this exception.
7533             </summary>
7534             <param name="message">The error message that explains the reason for the exception.</param>
7535             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
7536         </member>
7537         <member name="T:Newtonsoft.Json.JsonSerializer">
7538             <summary>
7539             Serializes and deserializes objects into and from the JSON format.
7540             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
7541             </summary>
7542         </member>
7543         <member name="E:Newtonsoft.Json.JsonSerializer.Error">
7544             <summary>
7545             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
7546             </summary>
7547         </member>
7548         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
7549             <summary>
7550             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
7551             </summary>
7552         </member>
7553         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
7554             <summary>
7555             Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/> used by the serializer when resolving type names.
7556             </summary>
7557         </member>
7558         <member name="P:Newtonsoft.Json.JsonSerializer.SerializationBinder">
7559             <summary>
7560             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
7561             </summary>
7562         </member>
7563         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
7564             <summary>
7565             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
7566             </summary>
7567             <value>The trace writer.</value>
7568         </member>
7569         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
7570             <summary>
7571             Gets or sets the equality comparer used by the serializer when comparing references.
7572             </summary>
7573             <value>The equality comparer.</value>
7574         </member>
7575         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
7576             <summary>
7577             Gets or sets how type name writing and reading is handled by the serializer.
7578             </summary>
7579             <remarks>
7580             <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
7581             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
7582             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
7583             </remarks>
7584         </member>
7585         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
7586             <summary>
7587             Gets or sets how a type name assembly is written and resolved by the serializer.
7588             </summary>
7589             <value>The type name assembly format.</value>
7590         </member>
7591         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormatHandling">
7592             <summary>
7593             Gets or sets how a type name assembly is written and resolved by the serializer.
7594             </summary>
7595             <value>The type name assembly format.</value>
7596         </member>
7597         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
7598             <summary>
7599             Gets or sets how object references are preserved by the serializer.
7600             </summary>
7601         </member>
7602         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
7603             <summary>
7604             Gets or sets how reference loops (e.g. a class referencing itself) is handled.
7605             </summary>
7606         </member>
7607         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
7608             <summary>
7609             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
7610             </summary>
7611         </member>
7612         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
7613             <summary>
7614             Gets or sets how null values are handled during serialization and deserialization.
7615             </summary>
7616         </member>
7617         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
7618             <summary>
7619             Gets or sets how default values are handled during serialization and deserialization.
7620             </summary>
7621         </member>
7622         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
7623             <summary>
7624             Gets or sets how objects are created during deserialization.
7625             </summary>
7626             <value>The object creation handling.</value>
7627         </member>
7628         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
7629             <summary>
7630             Gets or sets how constructors are used during deserialization.
7631             </summary>
7632             <value>The constructor handling.</value>
7633         </member>
7634         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
7635             <summary>
7636             Gets or sets how metadata properties are used during deserialization.
7637             </summary>
7638             <value>The metadata properties handling.</value>
7639         </member>
7640         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
7641             <summary>
7642             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
7643             </summary>
7644             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
7645         </member>
7646         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
7647             <summary>
7648             Gets or sets the contract resolver used by the serializer when
7649             serializing .NET objects to JSON and vice versa.
7650             </summary>
7651         </member>
7652         <member name="P:Newtonsoft.Json.JsonSerializer.Context">
7653             <summary>
7654             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
7655             </summary>
7656             <value>The context.</value>
7657         </member>
7658         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
7659             <summary>
7660             Indicates how JSON text output is formatted.
7661             </summary>
7662         </member>
7663         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
7664             <summary>
7665             Gets or sets how dates are written to JSON text.
7666             </summary>
7667         </member>
7668         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
7669             <summary>
7670             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
7671             </summary>
7672         </member>
7673         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
7674             <summary>
7675             Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON.
7676             </summary>
7677         </member>
7678         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
7679             <summary>
7680             Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
7681             </summary>
7682         </member>
7683         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
7684             <summary>
7685             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
7686             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
7687             are written as JSON text.
7688             </summary>
7689         </member>
7690         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
7691             <summary>
7692             Gets or sets how strings are escaped when writing JSON text.
7693             </summary>
7694         </member>
7695         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
7696             <summary>
7697             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
7698             and the expected date format when reading JSON text.
7699             </summary>
7700         </member>
7701         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
7702             <summary>
7703             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
7704             </summary>
7705         </member>
7706         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
7707             <summary>
7708             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
7709             </summary>
7710         </member>
7711         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
7712             <summary>
7713             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
7714             </summary>
7715             <value>
7716                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
7717             </value>
7718         </member>
7719         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
7720             <summary>
7721             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
7722             </summary>
7723         </member>
7724         <member name="M:Newtonsoft.Json.JsonSerializer.Create">
7725             <summary>
7726             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7727             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7728             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7729             </summary>
7730             <returns>
7731             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7732             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7733             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7734             </returns>
7735         </member>
7736         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
7737             <summary>
7738             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7739             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7740             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7741             </summary>
7742             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7743             <returns>
7744             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7745             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
7746             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7747             </returns>
7748         </member>
7749         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
7750             <summary>
7751             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7752             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7753             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7754             </summary>
7755             <returns>
7756             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
7757             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7758             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
7759             </returns>
7760         </member>
7761         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
7762             <summary>
7763             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7764             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7765             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7766             </summary>
7767             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
7768             <returns>
7769             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7770             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
7771             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7772             </returns>
7773         </member>
7774         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
7775             <summary>
7776             Populates the JSON values onto the target object.
7777             </summary>
7778             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
7779             <param name="target">The target object to populate values onto.</param>
7780         </member>
7781         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
7782             <summary>
7783             Populates the JSON values onto the target object.
7784             </summary>
7785             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
7786             <param name="target">The target object to populate values onto.</param>
7787         </member>
7788         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
7789             <summary>
7790             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
7791             </summary>
7792             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
7793             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
7794         </member>
7795         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
7796             <summary>
7797             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
7798             into an instance of the specified type.
7799             </summary>
7800             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
7801             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7802             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7803         </member>
7804         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
7805             <summary>
7806             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7807             into an instance of the specified type.
7808             </summary>
7809             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7810             <typeparam name="T">The type of the object to deserialize.</typeparam>
7811             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
7812         </member>
7813         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
7814             <summary>
7815             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
7816             into an instance of the specified type.
7817             </summary>
7818             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
7819             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
7820             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
7821         </member>
7822         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
7823             <summary>
7824             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7825             using the specified <see cref="T:System.IO.TextWriter"/>.
7826             </summary>
7827             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7828             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7829         </member>
7830         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
7831             <summary>
7832             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7833             using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7834             </summary>
7835             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7836             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7837             <param name="objectType">
7838             The type of the value being serialized.
7839             This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
7840             Specifying the type is optional.
7841             </param>
7842         </member>
7843         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
7844             <summary>
7845             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7846             using the specified <see cref="T:System.IO.TextWriter"/>.
7847             </summary>
7848             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
7849             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7850             <param name="objectType">
7851             The type of the value being serialized.
7852             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.
7853             Specifying the type is optional.
7854             </param>
7855         </member>
7856         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
7857             <summary>
7858             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
7859             using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7860             </summary>
7861             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
7862             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
7863         </member>
7864         <member name="T:Newtonsoft.Json.Schema.Extensions">
7865             <summary>
7866             <para>
7867             Contains the JSON schema extension methods.
7868             </para>
7869             <note type="caution">
7870             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.
7871             </note>
7872             </summary>
7873         </member>
7874         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7875             <summary>
7876             <para>
7877             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7878             </para>
7879             <note type="caution">
7880             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.
7881             </note>
7882             </summary>
7883             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7884             <param name="schema">The schema to test with.</param>
7885             <returns>
7886                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7887             </returns>
7888         </member>
7889         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7890             <summary>
7891             <para>
7892             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
7893             </para>
7894             <note type="caution">
7895             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.
7896             </note>
7897             </summary>
7898             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7899             <param name="schema">The schema to test with.</param>
7900             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
7901             <returns>
7902                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
7903             </returns>
7904         </member>
7905         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7906             <summary>
7907             <para>
7908             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7909             </para>
7910             <note type="caution">
7911             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.
7912             </note>
7913             </summary>
7914             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7915             <param name="schema">The schema to test with.</param>
7916         </member>
7917         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7918             <summary>
7919             <para>
7920             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7921             </para>
7922             <note type="caution">
7923             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.
7924             </note>
7925             </summary>
7926             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7927             <param name="schema">The schema to test with.</param>
7928             <param name="validationEventHandler">The validation event handler.</param>
7929         </member>
7930         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7931             <summary>
7932             <para>
7933             Returns detailed information about the schema exception.
7934             </para>
7935             <note type="caution">
7936             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.
7937             </note>
7938             </summary>
7939         </member>
7940         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
7941             <summary>
7942             Gets the line number indicating where the error occurred.
7943             </summary>
7944             <value>The line number indicating where the error occurred.</value>
7945         </member>
7946         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
7947             <summary>
7948             Gets the line position indicating where the error occurred.
7949             </summary>
7950             <value>The line position indicating where the error occurred.</value>
7951         </member>
7952         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
7953             <summary>
7954             Gets the path to the JSON where the error occurred.
7955             </summary>
7956             <value>The path to the JSON where the error occurred.</value>
7957         </member>
7958         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7959             <summary>
7960             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
7961             </summary>
7962         </member>
7963         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
7964             <summary>
7965             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7966             with a specified error message.
7967             </summary>
7968             <param name="message">The error message that explains the reason for the exception.</param>
7969         </member>
7970         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
7971             <summary>
7972             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
7973             with a specified error message and a reference to the inner exception that is the cause of this exception.
7974             </summary>
7975             <param name="message">The error message that explains the reason for the exception.</param>
7976             <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
7977         </member>
7978         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7979             <summary>
7980             <para>
7981             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
7982             </para>
7983             <note type="caution">
7984             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.
7985             </note>
7986             </summary>
7987         </member>
7988         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
7989             <summary>
7990             Gets or sets the loaded schemas.
7991             </summary>
7992             <value>The loaded schemas.</value>
7993         </member>
7994         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7995             <summary>
7996             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
7997             </summary>
7998         </member>
7999         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
8000             <summary>
8001             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
8002             </summary>
8003             <param name="reference">The id.</param>
8004             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
8005         </member>
8006         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
8007             <summary>
8008             <para>
8009             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
8010             </para>
8011             <note type="caution">
8012             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.
8013             </note>
8014             </summary>
8015         </member>
8016         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
8017             <summary>
8018             Do not infer a schema Id.
8019             </summary>
8020         </member>
8021         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
8022             <summary>
8023             Use the .NET type name as the schema Id.
8024             </summary>
8025         </member>
8026         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
8027             <summary>
8028             Use the assembly qualified .NET type name as the schema Id.
8029             </summary>
8030         </member>
8031         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
8032             <summary>
8033             <para>
8034             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
8035             </para>
8036             <note type="caution">
8037             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.
8038             </note>
8039             </summary>
8040         </member>
8041         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
8042             <summary>
8043             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
8044             </summary>
8045             <value>The JsonSchemaException associated with the validation error.</value>
8046         </member>
8047         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
8048             <summary>
8049             Gets the path of the JSON location where the validation error occurred.
8050             </summary>
8051             <value>The path of the JSON location where the validation error occurred.</value>
8052         </member>
8053         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
8054             <summary>
8055             Gets the text description corresponding to the validation error.
8056             </summary>
8057             <value>The text description.</value>
8058         </member>
8059         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
8060             <summary>
8061             <para>
8062             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
8063             </para>
8064             <note type="caution">
8065             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.
8066             </note>
8067             </summary>
8068         </member>
8069         <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8070             <summary>
8071             <para>
8072             An in-memory representation of a JSON Schema.
8073             </para>
8074             <note type="caution">
8075             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.
8076             </note>
8077             </summary>
8078         </member>
8079         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8080             <summary>
8081             Gets or sets the id.
8082             </summary>
8083         </member>
8084         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8085             <summary>
8086             Gets or sets the title.
8087             </summary>
8088         </member>
8089         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8090             <summary>
8091             Gets or sets whether the object is required.
8092             </summary>
8093         </member>
8094         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8095             <summary>
8096             Gets or sets whether the object is read-only.
8097             </summary>
8098         </member>
8099         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8100             <summary>
8101             Gets or sets whether the object is visible to users.
8102             </summary>
8103         </member>
8104         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8105             <summary>
8106             Gets or sets whether the object is transient.
8107             </summary>
8108         </member>
8109         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8110             <summary>
8111             Gets or sets the description of the object.
8112             </summary>
8113         </member>
8114         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8115             <summary>
8116             Gets or sets the types of values allowed by the object.
8117             </summary>
8118             <value>The type.</value>
8119         </member>
8120         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8121             <summary>
8122             Gets or sets the pattern.
8123             </summary>
8124             <value>The pattern.</value>
8125         </member>
8126         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8127             <summary>
8128             Gets or sets the minimum length.
8129             </summary>
8130             <value>The minimum length.</value>
8131         </member>
8132         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8133             <summary>
8134             Gets or sets the maximum length.
8135             </summary>
8136             <value>The maximum length.</value>
8137         </member>
8138         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8139             <summary>
8140             Gets or sets a number that the value should be divisible by.
8141             </summary>
8142             <value>A number that the value should be divisible by.</value>
8143         </member>
8144         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8145             <summary>
8146             Gets or sets the minimum.
8147             </summary>
8148             <value>The minimum.</value>
8149         </member>
8150         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8151             <summary>
8152             Gets or sets the maximum.
8153             </summary>
8154             <value>The maximum.</value>
8155         </member>
8156         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8157             <summary>
8158             Gets or sets a flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).
8159             </summary>
8160             <value>A flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).</value>
8161         </member>
8162         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8163             <summary>
8164             Gets or sets a flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).
8165             </summary>
8166             <value>A flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).</value>
8167         </member>
8168         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8169             <summary>
8170             Gets or sets the minimum number of items.
8171             </summary>
8172             <value>The minimum number of items.</value>
8173         </member>
8174         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8175             <summary>
8176             Gets or sets the maximum number of items.
8177             </summary>
8178             <value>The maximum number of items.</value>
8179         </member>
8180         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8181             <summary>
8182             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8183             </summary>
8184             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8185         </member>
8186         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8187             <summary>
8188             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"/>.
8189             </summary>
8190             <value>
8191                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8192             </value>
8193         </member>
8194         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8195             <summary>
8196             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8197             </summary>
8198             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8199         </member>
8200         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8201             <summary>
8202             Gets or sets a value indicating whether additional items are allowed.
8203             </summary>
8204             <value>
8205                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8206             </value>
8207         </member>
8208         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8209             <summary>
8210             Gets or sets whether the array items must be unique.
8211             </summary>
8212         </member>
8213         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8214             <summary>
8215             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8216             </summary>
8217             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8218         </member>
8219         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8220             <summary>
8221             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8222             </summary>
8223             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8224         </member>
8225         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8226             <summary>
8227             Gets or sets the pattern properties.
8228             </summary>
8229             <value>The pattern properties.</value>
8230         </member>
8231         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8232             <summary>
8233             Gets or sets a value indicating whether additional properties are allowed.
8234             </summary>
8235             <value>
8236                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8237             </value>
8238         </member>
8239         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8240             <summary>
8241             Gets or sets the required property if this property is present.
8242             </summary>
8243             <value>The required property if this property is present.</value>
8244         </member>
8245         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8246             <summary>
8247             Gets or sets the a collection of valid enum values allowed.
8248             </summary>
8249             <value>A collection of valid enum values allowed.</value>
8250         </member>
8251         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8252             <summary>
8253             Gets or sets disallowed types.
8254             </summary>
8255             <value>The disallowed types.</value>
8256         </member>
8257         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8258             <summary>
8259             Gets or sets the default value.
8260             </summary>
8261             <value>The default value.</value>
8262         </member>
8263         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8264             <summary>
8265             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8266             </summary>
8267             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8268         </member>
8269         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8270             <summary>
8271             Gets or sets the format.
8272             </summary>
8273             <value>The format.</value>
8274         </member>
8275         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8276             <summary>
8277             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8278             </summary>
8279         </member>
8280         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8281             <summary>
8282             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8283             </summary>
8284             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8285             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8286         </member>
8287         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8288             <summary>
8289             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8290             </summary>
8291             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8292             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8293             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8294         </member>
8295         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8296             <summary>
8297             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema.
8298             </summary>
8299             <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
8300             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
8301         </member>
8302         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8303             <summary>
8304             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8305             </summary>
8306             <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
8307             <param name="resolver">The resolver.</param>
8308             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
8309         </member>
8310         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8311             <summary>
8312             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8313             </summary>
8314             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8315         </member>
8316         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8317             <summary>
8318             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8319             </summary>
8320             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8321             <param name="resolver">The resolver used.</param>
8322         </member>
8323         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8324             <summary>
8325             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8326             </summary>
8327             <returns>
8328             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8329             </returns>
8330         </member>
8331         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8332             <summary>
8333             <para>
8334             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8335             </para>
8336             <note type="caution">
8337             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.
8338             </note>
8339             </summary>
8340         </member>
8341         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8342             <summary>
8343             Gets or sets how undefined schemas are handled by the serializer.
8344             </summary>
8345         </member>
8346         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8347             <summary>
8348             Gets or sets the contract resolver.
8349             </summary>
8350             <value>The contract resolver.</value>
8351         </member>
8352         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8353             <summary>
8354             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8355             </summary>
8356             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8357             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8358         </member>
8359         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8360             <summary>
8361             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8362             </summary>
8363             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8364             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8365             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8366         </member>
8367         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8368             <summary>
8369             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8370             </summary>
8371             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8372             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8373             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8374         </member>
8375         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8376             <summary>
8377             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8378             </summary>
8379             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8380             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8381             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8382             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8383         </member>
8384         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8385             <summary>
8386             <para>
8387             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8388             </para>
8389             <note type="caution">
8390             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.
8391             </note>
8392             </summary>
8393         </member>
8394         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8395             <summary>
8396             No type specified.
8397             </summary>
8398         </member>
8399         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8400             <summary>
8401             String type.
8402             </summary>
8403         </member>
8404         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8405             <summary>
8406             Float type.
8407             </summary>
8408         </member>
8409         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8410             <summary>
8411             Integer type.
8412             </summary>
8413         </member>
8414         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8415             <summary>
8416             Boolean type.
8417             </summary>
8418         </member>
8419         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8420             <summary>
8421             Object type.
8422             </summary>
8423         </member>
8424         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8425             <summary>
8426             Array type.
8427             </summary>
8428         </member>
8429         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8430             <summary>
8431             Null type.
8432             </summary>
8433         </member>
8434         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8435             <summary>
8436             Any type.
8437             </summary>
8438         </member>
8439         <member name="T:Newtonsoft.Json.MissingMemberHandling">
8440             <summary>
8441             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8442             </summary>
8443         </member>
8444         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8445             <summary>
8446             Ignore a missing member and do not attempt to deserialize it.
8447             </summary>
8448         </member>
8449         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8450             <summary>
8451             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8452             </summary>
8453         </member>
8454         <member name="T:Newtonsoft.Json.NullValueHandling">
8455             <summary>
8456             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8457             </summary>
8458             <example>
8459               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8460               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8461             </example>
8462         </member>
8463         <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8464             <summary>
8465             Include null values when serializing and deserializing objects.
8466             </summary>
8467         </member>
8468         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8469             <summary>
8470             Ignore null values when serializing and deserializing objects.
8471             </summary>
8472         </member>
8473         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8474             <summary>
8475             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8476             </summary>
8477         </member>
8478         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8479             <summary>
8480             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8481             </summary>
8482         </member>
8483         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8484             <summary>
8485             Ignore loop references and do not serialize.
8486             </summary>
8487         </member>
8488         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8489             <summary>
8490             Serialize loop references.
8491             </summary>
8492         </member>
8493         <member name="T:Newtonsoft.Json.TypeNameHandling">
8494             <summary>
8495             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8496             </summary>
8497             <remarks>
8498             <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
8499             Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
8500             when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
8501             </remarks>
8502         </member>
8503         <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8504             <summary>
8505             Do not include the .NET type name when serializing types.
8506             </summary>
8507         </member>
8508         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8509             <summary>
8510             Include the .NET type name when serializing into a JSON object structure.
8511             </summary>
8512         </member>
8513         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8514             <summary>
8515             Include the .NET type name when serializing into a JSON array structure.
8516             </summary>
8517         </member>
8518         <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8519             <summary>
8520             Always include the .NET type name when serializing.
8521             </summary>
8522         </member>
8523         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8524             <summary>
8525             Include the .NET type name when the type of the object being serialized is not the same as its declared type.
8526             Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON
8527             you must specify a root type object with <see cref="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"/>
8528             or <see cref="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)"/>.
8529             </summary>
8530         </member>
8531         <member name="T:Newtonsoft.Json.JsonToken">
8532             <summary>
8533             Specifies the type of JSON token.
8534             </summary>
8535         </member>
8536         <member name="F:Newtonsoft.Json.JsonToken.None">
8537             <summary>
8538             This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a read method has not been called.
8539             </summary>
8540         </member>
8541         <member name="F:Newtonsoft.Json.JsonToken.StartObject">
8542             <summary>
8543             An object start token.
8544             </summary>
8545         </member>
8546         <member name="F:Newtonsoft.Json.JsonToken.StartArray">
8547             <summary>
8548             An array start token.
8549             </summary>
8550         </member>
8551         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
8552             <summary>
8553             A constructor start token.
8554             </summary>
8555         </member>
8556         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
8557             <summary>
8558             An object property name.
8559             </summary>
8560         </member>
8561         <member name="F:Newtonsoft.Json.JsonToken.Comment">
8562             <summary>
8563             A comment.
8564             </summary>
8565         </member>
8566         <member name="F:Newtonsoft.Json.JsonToken.Raw">
8567             <summary>
8568             Raw JSON.
8569             </summary>
8570         </member>
8571         <member name="F:Newtonsoft.Json.JsonToken.Integer">
8572             <summary>
8573             An integer.
8574             </summary>
8575         </member>
8576         <member name="F:Newtonsoft.Json.JsonToken.Float">
8577             <summary>
8578             A float.
8579             </summary>
8580         </member>
8581         <member name="F:Newtonsoft.Json.JsonToken.String">
8582             <summary>
8583             A string.
8584             </summary>
8585         </member>
8586         <member name="F:Newtonsoft.Json.JsonToken.Boolean">
8587             <summary>
8588             A boolean.
8589             </summary>
8590         </member>
8591         <member name="F:Newtonsoft.Json.JsonToken.Null">
8592             <summary>
8593             A null token.
8594             </summary>
8595         </member>
8596         <member name="F:Newtonsoft.Json.JsonToken.Undefined">
8597             <summary>
8598             An undefined token.
8599             </summary>
8600         </member>
8601         <member name="F:Newtonsoft.Json.JsonToken.EndObject">
8602             <summary>
8603             An object end token.
8604             </summary>
8605         </member>
8606         <member name="F:Newtonsoft.Json.JsonToken.EndArray">
8607             <summary>
8608             An array end token.
8609             </summary>
8610         </member>
8611         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
8612             <summary>
8613             A constructor end token.
8614             </summary>
8615         </member>
8616         <member name="F:Newtonsoft.Json.JsonToken.Date">
8617             <summary>
8618             A Date.
8619             </summary>
8620         </member>
8621         <member name="F:Newtonsoft.Json.JsonToken.Bytes">
8622             <summary>
8623             Byte data.
8624             </summary>
8625         </member>
8626         <member name="T:Newtonsoft.Json.JsonWriter">
8627             <summary>
8628             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
8629             </summary>
8630         </member>
8631         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
8632             <summary>
8633             Gets or sets a value indicating whether the destination should be closed when this writer is closed.
8634             </summary>
8635             <value>
8636             <c>true</c> to close the destination when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
8637             </value>
8638         </member>
8639         <member name="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose">
8640             <summary>
8641             Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
8642             </summary>
8643             <value>
8644             <c>true</c> to auto-complete the JSON when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
8645             </value>
8646         </member>
8647         <member name="P:Newtonsoft.Json.JsonWriter.Top">
8648             <summary>
8649             Gets the top.
8650             </summary>
8651             <value>The top.</value>
8652         </member>
8653         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
8654             <summary>
8655             Gets the state of the writer.
8656             </summary>
8657         </member>
8658         <member name="P:Newtonsoft.Json.JsonWriter.Path">
8659             <summary>
8660             Gets the path of the writer. 
8661             </summary>
8662         </member>
8663         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
8664             <summary>
8665             Gets or sets a value indicating how JSON text output should be formatted.
8666             </summary>
8667         </member>
8668         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
8669             <summary>
8670             Gets or sets how dates are written to JSON text.
8671             </summary>
8672         </member>
8673         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
8674             <summary>
8675             Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when writing JSON text.
8676             </summary>
8677         </member>
8678         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
8679             <summary>
8680             Gets or sets how strings are escaped when writing JSON text.
8681             </summary>
8682         </member>
8683         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
8684             <summary>
8685             Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
8686             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
8687             are written to JSON text.
8688             </summary>
8689         </member>
8690         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
8691             <summary>
8692             Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text.
8693             </summary>
8694         </member>
8695         <member name="P:Newtonsoft.Json.JsonWriter.Culture">
8696             <summary>
8697             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
8698             </summary>
8699         </member>
8700         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
8701             <summary>
8702             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriter"/> class.
8703             </summary>
8704         </member>
8705         <member name="M:Newtonsoft.Json.JsonWriter.Flush">
8706             <summary>
8707             Flushes whatever is in the buffer to the destination and also flushes the destination.
8708             </summary>
8709         </member>
8710         <member name="M:Newtonsoft.Json.JsonWriter.Close">
8711             <summary>
8712             Closes this writer.
8713             If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
8714             If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
8715             </summary>
8716         </member>
8717         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
8718             <summary>
8719             Writes the beginning of a JSON object.
8720             </summary>
8721         </member>
8722         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
8723             <summary>
8724             Writes the end of a JSON object.
8725             </summary>
8726         </member>
8727         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
8728             <summary>
8729             Writes the beginning of a JSON array.
8730             </summary>
8731         </member>
8732         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
8733             <summary>
8734             Writes the end of an array.
8735             </summary>
8736         </member>
8737         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
8738             <summary>
8739             Writes the start of a constructor with the given name.
8740             </summary>
8741             <param name="name">The name of the constructor.</param>
8742         </member>
8743         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
8744             <summary>
8745             Writes the end constructor.
8746             </summary>
8747         </member>
8748         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
8749             <summary>
8750             Writes the property name of a name/value pair of a JSON object.
8751             </summary>
8752             <param name="name">The name of the property.</param>
8753         </member>
8754         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
8755             <summary>
8756             Writes the property name of a name/value pair of a JSON object.
8757             </summary>
8758             <param name="name">The name of the property.</param>
8759             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
8760         </member>
8761         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
8762             <summary>
8763             Writes the end of the current JSON object or array.
8764             </summary>
8765         </member>
8766         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
8767             <summary>
8768             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
8769             </summary>
8770             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8771         </member>
8772         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
8773             <summary>
8774             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
8775             </summary>
8776             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
8777             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
8778         </member>
8779         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
8780             <summary>
8781             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
8782             </summary>
8783             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8784             <param name="value">
8785             The value to write.
8786             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"/>.
8787             <c>null</c> can be passed to the method for tokens that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.
8788             </param>
8789         </member>
8790         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
8791             <summary>
8792             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
8793             </summary>
8794             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
8795         </member>
8796         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
8797             <summary>
8798             Writes the specified end token.
8799             </summary>
8800             <param name="token">The end token to write.</param>
8801         </member>
8802         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
8803             <summary>
8804             Writes indent characters.
8805             </summary>
8806         </member>
8807         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
8808             <summary>
8809             Writes the JSON value delimiter.
8810             </summary>
8811         </member>
8812         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
8813             <summary>
8814             Writes an indent space.
8815             </summary>
8816         </member>
8817         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
8818             <summary>
8819             Writes a null value.
8820             </summary>
8821         </member>
8822         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
8823             <summary>
8824             Writes an undefined value.
8825             </summary>
8826         </member>
8827         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
8828             <summary>
8829             Writes raw JSON without changing the writer's state.
8830             </summary>
8831             <param name="json">The raw JSON to write.</param>
8832         </member>
8833         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
8834             <summary>
8835             Writes raw JSON where a value is expected and updates the writer's state.
8836             </summary>
8837             <param name="json">The raw JSON to write.</param>
8838         </member>
8839         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
8840             <summary>
8841             Writes a <see cref="T:System.String"/> value.
8842             </summary>
8843             <param name="value">The <see cref="T:System.String"/> value to write.</param>
8844         </member>
8845         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
8846             <summary>
8847             Writes a <see cref="T:System.Int32"/> value.
8848             </summary>
8849             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
8850         </member>
8851         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
8852             <summary>
8853             Writes a <see cref="T:System.UInt32"/> value.
8854             </summary>
8855             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
8856         </member>
8857         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
8858             <summary>
8859             Writes a <see cref="T:System.Int64"/> value.
8860             </summary>
8861             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
8862         </member>
8863         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
8864             <summary>
8865             Writes a <see cref="T:System.UInt64"/> value.
8866             </summary>
8867             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
8868         </member>
8869         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
8870             <summary>
8871             Writes a <see cref="T:System.Single"/> value.
8872             </summary>
8873             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
8874         </member>
8875         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
8876             <summary>
8877             Writes a <see cref="T:System.Double"/> value.
8878             </summary>
8879             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
8880         </member>
8881         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
8882             <summary>
8883             Writes a <see cref="T:System.Boolean"/> value.
8884             </summary>
8885             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
8886         </member>
8887         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
8888             <summary>
8889             Writes a <see cref="T:System.Int16"/> value.
8890             </summary>
8891             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
8892         </member>
8893         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
8894             <summary>
8895             Writes a <see cref="T:System.UInt16"/> value.
8896             </summary>
8897             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
8898         </member>
8899         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
8900             <summary>
8901             Writes a <see cref="T:System.Char"/> value.
8902             </summary>
8903             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
8904         </member>
8905         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
8906             <summary>
8907             Writes a <see cref="T:System.Byte"/> value.
8908             </summary>
8909             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
8910         </member>
8911         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
8912             <summary>
8913             Writes a <see cref="T:System.SByte"/> value.
8914             </summary>
8915             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
8916         </member>
8917         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
8918             <summary>
8919             Writes a <see cref="T:System.Decimal"/> value.
8920             </summary>
8921             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
8922         </member>
8923         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
8924             <summary>
8925             Writes a <see cref="T:System.DateTime"/> value.
8926             </summary>
8927             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
8928         </member>
8929         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
8930             <summary>
8931             Writes a <see cref="T:System.DateTimeOffset"/> value.
8932             </summary>
8933             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
8934         </member>
8935         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
8936             <summary>
8937             Writes a <see cref="T:System.Guid"/> value.
8938             </summary>
8939             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
8940         </member>
8941         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
8942             <summary>
8943             Writes a <see cref="T:System.TimeSpan"/> value.
8944             </summary>
8945             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
8946         </member>
8947         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
8948             <summary>
8949             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
8950             </summary>
8951             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
8952         </member>
8953         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
8954             <summary>
8955             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
8956             </summary>
8957             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
8958         </member>
8959         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
8960             <summary>
8961             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
8962             </summary>
8963             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
8964         </member>
8965         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
8966             <summary>
8967             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
8968             </summary>
8969             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
8970         </member>
8971         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
8972             <summary>
8973             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
8974             </summary>
8975             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
8976         </member>
8977         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
8978             <summary>
8979             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
8980             </summary>
8981             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
8982         </member>
8983         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
8984             <summary>
8985             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
8986             </summary>
8987             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
8988         </member>
8989         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
8990             <summary>
8991             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
8992             </summary>
8993             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
8994         </member>
8995         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
8996             <summary>
8997             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
8998             </summary>
8999             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
9000         </member>
9001         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
9002             <summary>
9003             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
9004             </summary>
9005             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
9006         </member>
9007         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
9008             <summary>
9009             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
9010             </summary>
9011             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
9012         </member>
9013         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
9014             <summary>
9015             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
9016             </summary>
9017             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
9018         </member>
9019         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
9020             <summary>
9021             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
9022             </summary>
9023             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
9024         </member>
9025         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
9026             <summary>
9027             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
9028             </summary>
9029             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
9030         </member>
9031         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
9032             <summary>
9033             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
9034             </summary>
9035             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
9036         </member>
9037         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
9038             <summary>
9039             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
9040             </summary>
9041             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
9042         </member>
9043         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
9044             <summary>
9045             Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
9046             </summary>
9047             <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
9048         </member>
9049         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
9050             <summary>
9051             Writes a <see cref="T:System.Byte"/>[] value.
9052             </summary>
9053             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
9054         </member>
9055         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
9056             <summary>
9057             Writes a <see cref="T:System.Uri"/> value.
9058             </summary>
9059             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
9060         </member>
9061         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
9062             <summary>
9063             Writes a <see cref="T:System.Object"/> value.
9064             An error will raised if the value cannot be written as a single JSON token.
9065             </summary>
9066             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
9067         </member>
9068         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
9069             <summary>
9070             Writes a comment <c>/*...*/</c> containing the specified text.
9071             </summary>
9072             <param name="text">Text to place inside the comment.</param>
9073         </member>
9074         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
9075             <summary>
9076             Writes the given white space.
9077             </summary>
9078             <param name="ws">The string of white space characters.</param>
9079         </member>
9080         <member name="M:Newtonsoft.Json.JsonWriter.Dispose(System.Boolean)">
9081             <summary>
9082             Releases unmanaged and - optionally - managed resources.
9083             </summary>
9084             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
9085         </member>
9086         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
9087             <summary>
9088             Sets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9089             </summary>
9090             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
9091             <param name="value">The value being written.</param>
9092         </member>
9093         <member name="T:Newtonsoft.Json.WriteState">
9094             <summary>
9095             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9096             </summary>
9097         </member>
9098         <member name="F:Newtonsoft.Json.WriteState.Error">
9099             <summary>
9100             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
9101             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.
9102             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls result in an <see cref="T:System.InvalidOperationException"/> being thrown.
9103             </summary>
9104         </member>
9105         <member name="F:Newtonsoft.Json.WriteState.Closed">
9106             <summary>
9107             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
9108             </summary>
9109         </member>
9110         <member name="F:Newtonsoft.Json.WriteState.Object">
9111             <summary>
9112             An object is being written. 
9113             </summary>
9114         </member>
9115         <member name="F:Newtonsoft.Json.WriteState.Array">
9116             <summary>
9117             An array is being written.
9118             </summary>
9119         </member>
9120         <member name="F:Newtonsoft.Json.WriteState.Constructor">
9121             <summary>
9122             A constructor is being written.
9123             </summary>
9124         </member>
9125         <member name="F:Newtonsoft.Json.WriteState.Property">
9126             <summary>
9127             A property is being written.
9128             </summary>
9129         </member>
9130         <member name="F:Newtonsoft.Json.WriteState.Start">
9131             <summary>
9132             A <see cref="T:Newtonsoft.Json.JsonWriter"/> write method has not been called.
9133             </summary>
9134         </member>
9135     </members>
9136 </doc>