Add Newtonsoft.Json NuGet package
[StratumLibrary.git] / packages / Newtonsoft.Json.7.0.1 / lib / net35 / Newtonsoft.Json.xml
1 <?xml version="1.0"?>\r
2 <doc>\r
3     <assembly>\r
4         <name>Newtonsoft.Json</name>\r
5     </assembly>\r
6     <members>\r
7         <member name="T:Newtonsoft.Json.Bson.BsonReader">\r
8             <summary>\r
9             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
10             </summary>\r
11         </member>\r
12         <member name="T:Newtonsoft.Json.JsonReader">\r
13             <summary>\r
14             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
15             </summary>\r
16         </member>\r
17         <member name="M:Newtonsoft.Json.JsonReader.#ctor">\r
18             <summary>\r
19             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.\r
20             </summary>\r
21         </member>\r
22         <member name="M:Newtonsoft.Json.JsonReader.Read">\r
23             <summary>\r
24             Reads the next JSON token from the stream.\r
25             </summary>\r
26             <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r
27         </member>\r
28         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">\r
29             <summary>\r
30             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
31             </summary>\r
32             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
33         </member>\r
34         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">\r
35             <summary>\r
36             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
37             </summary>\r
38             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
39         </member>\r
40         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">\r
41             <summary>\r
42             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
43             </summary>\r
44             <returns>A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r
45         </member>\r
46         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">\r
47             <summary>\r
48             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
49             </summary>\r
50             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
51         </member>\r
52         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">\r
53             <summary>\r
54             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
55             </summary>\r
56             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
57         </member>\r
58         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">\r
59             <summary>\r
60             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
61             </summary>\r
62             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
63         </member>\r
64         <member name="M:Newtonsoft.Json.JsonReader.Skip">\r
65             <summary>\r
66             Skips the children of the current token.\r
67             </summary>\r
68         </member>\r
69         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">\r
70             <summary>\r
71             Sets the current token.\r
72             </summary>\r
73             <param name="newToken">The new token.</param>\r
74         </member>\r
75         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">\r
76             <summary>\r
77             Sets the current token and value.\r
78             </summary>\r
79             <param name="newToken">The new token.</param>\r
80             <param name="value">The value.</param>\r
81         </member>\r
82         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">\r
83             <summary>\r
84             Sets the state based on current token type.\r
85             </summary>\r
86         </member>\r
87         <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">\r
88             <summary>\r
89             Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r
90             </summary>\r
91         </member>\r
92         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">\r
93             <summary>\r
94             Releases unmanaged and - optionally - managed resources\r
95             </summary>\r
96             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r
97         </member>\r
98         <member name="M:Newtonsoft.Json.JsonReader.Close">\r
99             <summary>\r
100             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. \r
101             </summary>\r
102         </member>\r
103         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">\r
104             <summary>\r
105             Gets the current reader state.\r
106             </summary>\r
107             <value>The current reader state.</value>\r
108         </member>\r
109         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">\r
110             <summary>\r
111             Gets or sets a value indicating whether the underlying stream or\r
112             <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.\r
113             </summary>\r
114             <value>\r
115             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when\r
116             the reader is closed; otherwise false. The default is true.\r
117             </value>\r
118         </member>\r
119         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">\r
120             <summary>\r
121             Gets or sets a value indicating whether multiple pieces of JSON content can\r
122             be read from a continuous stream without erroring.\r
123             </summary>\r
124             <value>\r
125             true to support reading multiple pieces of JSON content; otherwise false. The default is false.\r
126             </value>\r
127         </member>\r
128         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">\r
129             <summary>\r
130             Gets the quotation mark character used to enclose the value of a string.\r
131             </summary>\r
132         </member>\r
133         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">\r
134             <summary>\r
135             Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.\r
136             </summary>\r
137         </member>\r
138         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">\r
139             <summary>\r
140             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
141             </summary>\r
142         </member>\r
143         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">\r
144             <summary>\r
145             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
146             </summary>\r
147         </member>\r
148         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">\r
149             <summary>\r
150             Get or set how custom date formatted strings are parsed when reading JSON.\r
151             </summary>\r
152         </member>\r
153         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">\r
154             <summary>\r
155             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
156             </summary>\r
157         </member>\r
158         <member name="P:Newtonsoft.Json.JsonReader.TokenType">\r
159             <summary>\r
160             Gets the type of the current JSON token. \r
161             </summary>\r
162         </member>\r
163         <member name="P:Newtonsoft.Json.JsonReader.Value">\r
164             <summary>\r
165             Gets the text value of the current JSON token.\r
166             </summary>\r
167         </member>\r
168         <member name="P:Newtonsoft.Json.JsonReader.ValueType">\r
169             <summary>\r
170             Gets The Common Language Runtime (CLR) type for the current JSON token.\r
171             </summary>\r
172         </member>\r
173         <member name="P:Newtonsoft.Json.JsonReader.Depth">\r
174             <summary>\r
175             Gets the depth of the current token in the JSON document.\r
176             </summary>\r
177             <value>The depth of the current token in the JSON document.</value>\r
178         </member>\r
179         <member name="P:Newtonsoft.Json.JsonReader.Path">\r
180             <summary>\r
181             Gets the path of the current JSON token. \r
182             </summary>\r
183         </member>\r
184         <member name="P:Newtonsoft.Json.JsonReader.Culture">\r
185             <summary>\r
186             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
187             </summary>\r
188         </member>\r
189         <member name="T:Newtonsoft.Json.JsonReader.State">\r
190             <summary>\r
191             Specifies the state of the reader.\r
192             </summary>\r
193         </member>\r
194         <member name="F:Newtonsoft.Json.JsonReader.State.Start">\r
195             <summary>\r
196             The Read method has not been called.\r
197             </summary>\r
198         </member>\r
199         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">\r
200             <summary>\r
201             The end of the file has been reached successfully.\r
202             </summary>\r
203         </member>\r
204         <member name="F:Newtonsoft.Json.JsonReader.State.Property">\r
205             <summary>\r
206             Reader is at a property.\r
207             </summary>\r
208         </member>\r
209         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">\r
210             <summary>\r
211             Reader is at the start of an object.\r
212             </summary>\r
213         </member>\r
214         <member name="F:Newtonsoft.Json.JsonReader.State.Object">\r
215             <summary>\r
216             Reader is in an object.\r
217             </summary>\r
218         </member>\r
219         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">\r
220             <summary>\r
221             Reader is at the start of an array.\r
222             </summary>\r
223         </member>\r
224         <member name="F:Newtonsoft.Json.JsonReader.State.Array">\r
225             <summary>\r
226             Reader is in an array.\r
227             </summary>\r
228         </member>\r
229         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">\r
230             <summary>\r
231             The Close method has been called.\r
232             </summary>\r
233         </member>\r
234         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">\r
235             <summary>\r
236             Reader has just read a value.\r
237             </summary>\r
238         </member>\r
239         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">\r
240             <summary>\r
241             Reader is at the start of a constructor.\r
242             </summary>\r
243         </member>\r
244         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">\r
245             <summary>\r
246             Reader in a constructor.\r
247             </summary>\r
248         </member>\r
249         <member name="F:Newtonsoft.Json.JsonReader.State.Error">\r
250             <summary>\r
251             An error occurred that prevents the read operation from continuing.\r
252             </summary>\r
253         </member>\r
254         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">\r
255             <summary>\r
256             The end of the file has been reached successfully.\r
257             </summary>\r
258         </member>\r
259         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">\r
260             <summary>\r
261             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
262             </summary>\r
263             <param name="stream">The stream.</param>\r
264         </member>\r
265         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">\r
266             <summary>\r
267             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
268             </summary>\r
269             <param name="reader">The reader.</param>\r
270         </member>\r
271         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">\r
272             <summary>\r
273             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
274             </summary>\r
275             <param name="stream">The stream.</param>\r
276             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>\r
277             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>\r
278         </member>\r
279         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">\r
280             <summary>\r
281             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
282             </summary>\r
283             <param name="reader">The reader.</param>\r
284             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>\r
285             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>\r
286         </member>\r
287         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">\r
288             <summary>\r
289             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
290             </summary>\r
291             <returns>\r
292             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r
293             </returns>\r
294         </member>\r
295         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">\r
296             <summary>\r
297             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
298             </summary>\r
299             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
300         </member>\r
301         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">\r
302             <summary>\r
303             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
304             </summary>\r
305             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
306         </member>\r
307         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">\r
308             <summary>\r
309             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
310             </summary>\r
311             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
312         </member>\r
313         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">\r
314             <summary>\r
315             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
316             </summary>\r
317             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
318         </member>\r
319         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">\r
320             <summary>\r
321             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
322             </summary>\r
323             <returns>\r
324             A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.\r
325             </returns>\r
326         </member>\r
327         <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">\r
328             <summary>\r
329             Reads the next JSON token from the stream.\r
330             </summary>\r
331             <returns>\r
332             true if the next token was read successfully; false if there are no more tokens to read.\r
333             </returns>\r
334         </member>\r
335         <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">\r
336             <summary>\r
337             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.\r
338             </summary>\r
339         </member>\r
340         <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">\r
341             <summary>\r
342             Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r
343             </summary>\r
344             <value>\r
345                 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r
346             </value>\r
347         </member>\r
348         <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">\r
349             <summary>\r
350             Gets or sets a value indicating whether the root object will be read as a JSON array.\r
351             </summary>\r
352             <value>\r
353                 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r
354             </value>\r
355         </member>\r
356         <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">\r
357             <summary>\r
358             Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.\r
359             </summary>\r
360             <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>\r
361         </member>\r
362         <member name="T:Newtonsoft.Json.Bson.BsonWriter">\r
363             <summary>\r
364             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
365             </summary>\r
366         </member>\r
367         <member name="T:Newtonsoft.Json.JsonWriter">\r
368             <summary>\r
369             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
370             </summary>\r
371         </member>\r
372         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">\r
373             <summary>\r
374             Creates an instance of the <c>JsonWriter</c> class. \r
375             </summary>\r
376         </member>\r
377         <member name="M:Newtonsoft.Json.JsonWriter.Flush">\r
378             <summary>\r
379             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
380             </summary>\r
381         </member>\r
382         <member name="M:Newtonsoft.Json.JsonWriter.Close">\r
383             <summary>\r
384             Closes this stream and the underlying stream.\r
385             </summary>\r
386         </member>\r
387         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">\r
388             <summary>\r
389             Writes the beginning of a JSON object.\r
390             </summary>\r
391         </member>\r
392         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">\r
393             <summary>\r
394             Writes the end of a JSON object.\r
395             </summary>\r
396         </member>\r
397         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">\r
398             <summary>\r
399             Writes the beginning of a JSON array.\r
400             </summary>\r
401         </member>\r
402         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">\r
403             <summary>\r
404             Writes the end of an array.\r
405             </summary>\r
406         </member>\r
407         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">\r
408             <summary>\r
409             Writes the start of a constructor with the given name.\r
410             </summary>\r
411             <param name="name">The name of the constructor.</param>\r
412         </member>\r
413         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">\r
414             <summary>\r
415             Writes the end constructor.\r
416             </summary>\r
417         </member>\r
418         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">\r
419             <summary>\r
420             Writes the property name of a name/value pair on a JSON object.\r
421             </summary>\r
422             <param name="name">The name of the property.</param>\r
423         </member>\r
424         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">\r
425             <summary>\r
426             Writes the property name of a name/value pair on a JSON object.\r
427             </summary>\r
428             <param name="name">The name of the property.</param>\r
429             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>\r
430         </member>\r
431         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">\r
432             <summary>\r
433             Writes the end of the current JSON object or array.\r
434             </summary>\r
435         </member>\r
436         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">\r
437             <summary>\r
438             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.\r
439             </summary>\r
440             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>\r
441         </member>\r
442         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">\r
443             <summary>\r
444             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.\r
445             </summary>\r
446             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>\r
447             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>\r
448         </member>\r
449         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">\r
450             <summary>\r
451             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.\r
452             </summary>\r
453             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>\r
454             <param name="value">\r
455             The value to write.\r
456             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"/>.\r
457             A null value can be passed to the method for token's that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.</param>\r
458         </member>\r
459         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">\r
460             <summary>\r
461             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.\r
462             </summary>\r
463             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>\r
464         </member>\r
465         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
466             <summary>\r
467             Writes the specified end token.\r
468             </summary>\r
469             <param name="token">The end token to write.</param>\r
470         </member>\r
471         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">\r
472             <summary>\r
473             Writes indent characters.\r
474             </summary>\r
475         </member>\r
476         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">\r
477             <summary>\r
478             Writes the JSON value delimiter.\r
479             </summary>\r
480         </member>\r
481         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">\r
482             <summary>\r
483             Writes an indent space.\r
484             </summary>\r
485         </member>\r
486         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">\r
487             <summary>\r
488             Writes a null value.\r
489             </summary>\r
490         </member>\r
491         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">\r
492             <summary>\r
493             Writes an undefined value.\r
494             </summary>\r
495         </member>\r
496         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">\r
497             <summary>\r
498             Writes raw JSON without changing the writer's state.\r
499             </summary>\r
500             <param name="json">The raw JSON to write.</param>\r
501         </member>\r
502         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">\r
503             <summary>\r
504             Writes raw JSON where a value is expected and updates the writer's state.\r
505             </summary>\r
506             <param name="json">The raw JSON to write.</param>\r
507         </member>\r
508         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">\r
509             <summary>\r
510             Writes a <see cref="T:System.String"/> value.\r
511             </summary>\r
512             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
513         </member>\r
514         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">\r
515             <summary>\r
516             Writes a <see cref="T:System.Int32"/> value.\r
517             </summary>\r
518             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
519         </member>\r
520         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">\r
521             <summary>\r
522             Writes a <see cref="T:System.UInt32"/> value.\r
523             </summary>\r
524             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
525         </member>\r
526         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">\r
527             <summary>\r
528             Writes a <see cref="T:System.Int64"/> value.\r
529             </summary>\r
530             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
531         </member>\r
532         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">\r
533             <summary>\r
534             Writes a <see cref="T:System.UInt64"/> value.\r
535             </summary>\r
536             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
537         </member>\r
538         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">\r
539             <summary>\r
540             Writes a <see cref="T:System.Single"/> value.\r
541             </summary>\r
542             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
543         </member>\r
544         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">\r
545             <summary>\r
546             Writes a <see cref="T:System.Double"/> value.\r
547             </summary>\r
548             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
549         </member>\r
550         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">\r
551             <summary>\r
552             Writes a <see cref="T:System.Boolean"/> value.\r
553             </summary>\r
554             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
555         </member>\r
556         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">\r
557             <summary>\r
558             Writes a <see cref="T:System.Int16"/> value.\r
559             </summary>\r
560             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
561         </member>\r
562         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">\r
563             <summary>\r
564             Writes a <see cref="T:System.UInt16"/> value.\r
565             </summary>\r
566             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
567         </member>\r
568         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">\r
569             <summary>\r
570             Writes a <see cref="T:System.Char"/> value.\r
571             </summary>\r
572             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
573         </member>\r
574         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">\r
575             <summary>\r
576             Writes a <see cref="T:System.Byte"/> value.\r
577             </summary>\r
578             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
579         </member>\r
580         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">\r
581             <summary>\r
582             Writes a <see cref="T:System.SByte"/> value.\r
583             </summary>\r
584             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
585         </member>\r
586         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">\r
587             <summary>\r
588             Writes a <see cref="T:System.Decimal"/> value.\r
589             </summary>\r
590             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
591         </member>\r
592         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">\r
593             <summary>\r
594             Writes a <see cref="T:System.DateTime"/> value.\r
595             </summary>\r
596             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
597         </member>\r
598         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">\r
599             <summary>\r
600             Writes a <see cref="T:System.DateTimeOffset"/> value.\r
601             </summary>\r
602             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>\r
603         </member>\r
604         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">\r
605             <summary>\r
606             Writes a <see cref="T:System.Guid"/> value.\r
607             </summary>\r
608             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
609         </member>\r
610         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">\r
611             <summary>\r
612             Writes a <see cref="T:System.TimeSpan"/> value.\r
613             </summary>\r
614             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
615         </member>\r
616         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">\r
617             <summary>\r
618             Writes a <see cref="T:System.Nullable`1"/> value.\r
619             </summary>\r
620             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
621         </member>\r
622         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">\r
623             <summary>\r
624             Writes a <see cref="T:System.Nullable`1"/> value.\r
625             </summary>\r
626             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
627         </member>\r
628         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">\r
629             <summary>\r
630             Writes a <see cref="T:System.Nullable`1"/> value.\r
631             </summary>\r
632             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
633         </member>\r
634         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">\r
635             <summary>\r
636             Writes a <see cref="T:System.Nullable`1"/> value.\r
637             </summary>\r
638             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
639         </member>\r
640         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">\r
641             <summary>\r
642             Writes a <see cref="T:System.Nullable`1"/> value.\r
643             </summary>\r
644             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
645         </member>\r
646         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">\r
647             <summary>\r
648             Writes a <see cref="T:System.Nullable`1"/> value.\r
649             </summary>\r
650             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
651         </member>\r
652         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">\r
653             <summary>\r
654             Writes a <see cref="T:System.Nullable`1"/> value.\r
655             </summary>\r
656             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
657         </member>\r
658         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">\r
659             <summary>\r
660             Writes a <see cref="T:System.Nullable`1"/> value.\r
661             </summary>\r
662             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
663         </member>\r
664         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">\r
665             <summary>\r
666             Writes a <see cref="T:System.Nullable`1"/> value.\r
667             </summary>\r
668             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
669         </member>\r
670         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">\r
671             <summary>\r
672             Writes a <see cref="T:System.Nullable`1"/> value.\r
673             </summary>\r
674             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
675         </member>\r
676         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">\r
677             <summary>\r
678             Writes a <see cref="T:System.Nullable`1"/> value.\r
679             </summary>\r
680             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
681         </member>\r
682         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">\r
683             <summary>\r
684             Writes a <see cref="T:System.Nullable`1"/> value.\r
685             </summary>\r
686             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
687         </member>\r
688         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">\r
689             <summary>\r
690             Writes a <see cref="T:System.Nullable`1"/> value.\r
691             </summary>\r
692             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
693         </member>\r
694         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">\r
695             <summary>\r
696             Writes a <see cref="T:System.Nullable`1"/> value.\r
697             </summary>\r
698             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
699         </member>\r
700         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">\r
701             <summary>\r
702             Writes a <see cref="T:System.Nullable`1"/> value.\r
703             </summary>\r
704             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
705         </member>\r
706         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">\r
707             <summary>\r
708             Writes a <see cref="T:System.Nullable`1"/> value.\r
709             </summary>\r
710             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
711         </member>\r
712         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">\r
713             <summary>\r
714             Writes a <see cref="T:System.Nullable`1"/> value.\r
715             </summary>\r
716             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
717         </member>\r
718         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">\r
719             <summary>\r
720             Writes a <see cref="T:System.Byte"/>[] value.\r
721             </summary>\r
722             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
723         </member>\r
724         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">\r
725             <summary>\r
726             Writes a <see cref="T:System.Uri"/> value.\r
727             </summary>\r
728             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
729         </member>\r
730         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">\r
731             <summary>\r
732             Writes a <see cref="T:System.Object"/> value.\r
733             An error will raised if the value cannot be written as a single JSON token.\r
734             </summary>\r
735             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
736         </member>\r
737         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">\r
738             <summary>\r
739             Writes out a comment <code>/*...*/</code> containing the specified text. \r
740             </summary>\r
741             <param name="text">Text to place inside the comment.</param>\r
742         </member>\r
743         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">\r
744             <summary>\r
745             Writes out the given white space.\r
746             </summary>\r
747             <param name="ws">The string of white space characters.</param>\r
748         </member>\r
749         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">\r
750             <summary>\r
751             Sets the state of the JsonWriter,\r
752             </summary>\r
753             <param name="token">The JsonToken being written.</param>\r
754             <param name="value">The value being written.</param>\r
755         </member>\r
756         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">\r
757             <summary>\r
758             Gets or sets a value indicating whether the underlying stream or\r
759             <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.\r
760             </summary>\r
761             <value>\r
762             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when\r
763             the writer is closed; otherwise false. The default is true.\r
764             </value>\r
765         </member>\r
766         <member name="P:Newtonsoft.Json.JsonWriter.Top">\r
767             <summary>\r
768             Gets the top.\r
769             </summary>\r
770             <value>The top.</value>\r
771         </member>\r
772         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">\r
773             <summary>\r
774             Gets the state of the writer.\r
775             </summary>\r
776         </member>\r
777         <member name="P:Newtonsoft.Json.JsonWriter.Path">\r
778             <summary>\r
779             Gets the path of the writer. \r
780             </summary>\r
781         </member>\r
782         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">\r
783             <summary>\r
784             Indicates how JSON text output is formatted.\r
785             </summary>\r
786         </member>\r
787         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">\r
788             <summary>\r
789             Get or set how dates are written to JSON text.\r
790             </summary>\r
791         </member>\r
792         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">\r
793             <summary>\r
794             Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.\r
795             </summary>\r
796         </member>\r
797         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">\r
798             <summary>\r
799             Get or set how strings are escaped when writing JSON text.\r
800             </summary>\r
801         </member>\r
802         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">\r
803             <summary>\r
804             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
805             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
806             are written to JSON text.\r
807             </summary>\r
808         </member>\r
809         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">\r
810             <summary>\r
811             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.\r
812             </summary>\r
813         </member>\r
814         <member name="P:Newtonsoft.Json.JsonWriter.Culture">\r
815             <summary>\r
816             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
817             </summary>\r
818         </member>\r
819         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">\r
820             <summary>\r
821             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.\r
822             </summary>\r
823             <param name="stream">The stream.</param>\r
824         </member>\r
825         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">\r
826             <summary>\r
827             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.\r
828             </summary>\r
829             <param name="writer">The writer.</param>\r
830         </member>\r
831         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">\r
832             <summary>\r
833             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
834             </summary>\r
835         </member>\r
836         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
837             <summary>\r
838             Writes the end.\r
839             </summary>\r
840             <param name="token">The token.</param>\r
841         </member>\r
842         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">\r
843             <summary>\r
844             Writes out a comment <code>/*...*/</code> containing the specified text.\r
845             </summary>\r
846             <param name="text">Text to place inside the comment.</param>\r
847         </member>\r
848         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">\r
849             <summary>\r
850             Writes the start of a constructor with the given name.\r
851             </summary>\r
852             <param name="name">The name of the constructor.</param>\r
853         </member>\r
854         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">\r
855             <summary>\r
856             Writes raw JSON.\r
857             </summary>\r
858             <param name="json">The raw JSON to write.</param>\r
859         </member>\r
860         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">\r
861             <summary>\r
862             Writes raw JSON where a value is expected and updates the writer's state.\r
863             </summary>\r
864             <param name="json">The raw JSON to write.</param>\r
865         </member>\r
866         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">\r
867             <summary>\r
868             Writes the beginning of a JSON array.\r
869             </summary>\r
870         </member>\r
871         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">\r
872             <summary>\r
873             Writes the beginning of a JSON object.\r
874             </summary>\r
875         </member>\r
876         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">\r
877             <summary>\r
878             Writes the property name of a name/value pair on a JSON object.\r
879             </summary>\r
880             <param name="name">The name of the property.</param>\r
881         </member>\r
882         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">\r
883             <summary>\r
884             Closes this stream and the underlying stream.\r
885             </summary>\r
886         </member>\r
887         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">\r
888             <summary>\r
889             Writes a <see cref="T:System.Object"/> value.\r
890             An error will raised if the value cannot be written as a single JSON token.\r
891             </summary>\r
892             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
893         </member>\r
894         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">\r
895             <summary>\r
896             Writes a null value.\r
897             </summary>\r
898         </member>\r
899         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">\r
900             <summary>\r
901             Writes an undefined value.\r
902             </summary>\r
903         </member>\r
904         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">\r
905             <summary>\r
906             Writes a <see cref="T:System.String"/> value.\r
907             </summary>\r
908             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
909         </member>\r
910         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">\r
911             <summary>\r
912             Writes a <see cref="T:System.Int32"/> value.\r
913             </summary>\r
914             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
915         </member>\r
916         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">\r
917             <summary>\r
918             Writes a <see cref="T:System.UInt32"/> value.\r
919             </summary>\r
920             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
921         </member>\r
922         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">\r
923             <summary>\r
924             Writes a <see cref="T:System.Int64"/> value.\r
925             </summary>\r
926             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
927         </member>\r
928         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">\r
929             <summary>\r
930             Writes a <see cref="T:System.UInt64"/> value.\r
931             </summary>\r
932             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
933         </member>\r
934         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">\r
935             <summary>\r
936             Writes a <see cref="T:System.Single"/> value.\r
937             </summary>\r
938             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
939         </member>\r
940         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">\r
941             <summary>\r
942             Writes a <see cref="T:System.Double"/> value.\r
943             </summary>\r
944             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
945         </member>\r
946         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">\r
947             <summary>\r
948             Writes a <see cref="T:System.Boolean"/> value.\r
949             </summary>\r
950             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
951         </member>\r
952         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">\r
953             <summary>\r
954             Writes a <see cref="T:System.Int16"/> value.\r
955             </summary>\r
956             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
957         </member>\r
958         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">\r
959             <summary>\r
960             Writes a <see cref="T:System.UInt16"/> value.\r
961             </summary>\r
962             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
963         </member>\r
964         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">\r
965             <summary>\r
966             Writes a <see cref="T:System.Char"/> value.\r
967             </summary>\r
968             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
969         </member>\r
970         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">\r
971             <summary>\r
972             Writes a <see cref="T:System.Byte"/> value.\r
973             </summary>\r
974             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
975         </member>\r
976         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">\r
977             <summary>\r
978             Writes a <see cref="T:System.SByte"/> value.\r
979             </summary>\r
980             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
981         </member>\r
982         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">\r
983             <summary>\r
984             Writes a <see cref="T:System.Decimal"/> value.\r
985             </summary>\r
986             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
987         </member>\r
988         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">\r
989             <summary>\r
990             Writes a <see cref="T:System.DateTime"/> value.\r
991             </summary>\r
992             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
993         </member>\r
994         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">\r
995             <summary>\r
996             Writes a <see cref="T:System.DateTimeOffset"/> value.\r
997             </summary>\r
998             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>\r
999         </member>\r
1000         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">\r
1001             <summary>\r
1002             Writes a <see cref="T:System.Byte"/>[] value.\r
1003             </summary>\r
1004             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
1005         </member>\r
1006         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">\r
1007             <summary>\r
1008             Writes a <see cref="T:System.Guid"/> value.\r
1009             </summary>\r
1010             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
1011         </member>\r
1012         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">\r
1013             <summary>\r
1014             Writes a <see cref="T:System.TimeSpan"/> value.\r
1015             </summary>\r
1016             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
1017         </member>\r
1018         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">\r
1019             <summary>\r
1020             Writes a <see cref="T:System.Uri"/> value.\r
1021             </summary>\r
1022             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
1023         </member>\r
1024         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">\r
1025             <summary>\r
1026             Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.\r
1027             </summary>\r
1028             <param name="value">The Object ID value to write.</param>\r
1029         </member>\r
1030         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">\r
1031             <summary>\r
1032             Writes a BSON regex.\r
1033             </summary>\r
1034             <param name="pattern">The regex pattern.</param>\r
1035             <param name="options">The regex options.</param>\r
1036         </member>\r
1037         <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">\r
1038             <summary>\r
1039             Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.\r
1040             When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.\r
1041             </summary>\r
1042             <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>\r
1043         </member>\r
1044         <member name="T:Newtonsoft.Json.Bson.BsonObjectId">\r
1045             <summary>\r
1046             Represents a BSON Oid (object id).\r
1047             </summary>\r
1048         </member>\r
1049         <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">\r
1050             <summary>\r
1051             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.\r
1052             </summary>\r
1053             <param name="value">The Oid value.</param>\r
1054         </member>\r
1055         <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">\r
1056             <summary>\r
1057             Gets or sets the value of the Oid.\r
1058             </summary>\r
1059             <value>The value of the Oid.</value>\r
1060         </member>\r
1061         <member name="T:Newtonsoft.Json.Converters.BinaryConverter">\r
1062             <summary>\r
1063             Converts a binary value to and from a base 64 string value.\r
1064             </summary>\r
1065         </member>\r
1066         <member name="T:Newtonsoft.Json.JsonConverter">\r
1067             <summary>\r
1068             Converts an object to and from JSON.\r
1069             </summary>\r
1070         </member>\r
1071         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1072             <summary>\r
1073             Writes the JSON representation of the object.\r
1074             </summary>\r
1075             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1076             <param name="value">The value.</param>\r
1077             <param name="serializer">The calling serializer.</param>\r
1078         </member>\r
1079         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1080             <summary>\r
1081             Reads the JSON representation of the object.\r
1082             </summary>\r
1083             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1084             <param name="objectType">Type of the object.</param>\r
1085             <param name="existingValue">The existing value of object being read.</param>\r
1086             <param name="serializer">The calling serializer.</param>\r
1087             <returns>The object value.</returns>\r
1088         </member>\r
1089         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">\r
1090             <summary>\r
1091             Determines whether this instance can convert the specified object type.\r
1092             </summary>\r
1093             <param name="objectType">Type of the object.</param>\r
1094             <returns>\r
1095                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1096             </returns>\r
1097         </member>\r
1098         <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">\r
1099             <summary>\r
1100             <para>\r
1101             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.\r
1102             </para>\r
1103             <note type="caution">\r
1104             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.\r
1105             </note>\r
1106             </summary>\r
1107             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>\r
1108         </member>\r
1109         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">\r
1110             <summary>\r
1111             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.\r
1112             </summary>\r
1113             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>\r
1114         </member>\r
1115         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">\r
1116             <summary>\r
1117             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.\r
1118             </summary>\r
1119             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>\r
1120         </member>\r
1121         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1122             <summary>\r
1123             Writes the JSON representation of the object.\r
1124             </summary>\r
1125             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1126             <param name="value">The value.</param>\r
1127             <param name="serializer">The calling serializer.</param>\r
1128         </member>\r
1129         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1130             <summary>\r
1131             Reads the JSON representation of the object.\r
1132             </summary>\r
1133             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1134             <param name="objectType">Type of the object.</param>\r
1135             <param name="existingValue">The existing value of object being read.</param>\r
1136             <param name="serializer">The calling serializer.</param>\r
1137             <returns>The object value.</returns>\r
1138         </member>\r
1139         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">\r
1140             <summary>\r
1141             Determines whether this instance can convert the specified object type.\r
1142             </summary>\r
1143             <param name="objectType">Type of the object.</param>\r
1144             <returns>\r
1145                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1146             </returns>\r
1147         </member>\r
1148         <member name="T:Newtonsoft.Json.Converters.DataSetConverter">\r
1149             <summary>\r
1150             Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.\r
1151             </summary>\r
1152         </member>\r
1153         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1154             <summary>\r
1155             Writes the JSON representation of the object.\r
1156             </summary>\r
1157             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1158             <param name="value">The value.</param>\r
1159             <param name="serializer">The calling serializer.</param>\r
1160         </member>\r
1161         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1162             <summary>\r
1163             Reads the JSON representation of the object.\r
1164             </summary>\r
1165             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1166             <param name="objectType">Type of the object.</param>\r
1167             <param name="existingValue">The existing value of object being read.</param>\r
1168             <param name="serializer">The calling serializer.</param>\r
1169             <returns>The object value.</returns>\r
1170         </member>\r
1171         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">\r
1172             <summary>\r
1173             Determines whether this instance can convert the specified value type.\r
1174             </summary>\r
1175             <param name="valueType">Type of the value.</param>\r
1176             <returns>\r
1177                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
1178             </returns>\r
1179         </member>\r
1180         <member name="T:Newtonsoft.Json.Converters.DataTableConverter">\r
1181             <summary>\r
1182             Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.\r
1183             </summary>\r
1184         </member>\r
1185         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1186             <summary>\r
1187             Writes the JSON representation of the object.\r
1188             </summary>\r
1189             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1190             <param name="value">The value.</param>\r
1191             <param name="serializer">The calling serializer.</param>\r
1192         </member>\r
1193         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1194             <summary>\r
1195             Reads the JSON representation of the object.\r
1196             </summary>\r
1197             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1198             <param name="objectType">Type of the object.</param>\r
1199             <param name="existingValue">The existing value of object being read.</param>\r
1200             <param name="serializer">The calling serializer.</param>\r
1201             <returns>The object value.</returns>\r
1202         </member>\r
1203         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">\r
1204             <summary>\r
1205             Determines whether this instance can convert the specified value type.\r
1206             </summary>\r
1207             <param name="valueType">Type of the value.</param>\r
1208             <returns>\r
1209                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
1210             </returns>\r
1211         </member>\r
1212         <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">\r
1213             <summary>\r
1214             Create a custom object\r
1215             </summary>\r
1216             <typeparam name="T">The object type to convert.</typeparam>\r
1217         </member>\r
1218         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1219             <summary>\r
1220             Writes the JSON representation of the object.\r
1221             </summary>\r
1222             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1223             <param name="value">The value.</param>\r
1224             <param name="serializer">The calling serializer.</param>\r
1225         </member>\r
1226         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1227             <summary>\r
1228             Reads the JSON representation of the object.\r
1229             </summary>\r
1230             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1231             <param name="objectType">Type of the object.</param>\r
1232             <param name="existingValue">The existing value of object being read.</param>\r
1233             <param name="serializer">The calling serializer.</param>\r
1234             <returns>The object value.</returns>\r
1235         </member>\r
1236         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">\r
1237             <summary>\r
1238             Creates an object which will then be populated by the serializer.\r
1239             </summary>\r
1240             <param name="objectType">Type of the object.</param>\r
1241             <returns>The created object.</returns>\r
1242         </member>\r
1243         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">\r
1244             <summary>\r
1245             Determines whether this instance can convert the specified object type.\r
1246             </summary>\r
1247             <param name="objectType">Type of the object.</param>\r
1248             <returns>\r
1249                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1250             </returns>\r
1251         </member>\r
1252         <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">\r
1253             <summary>\r
1254             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.\r
1255             </summary>\r
1256             <value>\r
1257                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.\r
1258             </value>\r
1259         </member>\r
1260         <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">\r
1261             <summary>\r
1262             Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.\r
1263             </summary>\r
1264         </member>\r
1265         <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">\r
1266             <summary>\r
1267             Determines whether this instance can convert the specified object type.\r
1268             </summary>\r
1269             <param name="objectType">Type of the object.</param>\r
1270             <returns>\r
1271                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1272             </returns>\r
1273         </member>\r
1274         <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">\r
1275             <summary>\r
1276             Converts an Entity Framework EntityKey to and from JSON.\r
1277             </summary>\r
1278         </member>\r
1279         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1280             <summary>\r
1281             Writes the JSON representation of the object.\r
1282             </summary>\r
1283             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1284             <param name="value">The value.</param>\r
1285             <param name="serializer">The calling serializer.</param>\r
1286         </member>\r
1287         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1288             <summary>\r
1289             Reads the JSON representation of the object.\r
1290             </summary>\r
1291             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1292             <param name="objectType">Type of the object.</param>\r
1293             <param name="existingValue">The existing value of object being read.</param>\r
1294             <param name="serializer">The calling serializer.</param>\r
1295             <returns>The object value.</returns>\r
1296         </member>\r
1297         <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">\r
1298             <summary>\r
1299             Determines whether this instance can convert the specified object type.\r
1300             </summary>\r
1301             <param name="objectType">Type of the object.</param>\r
1302             <returns>\r
1303                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1304             </returns>\r
1305         </member>\r
1306         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">\r
1307             <summary>\r
1308             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.\r
1309             </summary>\r
1310         </member>\r
1311         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1312             <summary>\r
1313             Writes the JSON representation of the object.\r
1314             </summary>\r
1315             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1316             <param name="value">The value.</param>\r
1317             <param name="serializer">The calling serializer.</param>\r
1318         </member>\r
1319         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1320             <summary>\r
1321             Reads the JSON representation of the object.\r
1322             </summary>\r
1323             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1324             <param name="objectType">Type of the object.</param>\r
1325             <param name="existingValue">The existing value of object being read.</param>\r
1326             <param name="serializer">The calling serializer.</param>\r
1327             <returns>The object value.</returns>\r
1328         </member>\r
1329         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">\r
1330             <summary>\r
1331             Determines whether this instance can convert the specified object type.\r
1332             </summary>\r
1333             <param name="objectType">Type of the object.</param>\r
1334             <returns>\r
1335                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1336             </returns>\r
1337         </member>\r
1338         <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">\r
1339             <summary>\r
1340             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.\r
1341             </summary>\r
1342         </member>\r
1343         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1344             <summary>\r
1345             Writes the JSON representation of the object.\r
1346             </summary>\r
1347             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1348             <param name="value">The value.</param>\r
1349             <param name="serializer">The calling serializer.</param>\r
1350         </member>\r
1351         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1352             <summary>\r
1353             Reads the JSON representation of the object.\r
1354             </summary>\r
1355             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1356             <param name="objectType">Type of the object.</param>\r
1357             <param name="existingValue">The existing value of object being read.</param>\r
1358             <param name="serializer">The calling serializer.</param>\r
1359             <returns>The object value.</returns>\r
1360         </member>\r
1361         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">\r
1362             <summary>\r
1363             Determines whether this instance can convert the specified object type.\r
1364             </summary>\r
1365             <param name="objectType">Type of the object.</param>\r
1366             <returns>\r
1367                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1368             </returns>\r
1369         </member>\r
1370         <member name="T:Newtonsoft.Json.Converters.RegexConverter">\r
1371             <summary>\r
1372             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.\r
1373             </summary>\r
1374         </member>\r
1375         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1376             <summary>\r
1377             Writes the JSON representation of the object.\r
1378             </summary>\r
1379             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1380             <param name="value">The value.</param>\r
1381             <param name="serializer">The calling serializer.</param>\r
1382         </member>\r
1383         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1384             <summary>\r
1385             Reads the JSON representation of the object.\r
1386             </summary>\r
1387             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1388             <param name="objectType">Type of the object.</param>\r
1389             <param name="existingValue">The existing value of object being read.</param>\r
1390             <param name="serializer">The calling serializer.</param>\r
1391             <returns>The object value.</returns>\r
1392         </member>\r
1393         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">\r
1394             <summary>\r
1395             Determines whether this instance can convert the specified object type.\r
1396             </summary>\r
1397             <param name="objectType">Type of the object.</param>\r
1398             <returns>\r
1399                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1400             </returns>\r
1401         </member>\r
1402         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">\r
1403             <summary>\r
1404             Converts an <see cref="T:System.Enum"/> to and from its name string value.\r
1405             </summary>\r
1406         </member>\r
1407         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">\r
1408             <summary>\r
1409             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.\r
1410             </summary>\r
1411         </member>\r
1412         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1413             <summary>\r
1414             Writes the JSON representation of the object.\r
1415             </summary>\r
1416             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1417             <param name="value">The value.</param>\r
1418             <param name="serializer">The calling serializer.</param>\r
1419         </member>\r
1420         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1421             <summary>\r
1422             Reads the JSON representation of the object.\r
1423             </summary>\r
1424             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1425             <param name="objectType">Type of the object.</param>\r
1426             <param name="existingValue">The existing value of object being read.</param>\r
1427             <param name="serializer">The calling serializer.</param>\r
1428             <returns>The object value.</returns>\r
1429         </member>\r
1430         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">\r
1431             <summary>\r
1432             Determines whether this instance can convert the specified object type.\r
1433             </summary>\r
1434             <param name="objectType">Type of the object.</param>\r
1435             <returns>\r
1436             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1437             </returns>\r
1438         </member>\r
1439         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">\r
1440             <summary>\r
1441             Gets or sets a value indicating whether the written enum text should be camel case.\r
1442             </summary>\r
1443             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r
1444         </member>\r
1445         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">\r
1446             <summary>\r
1447             Gets or sets a value indicating whether integer values are allowed.\r
1448             </summary>\r
1449             <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>\r
1450         </member>\r
1451         <member name="T:Newtonsoft.Json.ConstructorHandling">\r
1452             <summary>\r
1453             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1454             </summary>\r
1455         </member>\r
1456         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">\r
1457             <summary>\r
1458             First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r
1459             </summary>\r
1460         </member>\r
1461         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">\r
1462             <summary>\r
1463             Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r
1464             </summary>\r
1465         </member>\r
1466         <member name="T:Newtonsoft.Json.Converters.VersionConverter">\r
1467             <summary>\r
1468             Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").\r
1469             </summary>\r
1470         </member>\r
1471         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1472             <summary>\r
1473             Writes the JSON representation of the object.\r
1474             </summary>\r
1475             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1476             <param name="value">The value.</param>\r
1477             <param name="serializer">The calling serializer.</param>\r
1478         </member>\r
1479         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1480             <summary>\r
1481             Reads the JSON representation of the object.\r
1482             </summary>\r
1483             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1484             <param name="objectType">Type of the object.</param>\r
1485             <param name="existingValue">The existing property value of the JSON that is being converted.</param>\r
1486             <param name="serializer">The calling serializer.</param>\r
1487             <returns>The object value.</returns>\r
1488         </member>\r
1489         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">\r
1490             <summary>\r
1491             Determines whether this instance can convert the specified object type.\r
1492             </summary>\r
1493             <param name="objectType">Type of the object.</param>\r
1494             <returns>\r
1495                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1496             </returns>\r
1497         </member>\r
1498         <member name="T:Newtonsoft.Json.DateFormatHandling">\r
1499             <summary>\r
1500             Specifies how dates are formatted when writing JSON text.\r
1501             </summary>\r
1502         </member>\r
1503         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">\r
1504             <summary>\r
1505             Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".\r
1506             </summary>\r
1507         </member>\r
1508         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">\r
1509             <summary>\r
1510             Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".\r
1511             </summary>\r
1512         </member>\r
1513         <member name="T:Newtonsoft.Json.DateParseHandling">\r
1514             <summary>\r
1515             Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.\r
1516             </summary>\r
1517         </member>\r
1518         <member name="F:Newtonsoft.Json.DateParseHandling.None">\r
1519             <summary>\r
1520             Date formatted strings are not parsed to a date type and are read as strings.\r
1521             </summary>\r
1522         </member>\r
1523         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">\r
1524             <summary>\r
1525             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.\r
1526             </summary>\r
1527         </member>\r
1528         <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">\r
1529             <summary>\r
1530             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.\r
1531             </summary>\r
1532         </member>\r
1533         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">\r
1534             <summary>\r
1535             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.\r
1536             </summary>\r
1537         </member>\r
1538         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">\r
1539             <summary>\r
1540             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.\r
1541             </summary>\r
1542         </member>\r
1543         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">\r
1544             <summary>\r
1545             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.\r
1546             </summary>\r
1547         </member>\r
1548         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">\r
1549             <summary>\r
1550             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.\r
1551             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.\r
1552             </summary>\r
1553         </member>\r
1554         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">\r
1555             <summary>\r
1556             Time zone information should be preserved when converting.\r
1557             </summary>\r
1558         </member>\r
1559         <member name="T:Newtonsoft.Json.FloatFormatHandling">\r
1560             <summary>\r
1561             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
1562             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
1563             </summary>\r
1564         </member>\r
1565         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">\r
1566             <summary>\r
1567             Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".\r
1568             </summary>\r
1569         </member>\r
1570         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">\r
1571             <summary>\r
1572             Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.\r
1573             Note that this will produce non-valid JSON.\r
1574             </summary>\r
1575         </member>\r
1576         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">\r
1577             <summary>\r
1578             Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property.\r
1579             </summary>\r
1580         </member>\r
1581         <member name="T:Newtonsoft.Json.FloatParseHandling">\r
1582             <summary>\r
1583             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
1584             </summary>\r
1585         </member>\r
1586         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">\r
1587             <summary>\r
1588             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.\r
1589             </summary>\r
1590         </member>\r
1591         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">\r
1592             <summary>\r
1593             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.\r
1594             </summary>\r
1595         </member>\r
1596         <member name="T:Newtonsoft.Json.Formatting">\r
1597             <summary>\r
1598             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.\r
1599             </summary>\r
1600         </member>\r
1601         <member name="F:Newtonsoft.Json.Formatting.None">\r
1602             <summary>\r
1603             No special formatting is applied. This is the default.\r
1604             </summary>\r
1605         </member>\r
1606         <member name="F:Newtonsoft.Json.Formatting.Indented">\r
1607             <summary>\r
1608             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.\r
1609             </summary>\r
1610         </member>\r
1611         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">\r
1612             <summary>\r
1613             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.\r
1614             </summary>\r
1615         </member>\r
1616         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">\r
1617             <summary>\r
1618             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.\r
1619             </summary>\r
1620         </member>\r
1621         <member name="T:Newtonsoft.Json.JsonContainerAttribute">\r
1622             <summary>\r
1623             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.\r
1624             </summary>\r
1625         </member>\r
1626         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">\r
1627             <summary>\r
1628             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.\r
1629             </summary>\r
1630         </member>\r
1631         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">\r
1632             <summary>\r
1633             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.\r
1634             </summary>\r
1635             <param name="id">The container Id.</param>\r
1636         </member>\r
1637         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">\r
1638             <summary>\r
1639             Gets or sets the id.\r
1640             </summary>\r
1641             <value>The id.</value>\r
1642         </member>\r
1643         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">\r
1644             <summary>\r
1645             Gets or sets the title.\r
1646             </summary>\r
1647             <value>The title.</value>\r
1648         </member>\r
1649         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">\r
1650             <summary>\r
1651             Gets or sets the description.\r
1652             </summary>\r
1653             <value>The description.</value>\r
1654         </member>\r
1655         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">\r
1656             <summary>\r
1657             Gets the collection's items converter.\r
1658             </summary>\r
1659             <value>The collection's items converter.</value>\r
1660         </member>\r
1661         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">\r
1662             <summary>\r
1663             The parameter list to use when constructing the JsonConverter described by ItemConverterType.\r
1664             If null, the default constructor is used.\r
1665             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,\r
1666             order, and type of these parameters.\r
1667             </summary>\r
1668             <example>\r
1669             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]\r
1670             </example>\r
1671         </member>\r
1672         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">\r
1673             <summary>\r
1674             Gets or sets a value that indicates whether to preserve object references.\r
1675             </summary>\r
1676             <value>\r
1677                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r
1678             </value>\r
1679         </member>\r
1680         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">\r
1681             <summary>\r
1682             Gets or sets a value that indicates whether to preserve collection's items references.\r
1683             </summary>\r
1684             <value>\r
1685                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r
1686             </value>\r
1687         </member>\r
1688         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">\r
1689             <summary>\r
1690             Gets or sets the reference loop handling used when serializing the collection's items.\r
1691             </summary>\r
1692             <value>The reference loop handling.</value>\r
1693         </member>\r
1694         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">\r
1695             <summary>\r
1696             Gets or sets the type name handling used when serializing the collection's items.\r
1697             </summary>\r
1698             <value>The type name handling.</value>\r
1699         </member>\r
1700         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">\r
1701             <summary>\r
1702             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.\r
1703             </summary>\r
1704         </member>\r
1705         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">\r
1706             <summary>\r
1707             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.\r
1708             </summary>\r
1709             <param name="id">The container Id.</param>\r
1710         </member>\r
1711         <member name="T:Newtonsoft.Json.JsonException">\r
1712             <summary>\r
1713             The exception thrown when an error occurs during JSON serialization or deserialization.\r
1714             </summary>\r
1715         </member>\r
1716         <member name="M:Newtonsoft.Json.JsonException.#ctor">\r
1717             <summary>\r
1718             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.\r
1719             </summary>\r
1720         </member>\r
1721         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">\r
1722             <summary>\r
1723             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class\r
1724             with a specified error message.\r
1725             </summary>\r
1726             <param name="message">The error message that explains the reason for the exception.</param>\r
1727         </member>\r
1728         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">\r
1729             <summary>\r
1730             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class\r
1731             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
1732             </summary>\r
1733             <param name="message">The error message that explains the reason for the exception.</param>\r
1734             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r
1735         </member>\r
1736         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
1737             <summary>\r
1738             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.\r
1739             </summary>\r
1740             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
1741             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
1742             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
1743             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
1744         </member>\r
1745         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">\r
1746             <summary>\r
1747             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection\r
1748             and write values during serialization.\r
1749             </summary>\r
1750         </member>\r
1751         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">\r
1752             <summary>\r
1753             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.\r
1754             </summary>\r
1755         </member>\r
1756         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">\r
1757             <summary>\r
1758             Gets or sets a value that indicates whether to write extension data when serializing the object.\r
1759             </summary>\r
1760             <value>\r
1761                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.\r
1762             </value>\r
1763         </member>\r
1764         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">\r
1765             <summary>\r
1766             Gets or sets a value that indicates whether to read extension data when deserializing the object.\r
1767             </summary>\r
1768             <value>\r
1769                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.\r
1770             </value>\r
1771         </member>\r
1772         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">\r
1773             <summary>\r
1774             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.\r
1775             </summary>\r
1776         </member>\r
1777         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">\r
1778             <summary>\r
1779             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.\r
1780             </summary>\r
1781         </member>\r
1782         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">\r
1783             <summary>\r
1784             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.\r
1785             </summary>\r
1786             <param name="name">The name.</param>\r
1787         </member>\r
1788         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">\r
1789             <summary>\r
1790             When overridden in a derived class, returns whether resetting an object changes its value.\r
1791             </summary>\r
1792             <returns>\r
1793             true if resetting the component changes its value; otherwise, false.\r
1794             </returns>\r
1795             <param name="component">The component to test for reset capability. \r
1796                             </param>\r
1797         </member>\r
1798         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">\r
1799             <summary>\r
1800             When overridden in a derived class, gets the current value of the property on a component.\r
1801             </summary>\r
1802             <returns>\r
1803             The value of a property for a given component.\r
1804             </returns>\r
1805             <param name="component">The component with the property for which to retrieve the value. \r
1806                             </param>\r
1807         </member>\r
1808         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">\r
1809             <summary>\r
1810             When overridden in a derived class, resets the value for this property of the component to the default value.\r
1811             </summary>\r
1812             <param name="component">The component with the property value that is to be reset to the default value. \r
1813                             </param>\r
1814         </member>\r
1815         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">\r
1816             <summary>\r
1817             When overridden in a derived class, sets the value of the component to a different value.\r
1818             </summary>\r
1819             <param name="component">The component with the property value that is to be set. \r
1820                             </param><param name="value">The new value. \r
1821                             </param>\r
1822         </member>\r
1823         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">\r
1824             <summary>\r
1825             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.\r
1826             </summary>\r
1827             <returns>\r
1828             true if the property should be persisted; otherwise, false.\r
1829             </returns>\r
1830             <param name="component">The component with the property to be examined for persistence. \r
1831                             </param>\r
1832         </member>\r
1833         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">\r
1834             <summary>\r
1835             When overridden in a derived class, gets the type of the component this property is bound to.\r
1836             </summary>\r
1837             <returns>\r
1838             A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.\r
1839             </returns>\r
1840         </member>\r
1841         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">\r
1842             <summary>\r
1843             When overridden in a derived class, gets a value indicating whether this property is read-only.\r
1844             </summary>\r
1845             <returns>\r
1846             true if the property is read-only; otherwise, false.\r
1847             </returns>\r
1848         </member>\r
1849         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">\r
1850             <summary>\r
1851             When overridden in a derived class, gets the type of the property.\r
1852             </summary>\r
1853             <returns>\r
1854             A <see cref="T:System.Type"/> that represents the type of the property.\r
1855             </returns>\r
1856         </member>\r
1857         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">\r
1858             <summary>\r
1859             Gets the hash code for the name of the member.\r
1860             </summary>\r
1861             <value></value>\r
1862             <returns>\r
1863             The hash code for the name of the member.\r
1864             </returns>\r
1865         </member>\r
1866         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">\r
1867             <summary>\r
1868             Specifies the settings used when merging JSON.\r
1869             </summary>\r
1870         </member>\r
1871         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">\r
1872             <summary>\r
1873             Gets or sets the method used when merging JSON arrays.\r
1874             </summary>\r
1875             <value>The method used when merging JSON arrays.</value>\r
1876         </member>\r
1877         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">\r
1878             <summary>\r
1879             Specifies how JSON arrays are merged together.\r
1880             </summary>\r
1881         </member>\r
1882         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">\r
1883             <summary>Concatenate arrays.</summary>\r
1884         </member>\r
1885         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">\r
1886             <summary>Union arrays, skipping items that already exist.</summary>\r
1887         </member>\r
1888         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">\r
1889             <summary>Replace all array items.</summary>\r
1890         </member>\r
1891         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">\r
1892             <summary>Merge array items together, matched by index.</summary>\r
1893         </member>\r
1894         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">\r
1895             <summary>\r
1896             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1897             </summary>\r
1898         </member>\r
1899         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">\r
1900             <summary>\r
1901             Read metadata properties located at the start of a JSON object.\r
1902             </summary>\r
1903         </member>\r
1904         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">\r
1905             <summary>\r
1906             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.\r
1907             </summary>\r
1908         </member>\r
1909         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">\r
1910             <summary>\r
1911             Do not try to read metadata properties.\r
1912             </summary>\r
1913         </member>\r
1914         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">\r
1915             <summary>\r
1916             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.\r
1917             </summary>\r
1918         </member>\r
1919         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">\r
1920             <summary>\r
1921             Represents a trace writer.\r
1922             </summary>\r
1923         </member>\r
1924         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
1925             <summary>\r
1926             Writes the specified trace level, message and optional exception.\r
1927             </summary>\r
1928             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
1929             <param name="message">The trace message.</param>\r
1930             <param name="ex">The trace exception. This parameter is optional.</param>\r
1931         </member>\r
1932         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">\r
1933             <summary>\r
1934             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1935             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
1936             <code>Warning</code> and <code>Error</code> messages.\r
1937             </summary>\r
1938             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>\r
1939         </member>\r
1940         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
1941             <summary>\r
1942             Writes the specified trace level, message and optional exception.\r
1943             </summary>\r
1944             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
1945             <param name="message">The trace message.</param>\r
1946             <param name="ex">The trace exception. This parameter is optional.</param>\r
1947         </member>\r
1948         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">\r
1949             <summary>\r
1950             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1951             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
1952             <code>Warning</code> and <code>Error</code> messages.\r
1953             </summary>\r
1954             <value>\r
1955             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1956             </value>\r
1957         </member>\r
1958         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">\r
1959             <summary>\r
1960             Provides methods to get attributes.\r
1961             </summary>\r
1962         </member>\r
1963         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">\r
1964             <summary>\r
1965             Returns a collection of all of the attributes, or an empty collection if there are no attributes.\r
1966             </summary>\r
1967             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
1968             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
1969         </member>\r
1970         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">\r
1971             <summary>\r
1972             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.\r
1973             </summary>\r
1974             <param name="attributeType">The type of the attributes.</param>\r
1975             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
1976             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
1977         </member>\r
1978         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">\r
1979             <summary>\r
1980             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1981             </summary>\r
1982         </member>\r
1983         <member name="T:Newtonsoft.Json.Serialization.JsonContract">\r
1984             <summary>\r
1985             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1986             </summary>\r
1987         </member>\r
1988         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">\r
1989             <summary>\r
1990             Gets the underlying type for the contract.\r
1991             </summary>\r
1992             <value>The underlying type for the contract.</value>\r
1993         </member>\r
1994         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">\r
1995             <summary>\r
1996             Gets or sets the type created during deserialization.\r
1997             </summary>\r
1998             <value>The type created during deserialization.</value>\r
1999         </member>\r
2000         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">\r
2001             <summary>\r
2002             Gets or sets whether this type contract is serialized as a reference.\r
2003             </summary>\r
2004             <value>Whether this type contract is serialized as a reference.</value>\r
2005         </member>\r
2006         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">\r
2007             <summary>\r
2008             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.\r
2009             </summary>\r
2010             <value>The converter.</value>\r
2011         </member>\r
2012         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">\r
2013             <summary>\r
2014             Gets or sets all methods called immediately after deserialization of the object.\r
2015             </summary>\r
2016             <value>The methods called immediately after deserialization of the object.</value>\r
2017         </member>\r
2018         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">\r
2019             <summary>\r
2020             Gets or sets all methods called during deserialization of the object.\r
2021             </summary>\r
2022             <value>The methods called during deserialization of the object.</value>\r
2023         </member>\r
2024         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">\r
2025             <summary>\r
2026             Gets or sets all methods called after serialization of the object graph.\r
2027             </summary>\r
2028             <value>The methods called after serialization of the object graph.</value>\r
2029         </member>\r
2030         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">\r
2031             <summary>\r
2032             Gets or sets all methods called before serialization of the object.\r
2033             </summary>\r
2034             <value>The methods called before serialization of the object.</value>\r
2035         </member>\r
2036         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">\r
2037             <summary>\r
2038             Gets or sets all method called when an error is thrown during the serialization of the object.\r
2039             </summary>\r
2040             <value>The methods called when an error is thrown during the serialization of the object.</value>\r
2041         </member>\r
2042         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">\r
2043             <summary>\r
2044             Gets or sets the method called immediately after deserialization of the object.\r
2045             </summary>\r
2046             <value>The method called immediately after deserialization of the object.</value>\r
2047         </member>\r
2048         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">\r
2049             <summary>\r
2050             Gets or sets the method called during deserialization of the object.\r
2051             </summary>\r
2052             <value>The method called during deserialization of the object.</value>\r
2053         </member>\r
2054         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">\r
2055             <summary>\r
2056             Gets or sets the method called after serialization of the object graph.\r
2057             </summary>\r
2058             <value>The method called after serialization of the object graph.</value>\r
2059         </member>\r
2060         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">\r
2061             <summary>\r
2062             Gets or sets the method called before serialization of the object.\r
2063             </summary>\r
2064             <value>The method called before serialization of the object.</value>\r
2065         </member>\r
2066         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">\r
2067             <summary>\r
2068             Gets or sets the method called when an error is thrown during the serialization of the object.\r
2069             </summary>\r
2070             <value>The method called when an error is thrown during the serialization of the object.</value>\r
2071         </member>\r
2072         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">\r
2073             <summary>\r
2074             Gets or sets the default creator method used to create the object.\r
2075             </summary>\r
2076             <value>The default creator method used to create the object.</value>\r
2077         </member>\r
2078         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">\r
2079             <summary>\r
2080             Gets or sets a value indicating whether the default creator is non public.\r
2081             </summary>\r
2082             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r
2083         </member>\r
2084         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">\r
2085             <summary>\r
2086             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.\r
2087             </summary>\r
2088             <param name="underlyingType">The underlying type for the contract.</param>\r
2089         </member>\r
2090         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">\r
2091             <summary>\r
2092             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
2093             </summary>\r
2094             <value>The converter.</value>\r
2095         </member>\r
2096         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">\r
2097             <summary>\r
2098             Gets or sets a value indicating whether the collection items preserve object references.\r
2099             </summary>\r
2100             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r
2101         </member>\r
2102         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">\r
2103             <summary>\r
2104             Gets or sets the collection item reference loop handling.\r
2105             </summary>\r
2106             <value>The reference loop handling.</value>\r
2107         </member>\r
2108         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">\r
2109             <summary>\r
2110             Gets or sets the collection item type name handling.\r
2111             </summary>\r
2112             <value>The type name handling.</value>\r
2113         </member>\r
2114         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">\r
2115             <summary>\r
2116             Represents a trace writer that writes to memory. When the trace message limit is\r
2117             reached then old trace messages will be removed as new messages are added.\r
2118             </summary>\r
2119         </member>\r
2120         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">\r
2121             <summary>\r
2122             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.\r
2123             </summary>\r
2124         </member>\r
2125         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
2126             <summary>\r
2127             Writes the specified trace level, message and optional exception.\r
2128             </summary>\r
2129             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
2130             <param name="message">The trace message.</param>\r
2131             <param name="ex">The trace exception. This parameter is optional.</param>\r
2132         </member>\r
2133         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">\r
2134             <summary>\r
2135             Returns an enumeration of the most recent trace messages.\r
2136             </summary>\r
2137             <returns>An enumeration of the most recent trace messages.</returns>\r
2138         </member>\r
2139         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">\r
2140             <summary>\r
2141             Returns a <see cref="T:System.String"/> of the most recent trace messages.\r
2142             </summary>\r
2143             <returns>\r
2144             A <see cref="T:System.String"/> of the most recent trace messages.\r
2145             </returns>\r
2146         </member>\r
2147         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">\r
2148             <summary>\r
2149             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
2150             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
2151             <code>Warning</code> and <code>Error</code> messages.\r
2152             </summary>\r
2153             <value>\r
2154             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
2155             </value>\r
2156         </member>\r
2157         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">\r
2158             <summary>\r
2159             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"/>.\r
2160             </summary>\r
2161         </member>\r
2162         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">\r
2163             <summary>\r
2164             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.\r
2165             </summary>\r
2166             <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>\r
2167         </member>\r
2168         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">\r
2169             <summary>\r
2170             Returns a collection of all of the attributes, or an empty collection if there are no attributes.\r
2171             </summary>\r
2172             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
2173             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
2174         </member>\r
2175         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">\r
2176             <summary>\r
2177             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.\r
2178             </summary>\r
2179             <param name="attributeType">The type of the attributes.</param>\r
2180             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
2181             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
2182         </member>\r
2183         <member name="T:Newtonsoft.Json.IJsonLineInfo">\r
2184             <summary>\r
2185             Provides an interface to enable a class to return line and position information.\r
2186             </summary>\r
2187         </member>\r
2188         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">\r
2189             <summary>\r
2190             Gets a value indicating whether the class can return line information.\r
2191             </summary>\r
2192             <returns>\r
2193                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r
2194             </returns>\r
2195         </member>\r
2196         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">\r
2197             <summary>\r
2198             Gets the current line number.\r
2199             </summary>\r
2200             <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r
2201         </member>\r
2202         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">\r
2203             <summary>\r
2204             Gets the current line position.\r
2205             </summary>\r
2206             <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r
2207         </member>\r
2208         <member name="T:Newtonsoft.Json.StringEscapeHandling">\r
2209             <summary>\r
2210             Specifies how strings are escaped when writing JSON text.\r
2211             </summary>\r
2212         </member>\r
2213         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">\r
2214             <summary>\r
2215             Only control characters (e.g. newline) are escaped.\r
2216             </summary>\r
2217         </member>\r
2218         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">\r
2219             <summary>\r
2220             All non-ASCII and control characters (e.g. newline) are escaped.\r
2221             </summary>\r
2222         </member>\r
2223         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">\r
2224             <summary>\r
2225             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r
2226             </summary>\r
2227         </member>\r
2228         <member name="T:Newtonsoft.Json.Linq.JRaw">\r
2229             <summary>\r
2230             Represents a raw JSON string.\r
2231             </summary>\r
2232         </member>\r
2233         <member name="T:Newtonsoft.Json.Linq.JValue">\r
2234             <summary>\r
2235             Represents a value in JSON (string, integer, date, etc).\r
2236             </summary>\r
2237         </member>\r
2238         <member name="T:Newtonsoft.Json.Linq.JToken">\r
2239             <summary>\r
2240             Represents an abstract JSON token.\r
2241             </summary>\r
2242         </member>\r
2243         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">\r
2244             <summary>\r
2245             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
2246             </summary>\r
2247             <typeparam name="T">The type of token</typeparam>\r
2248         </member>\r
2249         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">\r
2250             <summary>\r
2251             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.\r
2252             </summary>\r
2253             <value></value>\r
2254         </member>\r
2255         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">\r
2256             <summary>\r
2257             Compares the values of two tokens, including the values of all descendant tokens.\r
2258             </summary>\r
2259             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
2260             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
2261             <returns>true if the tokens are equal; otherwise false.</returns>\r
2262         </member>\r
2263         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">\r
2264             <summary>\r
2265             Adds the specified content immediately after this token.\r
2266             </summary>\r
2267             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r
2268         </member>\r
2269         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">\r
2270             <summary>\r
2271             Adds the specified content immediately before this token.\r
2272             </summary>\r
2273             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r
2274         </member>\r
2275         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">\r
2276             <summary>\r
2277             Returns a collection of the ancestor tokens of this token.\r
2278             </summary>\r
2279             <returns>A collection of the ancestor tokens of this token.</returns>\r
2280         </member>\r
2281         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">\r
2282             <summary>\r
2283             Returns a collection of tokens that contain this token, and the ancestors of this token.\r
2284             </summary>\r
2285             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>\r
2286         </member>\r
2287         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">\r
2288             <summary>\r
2289             Returns a collection of the sibling tokens after this token, in document order.\r
2290             </summary>\r
2291             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r
2292         </member>\r
2293         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">\r
2294             <summary>\r
2295             Returns a collection of the sibling tokens before this token, in document order.\r
2296             </summary>\r
2297             <returns>A collection of the sibling tokens before this token, in document order.</returns>\r
2298         </member>\r
2299         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">\r
2300             <summary>\r
2301             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.\r
2302             </summary>\r
2303             <typeparam name="T">The type to convert the token to.</typeparam>\r
2304             <param name="key">The token key.</param>\r
2305             <returns>The converted token value.</returns>\r
2306         </member>\r
2307         <member name="M:Newtonsoft.Json.Linq.JToken.Children">\r
2308             <summary>\r
2309             Returns a collection of the child tokens of this token, in document order.\r
2310             </summary>\r
2311             <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>\r
2312         </member>\r
2313         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">\r
2314             <summary>\r
2315             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r
2316             </summary>\r
2317             <typeparam name="T">The type to filter the child tokens on.</typeparam>\r
2318             <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>\r
2319         </member>\r
2320         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">\r
2321             <summary>\r
2322             Returns a collection of the child values of this token, in document order.\r
2323             </summary>\r
2324             <typeparam name="T">The type to convert the values to.</typeparam>\r
2325             <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>\r
2326         </member>\r
2327         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">\r
2328             <summary>\r
2329             Removes this token from its parent.\r
2330             </summary>\r
2331         </member>\r
2332         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">\r
2333             <summary>\r
2334             Replaces this token with the specified token.\r
2335             </summary>\r
2336             <param name="value">The value.</param>\r
2337         </member>\r
2338         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
2339             <summary>\r
2340             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
2341             </summary>\r
2342             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
2343             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
2344         </member>\r
2345         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">\r
2346             <summary>\r
2347             Returns the indented JSON for this token.\r
2348             </summary>\r
2349             <returns>\r
2350             The indented JSON for this token.\r
2351             </returns>\r
2352         </member>\r
2353         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">\r
2354             <summary>\r
2355             Returns the JSON for this token using the given formatting and converters.\r
2356             </summary>\r
2357             <param name="formatting">Indicates how the output is formatted.</param>\r
2358             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
2359             <returns>The JSON for this token using the given formatting and converters.</returns>\r
2360         </member>\r
2361         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">\r
2362             <summary>\r
2363             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.\r
2364             </summary>\r
2365             <param name="value">The value.</param>\r
2366             <returns>The result of the conversion.</returns>\r
2367         </member>\r
2368         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">\r
2369             <summary>\r
2370             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.\r
2371             </summary>\r
2372             <param name="value">The value.</param>\r
2373             <returns>The result of the conversion.</returns>\r
2374         </member>\r
2375         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">\r
2376             <summary>\r
2377             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2378             </summary>\r
2379             <param name="value">The value.</param>\r
2380             <returns>The result of the conversion.</returns>\r
2381         </member>\r
2382         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">\r
2383             <summary>\r
2384             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.\r
2385             </summary>\r
2386             <param name="value">The value.</param>\r
2387             <returns>The result of the conversion.</returns>\r
2388         </member>\r
2389         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">\r
2390             <summary>\r
2391             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2392             </summary>\r
2393             <param name="value">The value.</param>\r
2394             <returns>The result of the conversion.</returns>\r
2395         </member>\r
2396         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">\r
2397             <summary>\r
2398             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2399             </summary>\r
2400             <param name="value">The value.</param>\r
2401             <returns>The result of the conversion.</returns>\r
2402         </member>\r
2403         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">\r
2404             <summary>\r
2405             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2406             </summary>\r
2407             <param name="value">The value.</param>\r
2408             <returns>The result of the conversion.</returns>\r
2409         </member>\r
2410         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">\r
2411             <summary>\r
2412             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2413             </summary>\r
2414             <param name="value">The value.</param>\r
2415             <returns>The result of the conversion.</returns>\r
2416         </member>\r
2417         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">\r
2418             <summary>\r
2419             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2420             </summary>\r
2421             <param name="value">The value.</param>\r
2422             <returns>The result of the conversion.</returns>\r
2423         </member>\r
2424         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">\r
2425             <summary>\r
2426             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.\r
2427             </summary>\r
2428             <param name="value">The value.</param>\r
2429             <returns>The result of the conversion.</returns>\r
2430         </member>\r
2431         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">\r
2432             <summary>\r
2433             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.\r
2434             </summary>\r
2435             <param name="value">The value.</param>\r
2436             <returns>The result of the conversion.</returns>\r
2437         </member>\r
2438         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">\r
2439             <summary>\r
2440             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.\r
2441             </summary>\r
2442             <param name="value">The value.</param>\r
2443             <returns>The result of the conversion.</returns>\r
2444         </member>\r
2445         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">\r
2446             <summary>\r
2447             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.\r
2448             </summary>\r
2449             <param name="value">The value.</param>\r
2450             <returns>The result of the conversion.</returns>\r
2451         </member>\r
2452         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">\r
2453             <summary>\r
2454             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.\r
2455             </summary>\r
2456             <param name="value">The value.</param>\r
2457             <returns>The result of the conversion.</returns>\r
2458         </member>\r
2459         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">\r
2460             <summary>\r
2461             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.\r
2462             </summary>\r
2463             <param name="value">The value.</param>\r
2464             <returns>The result of the conversion.</returns>\r
2465         </member>\r
2466         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">\r
2467             <summary>\r
2468             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2469             </summary>\r
2470             <param name="value">The value.</param>\r
2471             <returns>The result of the conversion.</returns>\r
2472         </member>\r
2473         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">\r
2474             <summary>\r
2475             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2476             </summary>\r
2477             <param name="value">The value.</param>\r
2478             <returns>The result of the conversion.</returns>\r
2479         </member>\r
2480         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">\r
2481             <summary>\r
2482             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2483             </summary>\r
2484             <param name="value">The value.</param>\r
2485             <returns>The result of the conversion.</returns>\r
2486         </member>\r
2487         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">\r
2488             <summary>\r
2489             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2490             </summary>\r
2491             <param name="value">The value.</param>\r
2492             <returns>The result of the conversion.</returns>\r
2493         </member>\r
2494         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">\r
2495             <summary>\r
2496             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2497             </summary>\r
2498             <param name="value">The value.</param>\r
2499             <returns>The result of the conversion.</returns>\r
2500         </member>\r
2501         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">\r
2502             <summary>\r
2503             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.\r
2504             </summary>\r
2505             <param name="value">The value.</param>\r
2506             <returns>The result of the conversion.</returns>\r
2507         </member>\r
2508         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">\r
2509             <summary>\r
2510             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2511             </summary>\r
2512             <param name="value">The value.</param>\r
2513             <returns>The result of the conversion.</returns>\r
2514         </member>\r
2515         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">\r
2516             <summary>\r
2517             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2518             </summary>\r
2519             <param name="value">The value.</param>\r
2520             <returns>The result of the conversion.</returns>\r
2521         </member>\r
2522         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">\r
2523             <summary>\r
2524             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.\r
2525             </summary>\r
2526             <param name="value">The value.</param>\r
2527             <returns>The result of the conversion.</returns>\r
2528         </member>\r
2529         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">\r
2530             <summary>\r
2531             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2532             </summary>\r
2533             <param name="value">The value.</param>\r
2534             <returns>The result of the conversion.</returns>\r
2535         </member>\r
2536         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">\r
2537             <summary>\r
2538             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
2539             </summary>\r
2540             <param name="value">The value.</param>\r
2541             <returns>The result of the conversion.</returns>\r
2542         </member>\r
2543         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">\r
2544             <summary>\r
2545             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.\r
2546             </summary>\r
2547             <param name="value">The value.</param>\r
2548             <returns>The result of the conversion.</returns>\r
2549         </member>\r
2550         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">\r
2551             <summary>\r
2552             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.\r
2553             </summary>\r
2554             <param name="value">The value.</param>\r
2555             <returns>The result of the conversion.</returns>\r
2556         </member>\r
2557         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">\r
2558             <summary>\r
2559             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.\r
2560             </summary>\r
2561             <param name="value">The value.</param>\r
2562             <returns>The result of the conversion.</returns>\r
2563         </member>\r
2564         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">\r
2565             <summary>\r
2566             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.\r
2567             </summary>\r
2568             <param name="value">The value.</param>\r
2569             <returns>The result of the conversion.</returns>\r
2570         </member>\r
2571         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">\r
2572             <summary>\r
2573             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.\r
2574             </summary>\r
2575             <param name="value">The value.</param>\r
2576             <returns>The result of the conversion.</returns>\r
2577         </member>\r
2578         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">\r
2579             <summary>\r
2580             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].\r
2581             </summary>\r
2582             <param name="value">The value.</param>\r
2583             <returns>The result of the conversion.</returns>\r
2584         </member>\r
2585         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">\r
2586             <summary>\r
2587             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.\r
2588             </summary>\r
2589             <param name="value">The value.</param>\r
2590             <returns>The result of the conversion.</returns>\r
2591         </member>\r
2592         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">\r
2593             <summary>\r
2594             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.\r
2595             </summary>\r
2596             <param name="value">The value.</param>\r
2597             <returns>The result of the conversion.</returns>\r
2598         </member>\r
2599         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">\r
2600             <summary>\r
2601             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.\r
2602             </summary>\r
2603             <param name="value">The value.</param>\r
2604             <returns>The result of the conversion.</returns>\r
2605         </member>\r
2606         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">\r
2607             <summary>\r
2608             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.\r
2609             </summary>\r
2610             <param name="value">The value.</param>\r
2611             <returns>The result of the conversion.</returns>\r
2612         </member>\r
2613         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">\r
2614             <summary>\r
2615             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.\r
2616             </summary>\r
2617             <param name="value">The value.</param>\r
2618             <returns>The result of the conversion.</returns>\r
2619         </member>\r
2620         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">\r
2621             <summary>\r
2622             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2623             </summary>\r
2624             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2625             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2626         </member>\r
2627         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">\r
2628             <summary>\r
2629             Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2630             </summary>\r
2631             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2632             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2633         </member>\r
2634         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">\r
2635             <summary>\r
2636             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2637             </summary>\r
2638             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2639             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2640         </member>\r
2641         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">\r
2642             <summary>\r
2643             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2644             </summary>\r
2645             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2646             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2647         </member>\r
2648         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">\r
2649             <summary>\r
2650             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2651             </summary>\r
2652             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2653             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2654         </member>\r
2655         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">\r
2656             <summary>\r
2657             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2658             </summary>\r
2659             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2660             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2661         </member>\r
2662         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">\r
2663             <summary>\r
2664             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2665             </summary>\r
2666             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2667             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2668         </member>\r
2669         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">\r
2670             <summary>\r
2671             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2672             </summary>\r
2673             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2674             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2675         </member>\r
2676         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">\r
2677             <summary>\r
2678             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2679             </summary>\r
2680             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2681             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2682         </member>\r
2683         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">\r
2684             <summary>\r
2685             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2686             </summary>\r
2687             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2688             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2689         </member>\r
2690         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">\r
2691             <summary>\r
2692             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2693             </summary>\r
2694             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2695             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2696         </member>\r
2697         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">\r
2698             <summary>\r
2699             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2700             </summary>\r
2701             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2702             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2703         </member>\r
2704         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">\r
2705             <summary>\r
2706             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2707             </summary>\r
2708             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2709             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2710         </member>\r
2711         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">\r
2712             <summary>\r
2713             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2714             </summary>\r
2715             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2716             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2717         </member>\r
2718         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">\r
2719             <summary>\r
2720             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2721             </summary>\r
2722             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2723             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2724         </member>\r
2725         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">\r
2726             <summary>\r
2727             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2728             </summary>\r
2729             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2730             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2731         </member>\r
2732         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">\r
2733             <summary>\r
2734             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2735             </summary>\r
2736             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2737             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2738         </member>\r
2739         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">\r
2740             <summary>\r
2741             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2742             </summary>\r
2743             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2744             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2745         </member>\r
2746         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">\r
2747             <summary>\r
2748             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2749             </summary>\r
2750             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2751             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2752         </member>\r
2753         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">\r
2754             <summary>\r
2755             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2756             </summary>\r
2757             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2758             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2759         </member>\r
2760         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">\r
2761             <summary>\r
2762             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2763             </summary>\r
2764             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2765             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2766         </member>\r
2767         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">\r
2768             <summary>\r
2769             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2770             </summary>\r
2771             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2772             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2773         </member>\r
2774         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">\r
2775             <summary>\r
2776             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2777             </summary>\r
2778             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2779             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2780         </member>\r
2781         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">\r
2782             <summary>\r
2783             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2784             </summary>\r
2785             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2786             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2787         </member>\r
2788         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">\r
2789             <summary>\r
2790             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2791             </summary>\r
2792             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2793             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2794         </member>\r
2795         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">\r
2796             <summary>\r
2797             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2798             </summary>\r
2799             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2800             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2801         </member>\r
2802         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">\r
2803             <summary>\r
2804             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2805             </summary>\r
2806             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2807             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2808         </member>\r
2809         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">\r
2810             <summary>\r
2811             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2812             </summary>\r
2813             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2814             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2815         </member>\r
2816         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">\r
2817             <summary>\r
2818             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2819             </summary>\r
2820             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2821             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2822         </member>\r
2823         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">\r
2824             <summary>\r
2825             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2826             </summary>\r
2827             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2828             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2829         </member>\r
2830         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">\r
2831             <summary>\r
2832             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2833             </summary>\r
2834             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2835             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2836         </member>\r
2837         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">\r
2838             <summary>\r
2839             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2840             </summary>\r
2841             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2842             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2843         </member>\r
2844         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">\r
2845             <summary>\r
2846             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2847             </summary>\r
2848             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2849             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2850         </member>\r
2851         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">\r
2852             <summary>\r
2853             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2854             </summary>\r
2855             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2856             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2857         </member>\r
2858         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">\r
2859             <summary>\r
2860             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2861             </summary>\r
2862             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
2863             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
2864         </member>\r
2865         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">\r
2866             <summary>\r
2867             Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.\r
2868             </summary>\r
2869             <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>\r
2870         </member>\r
2871         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">\r
2872             <summary>\r
2873             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.\r
2874             </summary>\r
2875             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>\r
2876             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>\r
2877         </member>\r
2878         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
2879             <summary>\r
2880             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
2881             </summary>\r
2882             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>\r
2883             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>\r
2884             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>\r
2885         </member>\r
2886         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">\r
2887             <summary>\r
2888             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2889             </summary>\r
2890             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>\r
2891             <returns>The new object created from the JSON value.</returns>\r
2892         </member>\r
2893         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">\r
2894             <summary>\r
2895             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2896             </summary>\r
2897             <param name="objectType">The object type that the token will be deserialized to.</param>\r
2898             <returns>The new object created from the JSON value.</returns>\r
2899         </member>\r
2900         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">\r
2901             <summary>\r
2902             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
2903             </summary>\r
2904             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>\r
2905             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>\r
2906             <returns>The new object created from the JSON value.</returns>\r
2907         </member>\r
2908         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">\r
2909             <summary>\r
2910             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
2911             </summary>\r
2912             <param name="objectType">The object type that the token will be deserialized to.</param>\r
2913             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>\r
2914             <returns>The new object created from the JSON value.</returns>\r
2915         </member>\r
2916         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">\r
2917             <summary>\r
2918             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
2919             </summary>\r
2920             <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>\r
2921             <returns>\r
2922             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens\r
2923             that were read from the reader. The runtime type of the token is determined\r
2924             by the token type of the first token encountered in the reader.\r
2925             </returns>\r
2926         </member>\r
2927         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">\r
2928             <summary>\r
2929             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.\r
2930             </summary>\r
2931             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
2932             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>\r
2933         </member>\r
2934         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">\r
2935             <summary>\r
2936             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
2937             </summary>\r
2938             <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>\r
2939             <returns>\r
2940             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens\r
2941             that were read from the reader. The runtime type of the token is determined\r
2942             by the token type of the first token encountered in the reader.\r
2943             </returns>\r
2944         </member>\r
2945         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">\r
2946             <summary>\r
2947             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.\r
2948             </summary>\r
2949             <param name="path">\r
2950             A <see cref="T:System.String"/> that contains a JPath expression.\r
2951             </param>\r
2952             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>\r
2953         </member>\r
2954         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">\r
2955             <summary>\r
2956             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.\r
2957             </summary>\r
2958             <param name="path">\r
2959             A <see cref="T:System.String"/> that contains a JPath expression.\r
2960             </param>\r
2961             <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>\r
2962             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
2963         </member>\r
2964         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">\r
2965             <summary>\r
2966             Selects a collection of elements using a JPath expression.\r
2967             </summary>\r
2968             <param name="path">\r
2969             A <see cref="T:System.String"/> that contains a JPath expression.\r
2970             </param>\r
2971             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>\r
2972         </member>\r
2973         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">\r
2974             <summary>\r
2975             Selects a collection of elements using a JPath expression.\r
2976             </summary>\r
2977             <param name="path">\r
2978             A <see cref="T:System.String"/> that contains a JPath expression.\r
2979             </param>\r
2980             <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>\r
2981             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>\r
2982         </member>\r
2983         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">\r
2984             <summary>\r
2985             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.\r
2986             </summary>\r
2987             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
2988         </member>\r
2989         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">\r
2990             <summary>\r
2991             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2992             </summary>\r
2993             <param name="annotation">The annotation to add.</param>\r
2994         </member>\r
2995         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">\r
2996             <summary>\r
2997             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
2998             </summary>\r
2999             <typeparam name="T">The type of the annotation to retrieve.</typeparam>\r
3000             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>\r
3001         </member>\r
3002         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">\r
3003             <summary>\r
3004             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3005             </summary>\r
3006             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>\r
3007             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>\r
3008         </member>\r
3009         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">\r
3010             <summary>\r
3011             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3012             </summary>\r
3013             <typeparam name="T">The type of the annotations to retrieve.</typeparam>\r
3014             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
3015         </member>\r
3016         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">\r
3017             <summary>\r
3018             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3019             </summary>\r
3020             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>\r
3021             <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>\r
3022         </member>\r
3023         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">\r
3024             <summary>\r
3025             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3026             </summary>\r
3027             <typeparam name="T">The type of annotations to remove.</typeparam>\r
3028         </member>\r
3029         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">\r
3030             <summary>\r
3031             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3032             </summary>\r
3033             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>\r
3034         </member>\r
3035         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">\r
3036             <summary>\r
3037             Gets a comparer that can compare two tokens for value equality.\r
3038             </summary>\r
3039             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>\r
3040         </member>\r
3041         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">\r
3042             <summary>\r
3043             Gets or sets the parent.\r
3044             </summary>\r
3045             <value>The parent.</value>\r
3046         </member>\r
3047         <member name="P:Newtonsoft.Json.Linq.JToken.Root">\r
3048             <summary>\r
3049             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3050             </summary>\r
3051             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>\r
3052         </member>\r
3053         <member name="P:Newtonsoft.Json.Linq.JToken.Type">\r
3054             <summary>\r
3055             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3056             </summary>\r
3057             <value>The type.</value>\r
3058         </member>\r
3059         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">\r
3060             <summary>\r
3061             Gets a value indicating whether this token has child tokens.\r
3062             </summary>\r
3063             <value>\r
3064                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
3065             </value>\r
3066         </member>\r
3067         <member name="P:Newtonsoft.Json.Linq.JToken.Next">\r
3068             <summary>\r
3069             Gets the next sibling token of this node.\r
3070             </summary>\r
3071             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>\r
3072         </member>\r
3073         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">\r
3074             <summary>\r
3075             Gets the previous sibling token of this node.\r
3076             </summary>\r
3077             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>\r
3078         </member>\r
3079         <member name="P:Newtonsoft.Json.Linq.JToken.Path">\r
3080             <summary>\r
3081             Gets the path of the JSON token. \r
3082             </summary>\r
3083         </member>\r
3084         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">\r
3085             <summary>\r
3086             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
3087             </summary>\r
3088             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
3089         </member>\r
3090         <member name="P:Newtonsoft.Json.Linq.JToken.First">\r
3091             <summary>\r
3092             Get the first child token of this token.\r
3093             </summary>\r
3094             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>\r
3095         </member>\r
3096         <member name="P:Newtonsoft.Json.Linq.JToken.Last">\r
3097             <summary>\r
3098             Get the last child token of this token.\r
3099             </summary>\r
3100             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>\r
3101         </member>\r
3102         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">\r
3103             <summary>\r
3104             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.\r
3105             </summary>\r
3106             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>\r
3107         </member>\r
3108         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">\r
3109             <summary>\r
3110             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3111             </summary>\r
3112             <param name="value">The value.</param>\r
3113         </member>\r
3114         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">\r
3115             <summary>\r
3116             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3117             </summary>\r
3118             <param name="value">The value.</param>\r
3119         </member>\r
3120         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">\r
3121             <summary>\r
3122             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3123             </summary>\r
3124             <param name="value">The value.</param>\r
3125         </member>\r
3126         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">\r
3127             <summary>\r
3128             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3129             </summary>\r
3130             <param name="value">The value.</param>\r
3131         </member>\r
3132         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">\r
3133             <summary>\r
3134             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3135             </summary>\r
3136             <param name="value">The value.</param>\r
3137         </member>\r
3138         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">\r
3139             <summary>\r
3140             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3141             </summary>\r
3142             <param name="value">The value.</param>\r
3143         </member>\r
3144         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">\r
3145             <summary>\r
3146             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3147             </summary>\r
3148             <param name="value">The value.</param>\r
3149         </member>\r
3150         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">\r
3151             <summary>\r
3152             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3153             </summary>\r
3154             <param name="value">The value.</param>\r
3155         </member>\r
3156         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">\r
3157             <summary>\r
3158             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3159             </summary>\r
3160             <param name="value">The value.</param>\r
3161         </member>\r
3162         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">\r
3163             <summary>\r
3164             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3165             </summary>\r
3166             <param name="value">The value.</param>\r
3167         </member>\r
3168         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">\r
3169             <summary>\r
3170             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3171             </summary>\r
3172             <param name="value">The value.</param>\r
3173         </member>\r
3174         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">\r
3175             <summary>\r
3176             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3177             </summary>\r
3178             <param name="value">The value.</param>\r
3179         </member>\r
3180         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">\r
3181             <summary>\r
3182             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3183             </summary>\r
3184             <param name="value">The value.</param>\r
3185         </member>\r
3186         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">\r
3187             <summary>\r
3188             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
3189             </summary>\r
3190             <param name="value">The value.</param>\r
3191         </member>\r
3192         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">\r
3193             <summary>\r
3194             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.\r
3195             </summary>\r
3196             <param name="value">The value.</param>\r
3197             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>\r
3198         </member>\r
3199         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">\r
3200             <summary>\r
3201             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.\r
3202             </summary>\r
3203             <param name="value">The value.</param>\r
3204             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>\r
3205         </member>\r
3206         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">\r
3207             <summary>\r
3208             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.\r
3209             </summary>\r
3210             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>\r
3211         </member>\r
3212         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">\r
3213             <summary>\r
3214             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.\r
3215             </summary>\r
3216             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>\r
3217         </member>\r
3218         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
3219             <summary>\r
3220             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
3221             </summary>\r
3222             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
3223             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
3224         </member>\r
3225         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">\r
3226             <summary>\r
3227             Indicates whether the current object is equal to another object of the same type.\r
3228             </summary>\r
3229             <returns>\r
3230             true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.\r
3231             </returns>\r
3232             <param name="other">An object to compare with this object.</param>\r
3233         </member>\r
3234         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">\r
3235             <summary>\r
3236             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.\r
3237             </summary>\r
3238             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>\r
3239             <returns>\r
3240             true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.\r
3241             </returns>\r
3242             <exception cref="T:System.NullReferenceException">\r
3243             The <paramref name="obj"/> parameter is null.\r
3244             </exception>\r
3245         </member>\r
3246         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">\r
3247             <summary>\r
3248             Serves as a hash function for a particular type.\r
3249             </summary>\r
3250             <returns>\r
3251             A hash code for the current <see cref="T:System.Object"/>.\r
3252             </returns>\r
3253         </member>\r
3254         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">\r
3255             <summary>\r
3256             Returns a <see cref="T:System.String"/> that represents this instance.\r
3257             </summary>\r
3258             <returns>\r
3259             A <see cref="T:System.String"/> that represents this instance.\r
3260             </returns>\r
3261         </member>\r
3262         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">\r
3263             <summary>\r
3264             Returns a <see cref="T:System.String"/> that represents this instance.\r
3265             </summary>\r
3266             <param name="format">The format.</param>\r
3267             <returns>\r
3268             A <see cref="T:System.String"/> that represents this instance.\r
3269             </returns>\r
3270         </member>\r
3271         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">\r
3272             <summary>\r
3273             Returns a <see cref="T:System.String"/> that represents this instance.\r
3274             </summary>\r
3275             <param name="formatProvider">The format provider.</param>\r
3276             <returns>\r
3277             A <see cref="T:System.String"/> that represents this instance.\r
3278             </returns>\r
3279         </member>\r
3280         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">\r
3281             <summary>\r
3282             Returns a <see cref="T:System.String"/> that represents this instance.\r
3283             </summary>\r
3284             <param name="format">The format.</param>\r
3285             <param name="formatProvider">The format provider.</param>\r
3286             <returns>\r
3287             A <see cref="T:System.String"/> that represents this instance.\r
3288             </returns>\r
3289         </member>\r
3290         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">\r
3291             <summary>\r
3292             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.\r
3293             </summary>\r
3294             <param name="obj">An object to compare with this instance.</param>\r
3295             <returns>\r
3296             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r
3297             Value\r
3298             Meaning\r
3299             Less than zero\r
3300             This instance is less than <paramref name="obj"/>.\r
3301             Zero\r
3302             This instance is equal to <paramref name="obj"/>.\r
3303             Greater than zero\r
3304             This instance is greater than <paramref name="obj"/>.\r
3305             </returns>\r
3306             <exception cref="T:System.ArgumentException">\r
3307                 <paramref name="obj"/> is not the same type as this instance.\r
3308             </exception>\r
3309         </member>\r
3310         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">\r
3311             <summary>\r
3312             Gets a value indicating whether this token has child tokens.\r
3313             </summary>\r
3314             <value>\r
3315                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
3316             </value>\r
3317         </member>\r
3318         <member name="P:Newtonsoft.Json.Linq.JValue.Type">\r
3319             <summary>\r
3320             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3321             </summary>\r
3322             <value>The type.</value>\r
3323         </member>\r
3324         <member name="P:Newtonsoft.Json.Linq.JValue.Value">\r
3325             <summary>\r
3326             Gets or sets the underlying token value.\r
3327             </summary>\r
3328             <value>The underlying token value.</value>\r
3329         </member>\r
3330         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">\r
3331             <summary>\r
3332             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.\r
3333             </summary>\r
3334             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>\r
3335         </member>\r
3336         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">\r
3337             <summary>\r
3338             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.\r
3339             </summary>\r
3340             <param name="rawJson">The raw json.</param>\r
3341         </member>\r
3342         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">\r
3343             <summary>\r
3344             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.\r
3345             </summary>\r
3346             <param name="reader">The reader.</param>\r
3347             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>\r
3348         </member>\r
3349         <member name="T:Newtonsoft.Json.Required">\r
3350             <summary>\r
3351             Indicating whether a property is required.\r
3352             </summary>\r
3353         </member>\r
3354         <member name="F:Newtonsoft.Json.Required.Default">\r
3355             <summary>\r
3356             The property is not required. The default state.\r
3357             </summary>\r
3358         </member>\r
3359         <member name="F:Newtonsoft.Json.Required.AllowNull">\r
3360             <summary>\r
3361             The property must be defined in JSON but can be a null value.\r
3362             </summary>\r
3363         </member>\r
3364         <member name="F:Newtonsoft.Json.Required.Always">\r
3365             <summary>\r
3366             The property must be defined in JSON and cannot be a null value.\r
3367             </summary>\r
3368         </member>\r
3369         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">\r
3370             <summary>\r
3371             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3372             </summary>\r
3373         </member>\r
3374         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">\r
3375             <summary>\r
3376             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.\r
3377             </summary>\r
3378             <param name="underlyingType">The underlying type for the contract.</param>\r
3379         </member>\r
3380         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">\r
3381             <summary>\r
3382             Gets or sets the ISerializable object constructor.\r
3383             </summary>\r
3384             <value>The ISerializable object constructor.</value>\r
3385         </member>\r
3386         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">\r
3387             <summary>\r
3388             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3389             </summary>\r
3390         </member>\r
3391         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">\r
3392             <summary>\r
3393             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.\r
3394             </summary>\r
3395             <param name="underlyingType">The underlying type for the contract.</param>\r
3396         </member>\r
3397         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">\r
3398             <summary>\r
3399             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3400             </summary>\r
3401         </member>\r
3402         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">\r
3403             <summary>\r
3404             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.\r
3405             </summary>\r
3406             <param name="underlyingType">The underlying type for the contract.</param>\r
3407         </member>\r
3408         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">\r
3409             <summary>\r
3410             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.\r
3411             </summary>\r
3412         </member>\r
3413         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">\r
3414             <summary>\r
3415             Provides methods to get and set values.\r
3416             </summary>\r
3417         </member>\r
3418         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">\r
3419             <summary>\r
3420             Sets the value.\r
3421             </summary>\r
3422             <param name="target">The target to set the value on.</param>\r
3423             <param name="value">The value to set on the target.</param>\r
3424         </member>\r
3425         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">\r
3426             <summary>\r
3427             Gets the value.\r
3428             </summary>\r
3429             <param name="target">The target to get the value from.</param>\r
3430             <returns>The value.</returns>\r
3431         </member>\r
3432         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">\r
3433             <summary>\r
3434             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.\r
3435             </summary>\r
3436             <param name="memberInfo">The member info.</param>\r
3437         </member>\r
3438         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">\r
3439             <summary>\r
3440             Sets the value.\r
3441             </summary>\r
3442             <param name="target">The target to set the value on.</param>\r
3443             <param name="value">The value to set on the target.</param>\r
3444         </member>\r
3445         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">\r
3446             <summary>\r
3447             Gets the value.\r
3448             </summary>\r
3449             <param name="target">The target to get the value from.</param>\r
3450             <returns>The value.</returns>\r
3451         </member>\r
3452         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">\r
3453             <summary>\r
3454             Provides data for the Error event.\r
3455             </summary>\r
3456         </member>\r
3457         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">\r
3458             <summary>\r
3459             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.\r
3460             </summary>\r
3461             <param name="currentObject">The current object.</param>\r
3462             <param name="errorContext">The error context.</param>\r
3463         </member>\r
3464         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">\r
3465             <summary>\r
3466             Gets the current object the error event is being raised against.\r
3467             </summary>\r
3468             <value>The current object the error event is being raised against.</value>\r
3469         </member>\r
3470         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">\r
3471             <summary>\r
3472             Gets the error context.\r
3473             </summary>\r
3474             <value>The error context.</value>\r
3475         </member>\r
3476         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">\r
3477             <summary>\r
3478             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3479             </summary>\r
3480         </member>\r
3481         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">\r
3482             <summary>\r
3483             Resolves a reference to its object.\r
3484             </summary>\r
3485             <param name="context">The serialization context.</param>\r
3486             <param name="reference">The reference to resolve.</param>\r
3487             <returns>The object that</returns>\r
3488         </member>\r
3489         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">\r
3490             <summary>\r
3491             Gets the reference for the sepecified object.\r
3492             </summary>\r
3493             <param name="context">The serialization context.</param>\r
3494             <param name="value">The object to get a reference for.</param>\r
3495             <returns>The reference to the object.</returns>\r
3496         </member>\r
3497         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">\r
3498             <summary>\r
3499             Determines whether the specified object is referenced.\r
3500             </summary>\r
3501             <param name="context">The serialization context.</param>\r
3502             <param name="value">The object to test for a reference.</param>\r
3503             <returns>\r
3504                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r
3505             </returns>\r
3506         </member>\r
3507         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">\r
3508             <summary>\r
3509             Adds a reference to the specified object.\r
3510             </summary>\r
3511             <param name="context">The serialization context.</param>\r
3512             <param name="reference">The reference.</param>\r
3513             <param name="value">The object to reference.</param>\r
3514         </member>\r
3515         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">\r
3516             <summary>\r
3517             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3518             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.\r
3519             </summary>\r
3520             <example>\r
3521               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       \r
3522             </example>\r
3523         </member>\r
3524         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">\r
3525             <summary>\r
3526             Do not preserve references when serializing types.\r
3527             </summary>\r
3528         </member>\r
3529         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">\r
3530             <summary>\r
3531             Preserve references when serializing into a JSON object structure.\r
3532             </summary>\r
3533         </member>\r
3534         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">\r
3535             <summary>\r
3536             Preserve references when serializing into a JSON array structure.\r
3537             </summary>\r
3538         </member>\r
3539         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">\r
3540             <summary>\r
3541             Preserve references when serializing.\r
3542             </summary>\r
3543         </member>\r
3544         <member name="T:Newtonsoft.Json.JsonArrayAttribute">\r
3545             <summary>\r
3546             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.\r
3547             </summary>\r
3548         </member>\r
3549         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">\r
3550             <summary>\r
3551             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.\r
3552             </summary>\r
3553         </member>\r
3554         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">\r
3555             <summary>\r
3556             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items\r
3557             </summary>\r
3558             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>\r
3559         </member>\r
3560         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">\r
3561             <summary>\r
3562             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.\r
3563             </summary>\r
3564             <param name="id">The container Id.</param>\r
3565         </member>\r
3566         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">\r
3567             <summary>\r
3568             Gets or sets a value indicating whether null items are allowed in the collection.\r
3569             </summary>\r
3570             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r
3571         </member>\r
3572         <member name="T:Newtonsoft.Json.DefaultValueHandling">\r
3573             <summary>\r
3574             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3575             </summary>\r
3576             <example>\r
3577               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>\r
3578               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>\r
3579             </example>\r
3580         </member>\r
3581         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">\r
3582             <summary>\r
3583             Include members where the member value is the same as the member's default value when serializing objects.\r
3584             Included members are written to JSON. Has no effect when deserializing.\r
3585             </summary>\r
3586         </member>\r
3587         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">\r
3588             <summary>\r
3589             Ignore members where the member value is the same as the member's default value when serializing objects\r
3590             so that is is not written to JSON.\r
3591             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,\r
3592             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r
3593             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.\r
3594             </summary>\r
3595         </member>\r
3596         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">\r
3597             <summary>\r
3598             Members with a default value but no JSON will be set to their default value when deserializing.\r
3599             </summary>\r
3600         </member>\r
3601         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">\r
3602             <summary>\r
3603             Ignore members where the member value is the same as the member's default value when serializing objects\r
3604             and sets members to their default value when deserializing.\r
3605             </summary>\r
3606         </member>\r
3607         <member name="T:Newtonsoft.Json.JsonConverterAttribute">\r
3608             <summary>\r
3609             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.\r
3610             </summary>\r
3611         </member>\r
3612         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">\r
3613             <summary>\r
3614             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.\r
3615             </summary>\r
3616             <param name="converterType">Type of the converter.</param>\r
3617         </member>\r
3618         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">\r
3619             <summary>\r
3620             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.\r
3621             </summary>\r
3622             <param name="converterType">Type of the converter.</param>\r
3623             <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>\r
3624         </member>\r
3625         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">\r
3626             <summary>\r
3627             Gets the <see cref="T:System.Type"/> of the converter.\r
3628             </summary>\r
3629             <value>The <see cref="T:System.Type"/> of the converter.</value>\r
3630         </member>\r
3631         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">\r
3632             <summary>\r
3633             The parameter list to use when constructing the JsonConverter described by ConverterType.  \r
3634             If null, the default constructor is used.\r
3635             </summary>\r
3636         </member>\r
3637         <member name="T:Newtonsoft.Json.JsonObjectAttribute">\r
3638             <summary>\r
3639             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.\r
3640             </summary>\r
3641         </member>\r
3642         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">\r
3643             <summary>\r
3644             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.\r
3645             </summary>\r
3646         </member>\r
3647         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">\r
3648             <summary>\r
3649             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.\r
3650             </summary>\r
3651             <param name="memberSerialization">The member serialization.</param>\r
3652         </member>\r
3653         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">\r
3654             <summary>\r
3655             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.\r
3656             </summary>\r
3657             <param name="id">The container Id.</param>\r
3658         </member>\r
3659         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">\r
3660             <summary>\r
3661             Gets or sets the member serialization.\r
3662             </summary>\r
3663             <value>The member serialization.</value>\r
3664         </member>\r
3665         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">\r
3666             <summary>\r
3667             Gets or sets a value that indicates whether the object's properties are required.\r
3668             </summary>\r
3669             <value>\r
3670                 A value indicating whether the object's properties are required.\r
3671             </value>\r
3672         </member>\r
3673         <member name="T:Newtonsoft.Json.JsonSerializerSettings">\r
3674             <summary>\r
3675             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.\r
3676             </summary>\r
3677         </member>\r
3678         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">\r
3679             <summary>\r
3680             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.\r
3681             </summary>\r
3682         </member>\r
3683         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">\r
3684             <summary>\r
3685             Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r
3686             </summary>\r
3687             <value>Reference loop handling.</value>\r
3688         </member>\r
3689         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">\r
3690             <summary>\r
3691             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r
3692             </summary>\r
3693             <value>Missing member handling.</value>\r
3694         </member>\r
3695         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">\r
3696             <summary>\r
3697             Gets or sets how objects are created during deserialization.\r
3698             </summary>\r
3699             <value>The object creation handling.</value>\r
3700         </member>\r
3701         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">\r
3702             <summary>\r
3703             Gets or sets how null values are handled during serialization and deserialization.\r
3704             </summary>\r
3705             <value>Null value handling.</value>\r
3706         </member>\r
3707         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">\r
3708             <summary>\r
3709             Gets or sets how null default are handled during serialization and deserialization.\r
3710             </summary>\r
3711             <value>The default value handling.</value>\r
3712         </member>\r
3713         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">\r
3714             <summary>\r
3715             Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.\r
3716             </summary>\r
3717             <value>The converters.</value>\r
3718         </member>\r
3719         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">\r
3720             <summary>\r
3721             Gets or sets how object references are preserved by the serializer.\r
3722             </summary>\r
3723             <value>The preserve references handling.</value>\r
3724         </member>\r
3725         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">\r
3726             <summary>\r
3727             Gets or sets how type name writing and reading is handled by the serializer.\r
3728             </summary>\r
3729             <value>The type name handling.</value>\r
3730         </member>\r
3731         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">\r
3732             <summary>\r
3733             Gets or sets how metadata properties are used during deserialization.\r
3734             </summary>\r
3735             <value>The metadata properties handling.</value>\r
3736         </member>\r
3737         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">\r
3738             <summary>\r
3739             Gets or sets how a type name assembly is written and resolved by the serializer.\r
3740             </summary>\r
3741             <value>The type name assembly format.</value>\r
3742         </member>\r
3743         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">\r
3744             <summary>\r
3745             Gets or sets how constructors are used during deserialization.\r
3746             </summary>\r
3747             <value>The constructor handling.</value>\r
3748         </member>\r
3749         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">\r
3750             <summary>\r
3751             Gets or sets the contract resolver used by the serializer when\r
3752             serializing .NET objects to JSON and vice versa.\r
3753             </summary>\r
3754             <value>The contract resolver.</value>\r
3755         </member>\r
3756         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">\r
3757             <summary>\r
3758             Gets or sets the equality comparer used by the serializer when comparing references.\r
3759             </summary>\r
3760             <value>The equality comparer.</value>\r
3761         </member>\r
3762         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">\r
3763             <summary>\r
3764             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
3765             </summary>\r
3766             <value>The reference resolver.</value>\r
3767         </member>\r
3768         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">\r
3769             <summary>\r
3770             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
3771             </summary>\r
3772             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>\r
3773         </member>\r
3774         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">\r
3775             <summary>\r
3776             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.\r
3777             </summary>\r
3778             <value>The trace writer.</value>\r
3779         </member>\r
3780         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">\r
3781             <summary>\r
3782             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.\r
3783             </summary>\r
3784             <value>The binder.</value>\r
3785         </member>\r
3786         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">\r
3787             <summary>\r
3788             Gets or sets the error handler called during serialization and deserialization.\r
3789             </summary>\r
3790             <value>The error handler called during serialization and deserialization.</value>\r
3791         </member>\r
3792         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">\r
3793             <summary>\r
3794             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.\r
3795             </summary>\r
3796             <value>The context.</value>\r
3797         </member>\r
3798         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">\r
3799             <summary>\r
3800             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.\r
3801             </summary>\r
3802         </member>\r
3803         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">\r
3804             <summary>\r
3805             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
3806             </summary>\r
3807         </member>\r
3808         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">\r
3809             <summary>\r
3810             Indicates how JSON text output is formatted.\r
3811             </summary>\r
3812         </member>\r
3813         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">\r
3814             <summary>\r
3815             Get or set how dates are written to JSON text.\r
3816             </summary>\r
3817         </member>\r
3818         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">\r
3819             <summary>\r
3820             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.\r
3821             </summary>\r
3822         </member>\r
3823         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">\r
3824             <summary>\r
3825             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
3826             </summary>\r
3827         </member>\r
3828         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">\r
3829             <summary>\r
3830             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
3831             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
3832             are written as JSON.\r
3833             </summary>\r
3834         </member>\r
3835         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">\r
3836             <summary>\r
3837             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
3838             </summary>\r
3839         </member>\r
3840         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">\r
3841             <summary>\r
3842             Get or set how strings are escaped when writing JSON text.\r
3843             </summary>\r
3844         </member>\r
3845         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">\r
3846             <summary>\r
3847             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
3848             </summary>\r
3849         </member>\r
3850         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">\r
3851             <summary>\r
3852             Gets a value indicating whether there will be a check for additional content after deserializing an object.\r
3853             </summary>\r
3854             <value>\r
3855                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r
3856             </value>\r
3857         </member>\r
3858         <member name="T:Newtonsoft.Json.JsonValidatingReader">\r
3859             <summary>\r
3860             <para>\r
3861             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.\r
3862             </para>\r
3863             <note type="caution">\r
3864             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.\r
3865             </note>\r
3866             </summary>\r
3867         </member>\r
3868         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">\r
3869             <summary>\r
3870             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that\r
3871             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
3872             </summary>\r
3873             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>\r
3874         </member>\r
3875         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">\r
3876             <summary>\r
3877             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
3878             </summary>\r
3879             <returns>A <see cref="T:System.Nullable`1"/>.</returns>\r
3880         </member>\r
3881         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">\r
3882             <summary>\r
3883             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
3884             </summary>\r
3885             <returns>\r
3886             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.\r
3887             </returns>\r
3888         </member>\r
3889         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">\r
3890             <summary>\r
3891             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
3892             </summary>\r
3893             <returns>A <see cref="T:System.Nullable`1"/>.</returns>\r
3894         </member>\r
3895         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">\r
3896             <summary>\r
3897             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
3898             </summary>\r
3899             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
3900         </member>\r
3901         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">\r
3902             <summary>\r
3903             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
3904             </summary>\r
3905             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
3906         </member>\r
3907         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">\r
3908             <summary>\r
3909             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
3910             </summary>\r
3911             <returns>A <see cref="T:System.Nullable`1"/>.</returns>\r
3912         </member>\r
3913         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">\r
3914             <summary>\r
3915             Reads the next JSON token from the stream.\r
3916             </summary>\r
3917             <returns>\r
3918             true if the next token was read successfully; false if there are no more tokens to read.\r
3919             </returns>\r
3920         </member>\r
3921         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">\r
3922             <summary>\r
3923             Sets an event handler for receiving schema validation errors.\r
3924             </summary>\r
3925         </member>\r
3926         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">\r
3927             <summary>\r
3928             Gets the text value of the current JSON token.\r
3929             </summary>\r
3930             <value></value>\r
3931         </member>\r
3932         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">\r
3933             <summary>\r
3934             Gets the depth of the current token in the JSON document.\r
3935             </summary>\r
3936             <value>The depth of the current token in the JSON document.</value>\r
3937         </member>\r
3938         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">\r
3939             <summary>\r
3940             Gets the path of the current JSON token. \r
3941             </summary>\r
3942         </member>\r
3943         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">\r
3944             <summary>\r
3945             Gets the quotation mark character used to enclose the value of a string.\r
3946             </summary>\r
3947             <value></value>\r
3948         </member>\r
3949         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">\r
3950             <summary>\r
3951             Gets the type of the current JSON token.\r
3952             </summary>\r
3953             <value></value>\r
3954         </member>\r
3955         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">\r
3956             <summary>\r
3957             Gets the Common Language Runtime (CLR) type for the current JSON token.\r
3958             </summary>\r
3959             <value></value>\r
3960         </member>\r
3961         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">\r
3962             <summary>\r
3963             Gets or sets the schema.\r
3964             </summary>\r
3965             <value>The schema.</value>\r
3966         </member>\r
3967         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">\r
3968             <summary>\r
3969             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.\r
3970             </summary>\r
3971             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>\r
3972         </member>\r
3973         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">\r
3974             <summary>\r
3975             Compares tokens to determine whether they are equal.\r
3976             </summary>\r
3977         </member>\r
3978         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">\r
3979             <summary>\r
3980             Determines whether the specified objects are equal.\r
3981             </summary>\r
3982             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
3983             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
3984             <returns>\r
3985             true if the specified objects are equal; otherwise, false.\r
3986             </returns>\r
3987         </member>\r
3988         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">\r
3989             <summary>\r
3990             Returns a hash code for the specified object.\r
3991             </summary>\r
3992             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>\r
3993             <returns>A hash code for the specified object.</returns>\r
3994             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>\r
3995         </member>\r
3996         <member name="T:Newtonsoft.Json.MemberSerialization">\r
3997             <summary>\r
3998             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3999             </summary>\r
4000         </member>\r
4001         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">\r
4002             <summary>\r
4003             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.\r
4004             This is the default member serialization mode.\r
4005             </summary>\r
4006         </member>\r
4007         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">\r
4008             <summary>\r
4009             Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.\r
4010             This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.\r
4011             </summary>\r
4012         </member>\r
4013         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">\r
4014             <summary>\r
4015             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.\r
4016             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>\r
4017             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.\r
4018             </summary>\r
4019         </member>\r
4020         <member name="T:Newtonsoft.Json.ObjectCreationHandling">\r
4021             <summary>\r
4022             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4023             </summary>\r
4024         </member>\r
4025         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">\r
4026             <summary>\r
4027             Reuse existing objects, create new objects when needed.\r
4028             </summary>\r
4029         </member>\r
4030         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">\r
4031             <summary>\r
4032             Only reuse existing objects.\r
4033             </summary>\r
4034         </member>\r
4035         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">\r
4036             <summary>\r
4037             Always create new objects.\r
4038             </summary>\r
4039         </member>\r
4040         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">\r
4041             <summary>\r
4042             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r
4043             </summary>\r
4044         </member>\r
4045         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4046             <summary>\r
4047             Writes the JSON representation of the object.\r
4048             </summary>\r
4049             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4050             <param name="value">The value.</param>\r
4051             <param name="serializer">The calling serializer.</param>\r
4052         </member>\r
4053         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4054             <summary>\r
4055             Reads the JSON representation of the object.\r
4056             </summary>\r
4057             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4058             <param name="objectType">Type of the object.</param>\r
4059             <param name="existingValue">The existing value of object being read.</param>\r
4060             <param name="serializer">The calling serializer.</param>\r
4061             <returns>The object value.</returns>\r
4062         </member>\r
4063         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">\r
4064             <summary>\r
4065             Gets or sets the date time styles used when converting a date to and from JSON.\r
4066             </summary>\r
4067             <value>The date time styles used when converting a date to and from JSON.</value>\r
4068         </member>\r
4069         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">\r
4070             <summary>\r
4071             Gets or sets the date time format used when converting a date to and from JSON.\r
4072             </summary>\r
4073             <value>The date time format used when converting a date to and from JSON.</value>\r
4074         </member>\r
4075         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">\r
4076             <summary>\r
4077             Gets or sets the culture used when converting a date to and from JSON.\r
4078             </summary>\r
4079             <value>The culture used when converting a date to and from JSON.</value>\r
4080         </member>\r
4081         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">\r
4082             <summary>\r
4083             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r
4084             </summary>\r
4085         </member>\r
4086         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4087             <summary>\r
4088             Writes the JSON representation of the object.\r
4089             </summary>\r
4090             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4091             <param name="value">The value.</param>\r
4092             <param name="serializer">The calling serializer.</param>\r
4093         </member>\r
4094         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4095             <summary>\r
4096             Reads the JSON representation of the object.\r
4097             </summary>\r
4098             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4099             <param name="objectType">Type of the object.</param>\r
4100             <param name="existingValue">The existing property value of the JSON that is being converted.</param>\r
4101             <param name="serializer">The calling serializer.</param>\r
4102             <returns>The object value.</returns>\r
4103         </member>\r
4104         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">\r
4105             <summary>\r
4106             Converts XML to and from JSON.\r
4107             </summary>\r
4108         </member>\r
4109         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4110             <summary>\r
4111             Writes the JSON representation of the object.\r
4112             </summary>\r
4113             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4114             <param name="serializer">The calling serializer.</param>\r
4115             <param name="value">The value.</param>\r
4116         </member>\r
4117         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4118             <summary>\r
4119             Reads the JSON representation of the object.\r
4120             </summary>\r
4121             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4122             <param name="objectType">Type of the object.</param>\r
4123             <param name="existingValue">The existing value of object being read.</param>\r
4124             <param name="serializer">The calling serializer.</param>\r
4125             <returns>The object value.</returns>\r
4126         </member>\r
4127         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">\r
4128             <summary>\r
4129             Checks if the attributeName is a namespace attribute.\r
4130             </summary>\r
4131             <param name="attributeName">Attribute name to test.</param>\r
4132             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>\r
4133             <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r
4134         </member>\r
4135         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">\r
4136             <summary>\r
4137             Determines whether this instance can convert the specified value type.\r
4138             </summary>\r
4139             <param name="valueType">Type of the value.</param>\r
4140             <returns>\r
4141                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
4142             </returns>\r
4143         </member>\r
4144         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">\r
4145             <summary>\r
4146             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r
4147             </summary>\r
4148             <value>The name of the deserialize root element.</value>\r
4149         </member>\r
4150         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">\r
4151             <summary>\r
4152             Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r
4153             This attribute helps preserve arrays when converting the written XML back to JSON.\r
4154             </summary>\r
4155             <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r
4156         </member>\r
4157         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">\r
4158             <summary>\r
4159             Gets or sets a value indicating whether to write the root JSON object.\r
4160             </summary>\r
4161             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r
4162         </member>\r
4163         <member name="T:Newtonsoft.Json.JsonTextReader">\r
4164             <summary>\r
4165             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r
4166             </summary>\r
4167         </member>\r
4168         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">\r
4169             <summary>\r
4170             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.\r
4171             </summary>\r
4172             <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>\r
4173         </member>\r
4174         <member name="M:Newtonsoft.Json.JsonTextReader.Read">\r
4175             <summary>\r
4176             Reads the next JSON token from the stream.\r
4177             </summary>\r
4178             <returns>\r
4179             true if the next token was read successfully; false if there are no more tokens to read.\r
4180             </returns>\r
4181         </member>\r
4182         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">\r
4183             <summary>\r
4184             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
4185             </summary>\r
4186             <returns>\r
4187             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r
4188             </returns>\r
4189         </member>\r
4190         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">\r
4191             <summary>\r
4192             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4193             </summary>\r
4194             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4195         </member>\r
4196         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">\r
4197             <summary>\r
4198             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4199             </summary>\r
4200             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4201         </member>\r
4202         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">\r
4203             <summary>\r
4204             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
4205             </summary>\r
4206             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4207         </member>\r
4208         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">\r
4209             <summary>\r
4210             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4211             </summary>\r
4212             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4213         </member>\r
4214         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">\r
4215             <summary>\r
4216             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4217             </summary>\r
4218             <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4219         </member>\r
4220         <member name="M:Newtonsoft.Json.JsonTextReader.Close">\r
4221             <summary>\r
4222             Changes the state to closed. \r
4223             </summary>\r
4224         </member>\r
4225         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">\r
4226             <summary>\r
4227             Gets a value indicating whether the class can return line information.\r
4228             </summary>\r
4229             <returns>\r
4230                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r
4231             </returns>\r
4232         </member>\r
4233         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">\r
4234             <summary>\r
4235             Gets the current line number.\r
4236             </summary>\r
4237             <value>\r
4238             The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r
4239             </value>\r
4240         </member>\r
4241         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">\r
4242             <summary>\r
4243             Gets the current line position.\r
4244             </summary>\r
4245             <value>\r
4246             The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r
4247             </value>\r
4248         </member>\r
4249         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">\r
4250             <summary>\r
4251             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.\r
4252             </summary>\r
4253         </member>\r
4254         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">\r
4255             <summary>\r
4256             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.\r
4257             </summary>\r
4258         </member>\r
4259         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">\r
4260             <summary>\r
4261             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.\r
4262             </summary>\r
4263             <param name="propertyName">Name of the property.</param>\r
4264         </member>\r
4265         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">\r
4266             <summary>\r
4267             Gets or sets the converter used when serializing the property's collection items.\r
4268             </summary>\r
4269             <value>The collection's items converter.</value>\r
4270         </member>\r
4271         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">\r
4272             <summary>\r
4273             The parameter list to use when constructing the JsonConverter described by ItemConverterType.\r
4274             If null, the default constructor is used.\r
4275             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,\r
4276             order, and type of these parameters.\r
4277             </summary>\r
4278             <example>\r
4279             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]\r
4280             </example>\r
4281         </member>\r
4282         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">\r
4283             <summary>\r
4284             Gets or sets the null value handling used when serializing this property.\r
4285             </summary>\r
4286             <value>The null value handling.</value>\r
4287         </member>\r
4288         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">\r
4289             <summary>\r
4290             Gets or sets the default value handling used when serializing this property.\r
4291             </summary>\r
4292             <value>The default value handling.</value>\r
4293         </member>\r
4294         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">\r
4295             <summary>\r
4296             Gets or sets the reference loop handling used when serializing this property.\r
4297             </summary>\r
4298             <value>The reference loop handling.</value>\r
4299         </member>\r
4300         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">\r
4301             <summary>\r
4302             Gets or sets the object creation handling used when deserializing this property.\r
4303             </summary>\r
4304             <value>The object creation handling.</value>\r
4305         </member>\r
4306         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">\r
4307             <summary>\r
4308             Gets or sets the type name handling used when serializing this property.\r
4309             </summary>\r
4310             <value>The type name handling.</value>\r
4311         </member>\r
4312         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">\r
4313             <summary>\r
4314             Gets or sets whether this property's value is serialized as a reference.\r
4315             </summary>\r
4316             <value>Whether this property's value is serialized as a reference.</value>\r
4317         </member>\r
4318         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">\r
4319             <summary>\r
4320             Gets or sets the order of serialization and deserialization of a member.\r
4321             </summary>\r
4322             <value>The numeric order of serialization or deserialization.</value>\r
4323         </member>\r
4324         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">\r
4325             <summary>\r
4326             Gets or sets a value indicating whether this property is required.\r
4327             </summary>\r
4328             <value>\r
4329                 A value indicating whether this property is required.\r
4330             </value>\r
4331         </member>\r
4332         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">\r
4333             <summary>\r
4334             Gets or sets the name of the property.\r
4335             </summary>\r
4336             <value>The name of the property.</value>\r
4337         </member>\r
4338         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">\r
4339             <summary>\r
4340             Gets or sets the the reference loop handling used when serializing the property's collection items.\r
4341             </summary>\r
4342             <value>The collection's items reference loop handling.</value>\r
4343         </member>\r
4344         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">\r
4345             <summary>\r
4346             Gets or sets the the type name handling used when serializing the property's collection items.\r
4347             </summary>\r
4348             <value>The collection's items type name handling.</value>\r
4349         </member>\r
4350         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">\r
4351             <summary>\r
4352             Gets or sets whether this property's collection items are serialized as a reference.\r
4353             </summary>\r
4354             <value>Whether this property's collection items are serialized as a reference.</value>\r
4355         </member>\r
4356         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">\r
4357             <summary>\r
4358             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.\r
4359             </summary>\r
4360         </member>\r
4361         <member name="T:Newtonsoft.Json.JsonTextWriter">\r
4362             <summary>\r
4363             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
4364             </summary>\r
4365         </member>\r
4366         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">\r
4367             <summary>\r
4368             Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. \r
4369             </summary>\r
4370             <param name="textWriter">The <c>TextWriter</c> to write to.</param>\r
4371         </member>\r
4372         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">\r
4373             <summary>\r
4374             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
4375             </summary>\r
4376         </member>\r
4377         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">\r
4378             <summary>\r
4379             Closes this stream and the underlying stream.\r
4380             </summary>\r
4381         </member>\r
4382         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">\r
4383             <summary>\r
4384             Writes the beginning of a JSON object.\r
4385             </summary>\r
4386         </member>\r
4387         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">\r
4388             <summary>\r
4389             Writes the beginning of a JSON array.\r
4390             </summary>\r
4391         </member>\r
4392         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">\r
4393             <summary>\r
4394             Writes the start of a constructor with the given name.\r
4395             </summary>\r
4396             <param name="name">The name of the constructor.</param>\r
4397         </member>\r
4398         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
4399             <summary>\r
4400             Writes the specified end token.\r
4401             </summary>\r
4402             <param name="token">The end token to write.</param>\r
4403         </member>\r
4404         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">\r
4405             <summary>\r
4406             Writes the property name of a name/value pair on a JSON object.\r
4407             </summary>\r
4408             <param name="name">The name of the property.</param>\r
4409         </member>\r
4410         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">\r
4411             <summary>\r
4412             Writes the property name of a name/value pair on a JSON object.\r
4413             </summary>\r
4414             <param name="name">The name of the property.</param>\r
4415             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>\r
4416         </member>\r
4417         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">\r
4418             <summary>\r
4419             Writes indent characters.\r
4420             </summary>\r
4421         </member>\r
4422         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">\r
4423             <summary>\r
4424             Writes the JSON value delimiter.\r
4425             </summary>\r
4426         </member>\r
4427         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">\r
4428             <summary>\r
4429             Writes an indent space.\r
4430             </summary>\r
4431         </member>\r
4432         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">\r
4433             <summary>\r
4434             Writes a <see cref="T:System.Object"/> value.\r
4435             An error will raised if the value cannot be written as a single JSON token.\r
4436             </summary>\r
4437             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
4438         </member>\r
4439         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">\r
4440             <summary>\r
4441             Writes a null value.\r
4442             </summary>\r
4443         </member>\r
4444         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">\r
4445             <summary>\r
4446             Writes an undefined value.\r
4447             </summary>\r
4448         </member>\r
4449         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">\r
4450             <summary>\r
4451             Writes raw JSON.\r
4452             </summary>\r
4453             <param name="json">The raw JSON to write.</param>\r
4454         </member>\r
4455         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">\r
4456             <summary>\r
4457             Writes a <see cref="T:System.String"/> value.\r
4458             </summary>\r
4459             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
4460         </member>\r
4461         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">\r
4462             <summary>\r
4463             Writes a <see cref="T:System.Int32"/> value.\r
4464             </summary>\r
4465             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
4466         </member>\r
4467         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">\r
4468             <summary>\r
4469             Writes a <see cref="T:System.UInt32"/> value.\r
4470             </summary>\r
4471             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
4472         </member>\r
4473         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">\r
4474             <summary>\r
4475             Writes a <see cref="T:System.Int64"/> value.\r
4476             </summary>\r
4477             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
4478         </member>\r
4479         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">\r
4480             <summary>\r
4481             Writes a <see cref="T:System.UInt64"/> value.\r
4482             </summary>\r
4483             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
4484         </member>\r
4485         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">\r
4486             <summary>\r
4487             Writes a <see cref="T:System.Single"/> value.\r
4488             </summary>\r
4489             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
4490         </member>\r
4491         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">\r
4492             <summary>\r
4493             Writes a <see cref="T:System.Nullable`1"/> value.\r
4494             </summary>\r
4495             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
4496         </member>\r
4497         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">\r
4498             <summary>\r
4499             Writes a <see cref="T:System.Double"/> value.\r
4500             </summary>\r
4501             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
4502         </member>\r
4503         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">\r
4504             <summary>\r
4505             Writes a <see cref="T:System.Nullable`1"/> value.\r
4506             </summary>\r
4507             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
4508         </member>\r
4509         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">\r
4510             <summary>\r
4511             Writes a <see cref="T:System.Boolean"/> value.\r
4512             </summary>\r
4513             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
4514         </member>\r
4515         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">\r
4516             <summary>\r
4517             Writes a <see cref="T:System.Int16"/> value.\r
4518             </summary>\r
4519             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
4520         </member>\r
4521         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">\r
4522             <summary>\r
4523             Writes a <see cref="T:System.UInt16"/> value.\r
4524             </summary>\r
4525             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
4526         </member>\r
4527         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">\r
4528             <summary>\r
4529             Writes a <see cref="T:System.Char"/> value.\r
4530             </summary>\r
4531             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
4532         </member>\r
4533         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">\r
4534             <summary>\r
4535             Writes a <see cref="T:System.Byte"/> value.\r
4536             </summary>\r
4537             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
4538         </member>\r
4539         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">\r
4540             <summary>\r
4541             Writes a <see cref="T:System.SByte"/> value.\r
4542             </summary>\r
4543             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
4544         </member>\r
4545         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">\r
4546             <summary>\r
4547             Writes a <see cref="T:System.Decimal"/> value.\r
4548             </summary>\r
4549             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
4550         </member>\r
4551         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">\r
4552             <summary>\r
4553             Writes a <see cref="T:System.DateTime"/> value.\r
4554             </summary>\r
4555             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
4556         </member>\r
4557         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">\r
4558             <summary>\r
4559             Writes a <see cref="T:System.Byte"/>[] value.\r
4560             </summary>\r
4561             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
4562         </member>\r
4563         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">\r
4564             <summary>\r
4565             Writes a <see cref="T:System.DateTimeOffset"/> value.\r
4566             </summary>\r
4567             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>\r
4568         </member>\r
4569         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">\r
4570             <summary>\r
4571             Writes a <see cref="T:System.Guid"/> value.\r
4572             </summary>\r
4573             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
4574         </member>\r
4575         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">\r
4576             <summary>\r
4577             Writes a <see cref="T:System.TimeSpan"/> value.\r
4578             </summary>\r
4579             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
4580         </member>\r
4581         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">\r
4582             <summary>\r
4583             Writes a <see cref="T:System.Uri"/> value.\r
4584             </summary>\r
4585             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
4586         </member>\r
4587         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">\r
4588             <summary>\r
4589             Writes out a comment <code>/*...*/</code> containing the specified text. \r
4590             </summary>\r
4591             <param name="text">Text to place inside the comment.</param>\r
4592         </member>\r
4593         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">\r
4594             <summary>\r
4595             Writes out the given white space.\r
4596             </summary>\r
4597             <param name="ws">The string of white space characters.</param>\r
4598         </member>\r
4599         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">\r
4600             <summary>\r
4601             Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.\r
4602             </summary>\r
4603         </member>\r
4604         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">\r
4605             <summary>\r
4606             Gets or sets which character to use to quote attribute values.\r
4607             </summary>\r
4608         </member>\r
4609         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">\r
4610             <summary>\r
4611             Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.\r
4612             </summary>\r
4613         </member>\r
4614         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">\r
4615             <summary>\r
4616             Gets or sets a value indicating whether object names will be surrounded with quotes.\r
4617             </summary>\r
4618         </member>\r
4619         <member name="T:Newtonsoft.Json.JsonWriterException">\r
4620             <summary>\r
4621             The exception thrown when an error occurs while reading JSON text.\r
4622             </summary>\r
4623         </member>\r
4624         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">\r
4625             <summary>\r
4626             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.\r
4627             </summary>\r
4628         </member>\r
4629         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">\r
4630             <summary>\r
4631             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class\r
4632             with a specified error message.\r
4633             </summary>\r
4634             <param name="message">The error message that explains the reason for the exception.</param>\r
4635         </member>\r
4636         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">\r
4637             <summary>\r
4638             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class\r
4639             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
4640             </summary>\r
4641             <param name="message">The error message that explains the reason for the exception.</param>\r
4642             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r
4643         </member>\r
4644         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
4645             <summary>\r
4646             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.\r
4647             </summary>\r
4648             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
4649             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
4650             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
4651             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
4652         </member>\r
4653         <member name="P:Newtonsoft.Json.JsonWriterException.Path">\r
4654             <summary>\r
4655             Gets the path to the JSON where the error occurred.\r
4656             </summary>\r
4657             <value>The path to the JSON where the error occurred.</value>\r
4658         </member>\r
4659         <member name="T:Newtonsoft.Json.JsonReaderException">\r
4660             <summary>\r
4661             The exception thrown when an error occurs while reading JSON text.\r
4662             </summary>\r
4663         </member>\r
4664         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">\r
4665             <summary>\r
4666             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.\r
4667             </summary>\r
4668         </member>\r
4669         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">\r
4670             <summary>\r
4671             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class\r
4672             with a specified error message.\r
4673             </summary>\r
4674             <param name="message">The error message that explains the reason for the exception.</param>\r
4675         </member>\r
4676         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">\r
4677             <summary>\r
4678             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class\r
4679             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
4680             </summary>\r
4681             <param name="message">The error message that explains the reason for the exception.</param>\r
4682             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r
4683         </member>\r
4684         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
4685             <summary>\r
4686             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.\r
4687             </summary>\r
4688             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
4689             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
4690             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
4691             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
4692         </member>\r
4693         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">\r
4694             <summary>\r
4695             Gets the line number indicating where the error occurred.\r
4696             </summary>\r
4697             <value>The line number indicating where the error occurred.</value>\r
4698         </member>\r
4699         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">\r
4700             <summary>\r
4701             Gets the line position indicating where the error occurred.\r
4702             </summary>\r
4703             <value>The line position indicating where the error occurred.</value>\r
4704         </member>\r
4705         <member name="P:Newtonsoft.Json.JsonReaderException.Path">\r
4706             <summary>\r
4707             Gets the path to the JSON where the error occurred.\r
4708             </summary>\r
4709             <value>The path to the JSON where the error occurred.</value>\r
4710         </member>\r
4711         <member name="T:Newtonsoft.Json.JsonConverterCollection">\r
4712             <summary>\r
4713             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
4714             </summary>\r
4715         </member>\r
4716         <member name="T:Newtonsoft.Json.JsonConvert">\r
4717             <summary>\r
4718             Provides methods for converting between common language runtime types and JSON types.\r
4719             </summary>\r
4720             <example>\r
4721               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />\r
4722             </example>\r
4723         </member>\r
4724         <member name="F:Newtonsoft.Json.JsonConvert.True">\r
4725             <summary>\r
4726             Represents JavaScript's boolean value true as a string. This field is read-only.\r
4727             </summary>\r
4728         </member>\r
4729         <member name="F:Newtonsoft.Json.JsonConvert.False">\r
4730             <summary>\r
4731             Represents JavaScript's boolean value false as a string. This field is read-only.\r
4732             </summary>\r
4733         </member>\r
4734         <member name="F:Newtonsoft.Json.JsonConvert.Null">\r
4735             <summary>\r
4736             Represents JavaScript's null as a string. This field is read-only.\r
4737             </summary>\r
4738         </member>\r
4739         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">\r
4740             <summary>\r
4741             Represents JavaScript's undefined as a string. This field is read-only.\r
4742             </summary>\r
4743         </member>\r
4744         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">\r
4745             <summary>\r
4746             Represents JavaScript's positive infinity as a string. This field is read-only.\r
4747             </summary>\r
4748         </member>\r
4749         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">\r
4750             <summary>\r
4751             Represents JavaScript's negative infinity as a string. This field is read-only.\r
4752             </summary>\r
4753         </member>\r
4754         <member name="F:Newtonsoft.Json.JsonConvert.NaN">\r
4755             <summary>\r
4756             Represents JavaScript's NaN as a string. This field is read-only.\r
4757             </summary>\r
4758         </member>\r
4759         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">\r
4760             <summary>\r
4761             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.\r
4762             </summary>\r
4763             <param name="value">The value to convert.</param>\r
4764             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>\r
4765         </member>\r
4766         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">\r
4767             <summary>\r
4768             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.\r
4769             </summary>\r
4770             <param name="value">The value to convert.</param>\r
4771             <param name="format">The format the date will be converted to.</param>\r
4772             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>\r
4773             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>\r
4774         </member>\r
4775         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">\r
4776             <summary>\r
4777             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.\r
4778             </summary>\r
4779             <param name="value">The value to convert.</param>\r
4780             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>\r
4781         </member>\r
4782         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">\r
4783             <summary>\r
4784             Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.\r
4785             </summary>\r
4786             <param name="value">The value to convert.</param>\r
4787             <param name="format">The format the date will be converted to.</param>\r
4788             <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>\r
4789         </member>\r
4790         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">\r
4791             <summary>\r
4792             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.\r
4793             </summary>\r
4794             <param name="value">The value to convert.</param>\r
4795             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>\r
4796         </member>\r
4797         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">\r
4798             <summary>\r
4799             Converts the <see cref="T:System.Char"/> to its JSON string representation.\r
4800             </summary>\r
4801             <param name="value">The value to convert.</param>\r
4802             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>\r
4803         </member>\r
4804         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">\r
4805             <summary>\r
4806             Converts the <see cref="T:System.Enum"/> to its JSON string representation.\r
4807             </summary>\r
4808             <param name="value">The value to convert.</param>\r
4809             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>\r
4810         </member>\r
4811         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">\r
4812             <summary>\r
4813             Converts the <see cref="T:System.Int32"/> to its JSON string representation.\r
4814             </summary>\r
4815             <param name="value">The value to convert.</param>\r
4816             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>\r
4817         </member>\r
4818         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">\r
4819             <summary>\r
4820             Converts the <see cref="T:System.Int16"/> to its JSON string representation.\r
4821             </summary>\r
4822             <param name="value">The value to convert.</param>\r
4823             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>\r
4824         </member>\r
4825         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">\r
4826             <summary>\r
4827             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.\r
4828             </summary>\r
4829             <param name="value">The value to convert.</param>\r
4830             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>\r
4831         </member>\r
4832         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">\r
4833             <summary>\r
4834             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.\r
4835             </summary>\r
4836             <param name="value">The value to convert.</param>\r
4837             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>\r
4838         </member>\r
4839         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">\r
4840             <summary>\r
4841             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.\r
4842             </summary>\r
4843             <param name="value">The value to convert.</param>\r
4844             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>\r
4845         </member>\r
4846         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">\r
4847             <summary>\r
4848             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.\r
4849             </summary>\r
4850             <param name="value">The value to convert.</param>\r
4851             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>\r
4852         </member>\r
4853         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">\r
4854             <summary>\r
4855             Converts the <see cref="T:System.Single"/> to its JSON string representation.\r
4856             </summary>\r
4857             <param name="value">The value to convert.</param>\r
4858             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>\r
4859         </member>\r
4860         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">\r
4861             <summary>\r
4862             Converts the <see cref="T:System.Double"/> to its JSON string representation.\r
4863             </summary>\r
4864             <param name="value">The value to convert.</param>\r
4865             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>\r
4866         </member>\r
4867         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">\r
4868             <summary>\r
4869             Converts the <see cref="T:System.Byte"/> to its JSON string representation.\r
4870             </summary>\r
4871             <param name="value">The value to convert.</param>\r
4872             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>\r
4873         </member>\r
4874         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">\r
4875             <summary>\r
4876             Converts the <see cref="T:System.SByte"/> to its JSON string representation.\r
4877             </summary>\r
4878             <param name="value">The value to convert.</param>\r
4879             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>\r
4880         </member>\r
4881         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">\r
4882             <summary>\r
4883             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.\r
4884             </summary>\r
4885             <param name="value">The value to convert.</param>\r
4886             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>\r
4887         </member>\r
4888         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">\r
4889             <summary>\r
4890             Converts the <see cref="T:System.Guid"/> to its JSON string representation.\r
4891             </summary>\r
4892             <param name="value">The value to convert.</param>\r
4893             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>\r
4894         </member>\r
4895         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">\r
4896             <summary>\r
4897             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.\r
4898             </summary>\r
4899             <param name="value">The value to convert.</param>\r
4900             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>\r
4901         </member>\r
4902         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">\r
4903             <summary>\r
4904             Converts the <see cref="T:System.Uri"/> to its JSON string representation.\r
4905             </summary>\r
4906             <param name="value">The value to convert.</param>\r
4907             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>\r
4908         </member>\r
4909         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">\r
4910             <summary>\r
4911             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
4912             </summary>\r
4913             <param name="value">The value to convert.</param>\r
4914             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
4915         </member>\r
4916         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">\r
4917             <summary>\r
4918             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
4919             </summary>\r
4920             <param name="value">The value to convert.</param>\r
4921             <param name="delimiter">The string delimiter character.</param>\r
4922             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
4923         </member>\r
4924         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">\r
4925             <summary>\r
4926             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
4927             </summary>\r
4928             <param name="value">The value to convert.</param>\r
4929             <param name="delimiter">The string delimiter character.</param>\r
4930             <param name="stringEscapeHandling">The string escape handling.</param>\r
4931             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
4932         </member>\r
4933         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">\r
4934             <summary>\r
4935             Converts the <see cref="T:System.Object"/> to its JSON string representation.\r
4936             </summary>\r
4937             <param name="value">The value to convert.</param>\r
4938             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>\r
4939         </member>\r
4940         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">\r
4941             <summary>\r
4942             Serializes the specified object to a JSON string.\r
4943             </summary>\r
4944             <param name="value">The object to serialize.</param>\r
4945             <returns>A JSON string representation of the object.</returns>\r
4946         </member>\r
4947         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">\r
4948             <summary>\r
4949             Serializes the specified object to a JSON string using formatting.\r
4950             </summary>\r
4951             <param name="value">The object to serialize.</param>\r
4952             <param name="formatting">Indicates how the output is formatted.</param>\r
4953             <returns>\r
4954             A JSON string representation of the object.\r
4955             </returns>\r
4956         </member>\r
4957         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">\r
4958             <summary>\r
4959             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
4960             </summary>\r
4961             <param name="value">The object to serialize.</param>\r
4962             <param name="converters">A collection converters used while serializing.</param>\r
4963             <returns>A JSON string representation of the object.</returns>\r
4964         </member>\r
4965         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">\r
4966             <summary>\r
4967             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
4968             </summary>\r
4969             <param name="value">The object to serialize.</param>\r
4970             <param name="formatting">Indicates how the output is formatted.</param>\r
4971             <param name="converters">A collection converters used while serializing.</param>\r
4972             <returns>A JSON string representation of the object.</returns>\r
4973         </member>\r
4974         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">\r
4975             <summary>\r
4976             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
4977             </summary>\r
4978             <param name="value">The object to serialize.</param>\r
4979             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
4980             If this is null, default serialization settings will be used.</param>\r
4981             <returns>\r
4982             A JSON string representation of the object.\r
4983             </returns>\r
4984         </member>\r
4985         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">\r
4986             <summary>\r
4987             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
4988             </summary>\r
4989             <param name="value">The object to serialize.</param>\r
4990             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
4991             If this is null, default serialization settings will be used.</param>\r
4992             <param name="type">\r
4993             The type of the value being serialized.\r
4994             This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.\r
4995             Specifing the type is optional.\r
4996             </param>\r
4997             <returns>\r
4998             A JSON string representation of the object.\r
4999             </returns>\r
5000         </member>\r
5001         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">\r
5002             <summary>\r
5003             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5004             </summary>\r
5005             <param name="value">The object to serialize.</param>\r
5006             <param name="formatting">Indicates how the output is formatted.</param>\r
5007             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5008             If this is null, default serialization settings will be used.</param>\r
5009             <returns>\r
5010             A JSON string representation of the object.\r
5011             </returns>\r
5012         </member>\r
5013         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">\r
5014             <summary>\r
5015             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5016             </summary>\r
5017             <param name="value">The object to serialize.</param>\r
5018             <param name="formatting">Indicates how the output is formatted.</param>\r
5019             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5020             If this is null, default serialization settings will be used.</param>\r
5021             <param name="type">\r
5022             The type of the value being serialized.\r
5023             This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.\r
5024             Specifing the type is optional.\r
5025             </param>\r
5026             <returns>\r
5027             A JSON string representation of the object.\r
5028             </returns>\r
5029         </member>\r
5030         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">\r
5031             <summary>\r
5032             Deserializes the JSON to a .NET object.\r
5033             </summary>\r
5034             <param name="value">The JSON to deserialize.</param>\r
5035             <returns>The deserialized object from the JSON string.</returns>\r
5036         </member>\r
5037         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">\r
5038             <summary>\r
5039             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5040             </summary>\r
5041             <param name="value">The JSON to deserialize.</param>\r
5042             <param name="settings">\r
5043             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5044             If this is null, default serialization settings will be used.\r
5045             </param>\r
5046             <returns>The deserialized object from the JSON string.</returns>\r
5047         </member>\r
5048         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">\r
5049             <summary>\r
5050             Deserializes the JSON to the specified .NET type.\r
5051             </summary>\r
5052             <param name="value">The JSON to deserialize.</param>\r
5053             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
5054             <returns>The deserialized object from the JSON string.</returns>\r
5055         </member>\r
5056         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">\r
5057             <summary>\r
5058             Deserializes the JSON to the specified .NET type.\r
5059             </summary>\r
5060             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5061             <param name="value">The JSON to deserialize.</param>\r
5062             <returns>The deserialized object from the JSON string.</returns>\r
5063         </member>\r
5064         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">\r
5065             <summary>\r
5066             Deserializes the JSON to the given anonymous type.\r
5067             </summary>\r
5068             <typeparam name="T">\r
5069             The anonymous type to deserialize to. This can't be specified\r
5070             traditionally and must be infered from the anonymous type passed\r
5071             as a parameter.\r
5072             </typeparam>\r
5073             <param name="value">The JSON to deserialize.</param>\r
5074             <param name="anonymousTypeObject">The anonymous type object.</param>\r
5075             <returns>The deserialized anonymous type from the JSON string.</returns>\r
5076         </member>\r
5077         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">\r
5078             <summary>\r
5079             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5080             </summary>\r
5081             <typeparam name="T">\r
5082             The anonymous type to deserialize to. This can't be specified\r
5083             traditionally and must be infered from the anonymous type passed\r
5084             as a parameter.\r
5085             </typeparam>\r
5086             <param name="value">The JSON to deserialize.</param>\r
5087             <param name="anonymousTypeObject">The anonymous type object.</param>\r
5088             <param name="settings">\r
5089             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5090             If this is null, default serialization settings will be used.\r
5091             </param>\r
5092             <returns>The deserialized anonymous type from the JSON string.</returns>\r
5093         </member>\r
5094         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">\r
5095             <summary>\r
5096             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5097             </summary>\r
5098             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5099             <param name="value">The JSON to deserialize.</param>\r
5100             <param name="converters">Converters to use while deserializing.</param>\r
5101             <returns>The deserialized object from the JSON string.</returns>\r
5102         </member>\r
5103         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">\r
5104             <summary>\r
5105             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5106             </summary>\r
5107             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5108             <param name="value">The object to deserialize.</param>\r
5109             <param name="settings">\r
5110             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5111             If this is null, default serialization settings will be used.\r
5112             </param>\r
5113             <returns>The deserialized object from the JSON string.</returns>\r
5114         </member>\r
5115         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">\r
5116             <summary>\r
5117             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5118             </summary>\r
5119             <param name="value">The JSON to deserialize.</param>\r
5120             <param name="type">The type of the object to deserialize.</param>\r
5121             <param name="converters">Converters to use while deserializing.</param>\r
5122             <returns>The deserialized object from the JSON string.</returns>\r
5123         </member>\r
5124         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">\r
5125             <summary>\r
5126             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5127             </summary>\r
5128             <param name="value">The JSON to deserialize.</param>\r
5129             <param name="type">The type of the object to deserialize to.</param>\r
5130             <param name="settings">\r
5131             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5132             If this is null, default serialization settings will be used.\r
5133             </param>\r
5134             <returns>The deserialized object from the JSON string.</returns>\r
5135         </member>\r
5136         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">\r
5137             <summary>\r
5138             Populates the object with values from the JSON string.\r
5139             </summary>\r
5140             <param name="value">The JSON to populate values from.</param>\r
5141             <param name="target">The target object to populate values onto.</param>\r
5142         </member>\r
5143         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">\r
5144             <summary>\r
5145             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5146             </summary>\r
5147             <param name="value">The JSON to populate values from.</param>\r
5148             <param name="target">The target object to populate values onto.</param>\r
5149             <param name="settings">\r
5150             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5151             If this is null, default serialization settings will be used.\r
5152             </param>\r
5153         </member>\r
5154         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">\r
5155             <summary>\r
5156             Serializes the XML node to a JSON string.\r
5157             </summary>\r
5158             <param name="node">The node to serialize.</param>\r
5159             <returns>A JSON string of the XmlNode.</returns>\r
5160         </member>\r
5161         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">\r
5162             <summary>\r
5163             Serializes the XML node to a JSON string using formatting.\r
5164             </summary>\r
5165             <param name="node">The node to serialize.</param>\r
5166             <param name="formatting">Indicates how the output is formatted.</param>\r
5167             <returns>A JSON string of the XmlNode.</returns>\r
5168         </member>\r
5169         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">\r
5170             <summary>\r
5171             Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.\r
5172             </summary>\r
5173             <param name="node">The node to serialize.</param>\r
5174             <param name="formatting">Indicates how the output is formatted.</param>\r
5175             <param name="omitRootObject">Omits writing the root object.</param>\r
5176             <returns>A JSON string of the XmlNode.</returns>\r
5177         </member>\r
5178         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">\r
5179             <summary>\r
5180             Deserializes the XmlNode from a JSON string.\r
5181             </summary>\r
5182             <param name="value">The JSON string.</param>\r
5183             <returns>The deserialized XmlNode</returns>\r
5184         </member>\r
5185         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">\r
5186             <summary>\r
5187             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.\r
5188             </summary>\r
5189             <param name="value">The JSON string.</param>\r
5190             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
5191             <returns>The deserialized XmlNode</returns>\r
5192         </member>\r
5193         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">\r
5194             <summary>\r
5195             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>\r
5196             and writes a .NET array attribute for collections.\r
5197             </summary>\r
5198             <param name="value">The JSON string.</param>\r
5199             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
5200             <param name="writeArrayAttribute">\r
5201             A flag to indicate whether to write the Json.NET array attribute.\r
5202             This attribute helps preserve arrays when converting the written XML back to JSON.\r
5203             </param>\r
5204             <returns>The deserialized XmlNode</returns>\r
5205         </member>\r
5206         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">\r
5207             <summary>\r
5208             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.\r
5209             </summary>\r
5210             <param name="node">The node to convert to JSON.</param>\r
5211             <returns>A JSON string of the XNode.</returns>\r
5212         </member>\r
5213         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">\r
5214             <summary>\r
5215             Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.\r
5216             </summary>\r
5217             <param name="node">The node to convert to JSON.</param>\r
5218             <param name="formatting">Indicates how the output is formatted.</param>\r
5219             <returns>A JSON string of the XNode.</returns>\r
5220         </member>\r
5221         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">\r
5222             <summary>\r
5223             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>.\r
5224             </summary>\r
5225             <param name="node">The node to serialize.</param>\r
5226             <param name="formatting">Indicates how the output is formatted.</param>\r
5227             <param name="omitRootObject">Omits writing the root object.</param>\r
5228             <returns>A JSON string of the XNode.</returns>\r
5229         </member>\r
5230         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">\r
5231             <summary>\r
5232             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.\r
5233             </summary>\r
5234             <param name="value">The JSON string.</param>\r
5235             <returns>The deserialized XNode</returns>\r
5236         </member>\r
5237         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">\r
5238             <summary>\r
5239             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.\r
5240             </summary>\r
5241             <param name="value">The JSON string.</param>\r
5242             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
5243             <returns>The deserialized XNode</returns>\r
5244         </member>\r
5245         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">\r
5246             <summary>\r
5247             Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>\r
5248             and writes a .NET array attribute for collections.\r
5249             </summary>\r
5250             <param name="value">The JSON string.</param>\r
5251             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
5252             <param name="writeArrayAttribute">\r
5253             A flag to indicate whether to write the Json.NET array attribute.\r
5254             This attribute helps preserve arrays when converting the written XML back to JSON.\r
5255             </param>\r
5256             <returns>The deserialized XNode</returns>\r
5257         </member>\r
5258         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">\r
5259             <summary>\r
5260             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5261             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,\r
5262             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"/>.\r
5263             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with\r
5264             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.\r
5265             </summary>\r
5266         </member>\r
5267         <member name="T:Newtonsoft.Json.JsonSerializationException">\r
5268             <summary>\r
5269             The exception thrown when an error occurs during JSON serialization or deserialization.\r
5270             </summary>\r
5271         </member>\r
5272         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">\r
5273             <summary>\r
5274             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.\r
5275             </summary>\r
5276         </member>\r
5277         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">\r
5278             <summary>\r
5279             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class\r
5280             with a specified error message.\r
5281             </summary>\r
5282             <param name="message">The error message that explains the reason for the exception.</param>\r
5283         </member>\r
5284         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">\r
5285             <summary>\r
5286             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class\r
5287             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
5288             </summary>\r
5289             <param name="message">The error message that explains the reason for the exception.</param>\r
5290             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r
5291         </member>\r
5292         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
5293             <summary>\r
5294             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.\r
5295             </summary>\r
5296             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
5297             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
5298             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
5299             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
5300         </member>\r
5301         <member name="T:Newtonsoft.Json.JsonSerializer">\r
5302             <summary>\r
5303             Serializes and deserializes objects into and from the JSON format.\r
5304             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.\r
5305             </summary>\r
5306         </member>\r
5307         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">\r
5308             <summary>\r
5309             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.\r
5310             </summary>\r
5311         </member>\r
5312         <member name="M:Newtonsoft.Json.JsonSerializer.Create">\r
5313             <summary>\r
5314             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
5315             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
5316             </summary>\r
5317             <returns>\r
5318             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
5319             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
5320             </returns>\r
5321         </member>\r
5322         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">\r
5323             <summary>\r
5324             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5325             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
5326             </summary>\r
5327             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>\r
5328             <returns>\r
5329             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5330             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
5331             </returns>\r
5332         </member>\r
5333         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">\r
5334             <summary>\r
5335             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
5336             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
5337             </summary>\r
5338             <returns>\r
5339             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
5340             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
5341             </returns>\r
5342         </member>\r
5343         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">\r
5344             <summary>\r
5345             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5346             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
5347             </summary>\r
5348             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>\r
5349             <returns>\r
5350             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5351             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
5352             </returns>\r
5353         </member>\r
5354         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">\r
5355             <summary>\r
5356             Populates the JSON values onto the target object.\r
5357             </summary>\r
5358             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>\r
5359             <param name="target">The target object to populate values onto.</param>\r
5360         </member>\r
5361         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">\r
5362             <summary>\r
5363             Populates the JSON values onto the target object.\r
5364             </summary>\r
5365             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>\r
5366             <param name="target">The target object to populate values onto.</param>\r
5367         </member>\r
5368         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">\r
5369             <summary>\r
5370             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
5371             </summary>\r
5372             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>\r
5373             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>\r
5374         </member>\r
5375         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">\r
5376             <summary>\r
5377             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>\r
5378             into an instance of the specified type.\r
5379             </summary>\r
5380             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>\r
5381             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
5382             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>\r
5383         </member>\r
5384         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">\r
5385             <summary>\r
5386             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>\r
5387             into an instance of the specified type.\r
5388             </summary>\r
5389             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>\r
5390             <typeparam name="T">The type of the object to deserialize.</typeparam>\r
5391             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>\r
5392         </member>\r
5393         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">\r
5394             <summary>\r
5395             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>\r
5396             into an instance of the specified type.\r
5397             </summary>\r
5398             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>\r
5399             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
5400             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>\r
5401         </member>\r
5402         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">\r
5403             <summary>\r
5404             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
5405             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
5406             </summary>\r
5407             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>\r
5408             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
5409         </member>\r
5410         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">\r
5411             <summary>\r
5412             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
5413             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
5414             </summary>\r
5415             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>\r
5416             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
5417             <param name="objectType">\r
5418             The type of the value being serialized.\r
5419             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.\r
5420             Specifing the type is optional.\r
5421             </param>\r
5422         </member>\r
5423         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">\r
5424             <summary>\r
5425             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
5426             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
5427             </summary>\r
5428             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>\r
5429             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
5430             <param name="objectType">\r
5431             The type of the value being serialized.\r
5432             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.\r
5433             Specifing the type is optional.\r
5434             </param>\r
5435         </member>\r
5436         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">\r
5437             <summary>\r
5438             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
5439             to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. \r
5440             </summary>\r
5441             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>\r
5442             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
5443         </member>\r
5444         <member name="E:Newtonsoft.Json.JsonSerializer.Error">\r
5445             <summary>\r
5446             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.\r
5447             </summary>\r
5448         </member>\r
5449         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">\r
5450             <summary>\r
5451             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
5452             </summary>\r
5453         </member>\r
5454         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">\r
5455             <summary>\r
5456             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.\r
5457             </summary>\r
5458         </member>\r
5459         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">\r
5460             <summary>\r
5461             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.\r
5462             </summary>\r
5463             <value>The trace writer.</value>\r
5464         </member>\r
5465         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">\r
5466             <summary>\r
5467             Gets or sets the equality comparer used by the serializer when comparing references.\r
5468             </summary>\r
5469             <value>The equality comparer.</value>\r
5470         </member>\r
5471         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">\r
5472             <summary>\r
5473             Gets or sets how type name writing and reading is handled by the serializer.\r
5474             </summary>\r
5475         </member>\r
5476         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">\r
5477             <summary>\r
5478             Gets or sets how a type name assembly is written and resolved by the serializer.\r
5479             </summary>\r
5480             <value>The type name assembly format.</value>\r
5481         </member>\r
5482         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">\r
5483             <summary>\r
5484             Gets or sets how object references are preserved by the serializer.\r
5485             </summary>\r
5486         </member>\r
5487         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">\r
5488             <summary>\r
5489             Get or set how reference loops (e.g. a class referencing itself) is handled.\r
5490             </summary>\r
5491         </member>\r
5492         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">\r
5493             <summary>\r
5494             Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r
5495             </summary>\r
5496         </member>\r
5497         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">\r
5498             <summary>\r
5499             Get or set how null values are handled during serialization and deserialization.\r
5500             </summary>\r
5501         </member>\r
5502         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">\r
5503             <summary>\r
5504             Get or set how null default are handled during serialization and deserialization.\r
5505             </summary>\r
5506         </member>\r
5507         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">\r
5508             <summary>\r
5509             Gets or sets how objects are created during deserialization.\r
5510             </summary>\r
5511             <value>The object creation handling.</value>\r
5512         </member>\r
5513         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">\r
5514             <summary>\r
5515             Gets or sets how constructors are used during deserialization.\r
5516             </summary>\r
5517             <value>The constructor handling.</value>\r
5518         </member>\r
5519         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">\r
5520             <summary>\r
5521             Gets or sets how metadata properties are used during deserialization.\r
5522             </summary>\r
5523             <value>The metadata properties handling.</value>\r
5524         </member>\r
5525         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">\r
5526             <summary>\r
5527             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.\r
5528             </summary>\r
5529             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>\r
5530         </member>\r
5531         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">\r
5532             <summary>\r
5533             Gets or sets the contract resolver used by the serializer when\r
5534             serializing .NET objects to JSON and vice versa.\r
5535             </summary>\r
5536         </member>\r
5537         <member name="P:Newtonsoft.Json.JsonSerializer.Context">\r
5538             <summary>\r
5539             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.\r
5540             </summary>\r
5541             <value>The context.</value>\r
5542         </member>\r
5543         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">\r
5544             <summary>\r
5545             Indicates how JSON text output is formatted.\r
5546             </summary>\r
5547         </member>\r
5548         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">\r
5549             <summary>\r
5550             Get or set how dates are written to JSON text.\r
5551             </summary>\r
5552         </member>\r
5553         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">\r
5554             <summary>\r
5555             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.\r
5556             </summary>\r
5557         </member>\r
5558         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">\r
5559             <summary>\r
5560             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
5561             </summary>\r
5562         </member>\r
5563         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">\r
5564             <summary>\r
5565             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
5566             </summary>\r
5567         </member>\r
5568         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">\r
5569             <summary>\r
5570             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
5571             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
5572             are written as JSON text.\r
5573             </summary>\r
5574         </member>\r
5575         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">\r
5576             <summary>\r
5577             Get or set how strings are escaped when writing JSON text.\r
5578             </summary>\r
5579         </member>\r
5580         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">\r
5581             <summary>\r
5582             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text, and the expected date format when reading JSON text.\r
5583             </summary>\r
5584         </member>\r
5585         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">\r
5586             <summary>\r
5587             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
5588             </summary>\r
5589         </member>\r
5590         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">\r
5591             <summary>\r
5592             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
5593             </summary>\r
5594         </member>\r
5595         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">\r
5596             <summary>\r
5597             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r
5598             </summary>\r
5599             <value>\r
5600                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r
5601             </value>\r
5602         </member>\r
5603         <member name="T:Newtonsoft.Json.Linq.Extensions">\r
5604             <summary>\r
5605             Contains the LINQ to JSON extension methods.\r
5606             </summary>\r
5607         </member>\r
5608         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">\r
5609             <summary>\r
5610             Returns a collection of tokens that contains the ancestors of every token in the source collection.\r
5611             </summary>\r
5612             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>\r
5613             <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>\r
5614             <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>\r
5615         </member>\r
5616         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">\r
5617             <summary>\r
5618             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.\r
5619             </summary>\r
5620             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>\r
5621             <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>\r
5622             <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>\r
5623         </member>\r
5624         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">\r
5625             <summary>\r
5626             Returns a collection of tokens that contains the descendants of every token in the source collection.\r
5627             </summary>\r
5628             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>\r
5629             <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>\r
5630             <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>\r
5631         </member>\r
5632         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">\r
5633             <summary>\r
5634             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.\r
5635             </summary>\r
5636             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>\r
5637             <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>\r
5638             <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>\r
5639         </member>\r
5640         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">\r
5641             <summary>\r
5642             Returns a collection of child properties of every object in the source collection.\r
5643             </summary>\r
5644             <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>\r
5645             <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>\r
5646         </member>\r
5647         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">\r
5648             <summary>\r
5649             Returns a collection of child values of every object in the source collection with the given key.\r
5650             </summary>\r
5651             <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>\r
5652             <param name="key">The token key.</param>\r
5653             <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>\r
5654         </member>\r
5655         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
5656             <summary>\r
5657             Returns a collection of child values of every object in the source collection.\r
5658             </summary>\r
5659             <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>\r
5660             <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>\r
5661         </member>\r
5662         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">\r
5663             <summary>\r
5664             Returns a collection of converted child values of every object in the source collection with the given key.\r
5665             </summary>\r
5666             <typeparam name="U">The type to convert the values to.</typeparam>\r
5667             <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>\r
5668             <param name="key">The token key.</param>\r
5669             <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>\r
5670         </member>\r
5671         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
5672             <summary>\r
5673             Returns a collection of converted child values of every object in the source collection.\r
5674             </summary>\r
5675             <typeparam name="U">The type to convert the values to.</typeparam>\r
5676             <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>\r
5677             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>\r
5678         </member>\r
5679         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
5680             <summary>\r
5681             Converts the value.\r
5682             </summary>\r
5683             <typeparam name="U">The type to convert the value to.</typeparam>\r
5684             <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>\r
5685             <returns>A converted value.</returns>\r
5686         </member>\r
5687         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">\r
5688             <summary>\r
5689             Converts the value.\r
5690             </summary>\r
5691             <typeparam name="T">The source collection type.</typeparam>\r
5692             <typeparam name="U">The type to convert the value to.</typeparam>\r
5693             <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>\r
5694             <returns>A converted value.</returns>\r
5695         </member>\r
5696         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">\r
5697             <summary>\r
5698             Returns a collection of child tokens of every array in the source collection.\r
5699             </summary>\r
5700             <typeparam name="T">The source collection type.</typeparam>\r
5701             <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>\r
5702             <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>\r
5703         </member>\r
5704         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">\r
5705             <summary>\r
5706             Returns a collection of converted child tokens of every array in the source collection.\r
5707             </summary>\r
5708             <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>\r
5709             <typeparam name="U">The type to convert the values to.</typeparam>\r
5710             <typeparam name="T">The source collection type.</typeparam>\r
5711             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>\r
5712         </member>\r
5713         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
5714             <summary>\r
5715             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.\r
5716             </summary>\r
5717             <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>\r
5718             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>\r
5719         </member>\r
5720         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">\r
5721             <summary>\r
5722             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.\r
5723             </summary>\r
5724             <typeparam name="T">The source collection type.</typeparam>\r
5725             <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>\r
5726             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>\r
5727         </member>\r
5728         <member name="T:Newtonsoft.Json.Linq.JConstructor">\r
5729             <summary>\r
5730             Represents a JSON constructor.\r
5731             </summary>\r
5732         </member>\r
5733         <member name="T:Newtonsoft.Json.Linq.JContainer">\r
5734             <summary>\r
5735             Represents a token that can contain other tokens.\r
5736             </summary>\r
5737         </member>\r
5738         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">\r
5739             <summary>\r
5740             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.\r
5741             </summary>\r
5742             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>\r
5743         </member>\r
5744         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">\r
5745             <summary>\r
5746             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.\r
5747             </summary>\r
5748             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>\r
5749         </member>\r
5750         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">\r
5751             <summary>\r
5752             Returns a collection of the child tokens of this token, in document order.\r
5753             </summary>\r
5754             <returns>\r
5755             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.\r
5756             </returns>\r
5757         </member>\r
5758         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">\r
5759             <summary>\r
5760             Returns a collection of the child values of this token, in document order.\r
5761             </summary>\r
5762             <typeparam name="T">The type to convert the values to.</typeparam>\r
5763             <returns>\r
5764             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.\r
5765             </returns>\r
5766         </member>\r
5767         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">\r
5768             <summary>\r
5769             Returns a collection of the descendant tokens for this token in document order.\r
5770             </summary>\r
5771             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
5772         </member>\r
5773         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">\r
5774             <summary>\r
5775             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.\r
5776             </summary>\r
5777             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
5778         </member>\r
5779         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">\r
5780             <summary>\r
5781             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5782             </summary>\r
5783             <param name="content">The content to be added.</param>\r
5784         </member>\r
5785         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">\r
5786             <summary>\r
5787             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5788             </summary>\r
5789             <param name="content">The content to be added.</param>\r
5790         </member>\r
5791         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">\r
5792             <summary>\r
5793             Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5794             </summary>\r
5795             <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>\r
5796         </member>\r
5797         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">\r
5798             <summary>\r
5799             Replaces the children nodes of this token with the specified content.\r
5800             </summary>\r
5801             <param name="content">The content.</param>\r
5802         </member>\r
5803         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">\r
5804             <summary>\r
5805             Removes the child nodes from this token.\r
5806             </summary>\r
5807         </member>\r
5808         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">\r
5809             <summary>\r
5810             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5811             </summary>\r
5812             <param name="content">The content to be merged.</param>\r
5813         </member>\r
5814         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">\r
5815             <summary>\r
5816             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.\r
5817             </summary>\r
5818             <param name="content">The content to be merged.</param>\r
5819             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>\r
5820         </member>\r
5821         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">\r
5822             <summary>\r
5823             Occurs when the list changes or an item in the list changes.\r
5824             </summary>\r
5825         </member>\r
5826         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">\r
5827             <summary>\r
5828             Occurs before an item is added to the collection.\r
5829             </summary>\r
5830         </member>\r
5831         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">\r
5832             <summary>\r
5833             Gets the container's children tokens.\r
5834             </summary>\r
5835             <value>The container's children tokens.</value>\r
5836         </member>\r
5837         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">\r
5838             <summary>\r
5839             Gets a value indicating whether this token has child tokens.\r
5840             </summary>\r
5841             <value>\r
5842                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
5843             </value>\r
5844         </member>\r
5845         <member name="P:Newtonsoft.Json.Linq.JContainer.First">\r
5846             <summary>\r
5847             Get the first child token of this token.\r
5848             </summary>\r
5849             <value>\r
5850             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5851             </value>\r
5852         </member>\r
5853         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">\r
5854             <summary>\r
5855             Get the last child token of this token.\r
5856             </summary>\r
5857             <value>\r
5858             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5859             </value>\r
5860         </member>\r
5861         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">\r
5862             <summary>\r
5863             Gets the count of child JSON tokens.\r
5864             </summary>\r
5865             <value>The count of child JSON tokens</value>\r
5866         </member>\r
5867         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">\r
5868             <summary>\r
5869             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.\r
5870             </summary>\r
5871         </member>\r
5872         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">\r
5873             <summary>\r
5874             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.\r
5875             </summary>\r
5876             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>\r
5877         </member>\r
5878         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">\r
5879             <summary>\r
5880             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.\r
5881             </summary>\r
5882             <param name="name">The constructor name.</param>\r
5883             <param name="content">The contents of the constructor.</param>\r
5884         </member>\r
5885         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">\r
5886             <summary>\r
5887             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.\r
5888             </summary>\r
5889             <param name="name">The constructor name.</param>\r
5890             <param name="content">The contents of the constructor.</param>\r
5891         </member>\r
5892         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">\r
5893             <summary>\r
5894             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.\r
5895             </summary>\r
5896             <param name="name">The constructor name.</param>\r
5897         </member>\r
5898         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
5899             <summary>\r
5900             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
5901             </summary>\r
5902             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
5903             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
5904         </member>\r
5905         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">\r
5906             <summary>\r
5907             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
5908             </summary>\r
5909             <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>\r
5910             <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>\r
5911         </member>\r
5912         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">\r
5913             <summary>\r
5914             Gets the container's children tokens.\r
5915             </summary>\r
5916             <value>The container's children tokens.</value>\r
5917         </member>\r
5918         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">\r
5919             <summary>\r
5920             Gets or sets the name of this constructor.\r
5921             </summary>\r
5922             <value>The constructor name.</value>\r
5923         </member>\r
5924         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">\r
5925             <summary>\r
5926             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
5927             </summary>\r
5928             <value>The type.</value>\r
5929         </member>\r
5930         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">\r
5931             <summary>\r
5932             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
5933             </summary>\r
5934             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
5935         </member>\r
5936         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">\r
5937             <summary>\r
5938             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
5939             </summary>\r
5940             <typeparam name="T">The type of token</typeparam>\r
5941         </member>\r
5942         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">\r
5943             <summary>\r
5944             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
5945             </summary>\r
5946         </member>\r
5947         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">\r
5948             <summary>\r
5949             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.\r
5950             </summary>\r
5951             <param name="enumerable">The enumerable.</param>\r
5952         </member>\r
5953         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">\r
5954             <summary>\r
5955             Returns an enumerator that iterates through the collection.\r
5956             </summary>\r
5957             <returns>\r
5958             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.\r
5959             </returns>\r
5960         </member>\r
5961         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">\r
5962             <summary>\r
5963             Returns an enumerator that iterates through a collection.\r
5964             </summary>\r
5965             <returns>\r
5966             An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.\r
5967             </returns>\r
5968         </member>\r
5969         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">\r
5970             <summary>\r
5971             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.\r
5972             </summary>\r
5973             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>\r
5974             <returns>\r
5975                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.\r
5976             </returns>\r
5977         </member>\r
5978         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">\r
5979             <summary>\r
5980             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.\r
5981             </summary>\r
5982             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>\r
5983             <returns>\r
5984                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.\r
5985             </returns>\r
5986         </member>\r
5987         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">\r
5988             <summary>\r
5989             Returns a hash code for this instance.\r
5990             </summary>\r
5991             <returns>\r
5992             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r
5993             </returns>\r
5994         </member>\r
5995         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">\r
5996             <summary>\r
5997             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.\r
5998             </summary>\r
5999             <value></value>\r
6000         </member>\r
6001         <member name="T:Newtonsoft.Json.Linq.JObject">\r
6002             <summary>\r
6003             Represents a JSON object.\r
6004             </summary>\r
6005             <example>\r
6006               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />\r
6007             </example>\r
6008         </member>\r
6009         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">\r
6010             <summary>\r
6011             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.\r
6012             </summary>\r
6013         </member>\r
6014         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">\r
6015             <summary>\r
6016             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.\r
6017             </summary>\r
6018             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>\r
6019         </member>\r
6020         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">\r
6021             <summary>\r
6022             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.\r
6023             </summary>\r
6024             <param name="content">The contents of the object.</param>\r
6025         </member>\r
6026         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">\r
6027             <summary>\r
6028             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.\r
6029             </summary>\r
6030             <param name="content">The contents of the object.</param>\r
6031         </member>\r
6032         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">\r
6033             <summary>\r
6034             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.\r
6035             </summary>\r
6036             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>\r
6037         </member>\r
6038         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">\r
6039             <summary>\r
6040             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.\r
6041             </summary>\r
6042             <param name="name">The property name.</param>\r
6043             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>\r
6044         </member>\r
6045         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">\r
6046             <summary>\r
6047             Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.\r
6048             </summary>\r
6049             <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>\r
6050         </member>\r
6051         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">\r
6052             <summary>\r
6053             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
6054             </summary>\r
6055             <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>\r
6056             <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>\r
6057         </member>\r
6058         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">\r
6059             <summary>\r
6060             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.\r
6061             </summary>\r
6062             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
6063             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>\r
6064             <example>\r
6065               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>\r
6066             </example>\r
6067         </member>\r
6068         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">\r
6069             <summary>\r
6070             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.\r
6071             </summary>\r
6072             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>\r
6073             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>\r
6074         </member>\r
6075         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
6076             <summary>\r
6077             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.\r
6078             </summary>\r
6079             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>\r
6080             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>\r
6081             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>\r
6082         </member>\r
6083         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
6084             <summary>\r
6085             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
6086             </summary>\r
6087             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
6088             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
6089         </member>\r
6090         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">\r
6091             <summary>\r
6092             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6093             </summary>\r
6094             <param name="propertyName">Name of the property.</param>\r
6095             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>\r
6096         </member>\r
6097         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">\r
6098             <summary>\r
6099             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6100             The exact property name will be searched for first and if no matching property is found then\r
6101             the <see cref="T:System.StringComparison"/> will be used to match a property.\r
6102             </summary>\r
6103             <param name="propertyName">Name of the property.</param>\r
6104             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>\r
6105             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>\r
6106         </member>\r
6107         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">\r
6108             <summary>\r
6109             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6110             The exact property name will be searched for first and if no matching property is found then\r
6111             the <see cref="T:System.StringComparison"/> will be used to match a property.\r
6112             </summary>\r
6113             <param name="propertyName">Name of the property.</param>\r
6114             <param name="value">The value.</param>\r
6115             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>\r
6116             <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r
6117         </member>\r
6118         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">\r
6119             <summary>\r
6120             Adds the specified property name.\r
6121             </summary>\r
6122             <param name="propertyName">Name of the property.</param>\r
6123             <param name="value">The value.</param>\r
6124         </member>\r
6125         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">\r
6126             <summary>\r
6127             Removes the property with the specified name.\r
6128             </summary>\r
6129             <param name="propertyName">Name of the property.</param>\r
6130             <returns>true if item was successfully removed; otherwise, false.</returns>\r
6131         </member>\r
6132         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">\r
6133             <summary>\r
6134             Tries the get value.\r
6135             </summary>\r
6136             <param name="propertyName">Name of the property.</param>\r
6137             <param name="value">The value.</param>\r
6138             <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r
6139         </member>\r
6140         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">\r
6141             <summary>\r
6142             Returns an enumerator that iterates through the collection.\r
6143             </summary>\r
6144             <returns>\r
6145             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.\r
6146             </returns>\r
6147         </member>\r
6148         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">\r
6149             <summary>\r
6150             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.\r
6151             </summary>\r
6152             <param name="propertyName">Name of the property.</param>\r
6153         </member>\r
6154         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">\r
6155             <summary>\r
6156             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.\r
6157             </summary>\r
6158             <param name="propertyName">Name of the property.</param>\r
6159         </member>\r
6160         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">\r
6161             <summary>\r
6162             Returns the properties for this instance of a component.\r
6163             </summary>\r
6164             <returns>\r
6165             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.\r
6166             </returns>\r
6167         </member>\r
6168         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">\r
6169             <summary>\r
6170             Returns the properties for this instance of a component using the attribute array as a filter.\r
6171             </summary>\r
6172             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>\r
6173             <returns>\r
6174             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.\r
6175             </returns>\r
6176         </member>\r
6177         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">\r
6178             <summary>\r
6179             Returns a collection of custom attributes for this instance of a component.\r
6180             </summary>\r
6181             <returns>\r
6182             An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.\r
6183             </returns>\r
6184         </member>\r
6185         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">\r
6186             <summary>\r
6187             Returns the class name of this instance of a component.\r
6188             </summary>\r
6189             <returns>\r
6190             The class name of the object, or null if the class does not have a name.\r
6191             </returns>\r
6192         </member>\r
6193         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">\r
6194             <summary>\r
6195             Returns the name of this instance of a component.\r
6196             </summary>\r
6197             <returns>\r
6198             The name of the object, or null if the object does not have a name.\r
6199             </returns>\r
6200         </member>\r
6201         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">\r
6202             <summary>\r
6203             Returns a type converter for this instance of a component.\r
6204             </summary>\r
6205             <returns>\r
6206             A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object.\r
6207             </returns>\r
6208         </member>\r
6209         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">\r
6210             <summary>\r
6211             Returns the default event for this instance of a component.\r
6212             </summary>\r
6213             <returns>\r
6214             An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.\r
6215             </returns>\r
6216         </member>\r
6217         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">\r
6218             <summary>\r
6219             Returns the default property for this instance of a component.\r
6220             </summary>\r
6221             <returns>\r
6222             A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.\r
6223             </returns>\r
6224         </member>\r
6225         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">\r
6226             <summary>\r
6227             Returns an editor of the specified type for this instance of a component.\r
6228             </summary>\r
6229             <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>\r
6230             <returns>\r
6231             An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found.\r
6232             </returns>\r
6233         </member>\r
6234         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">\r
6235             <summary>\r
6236             Returns the events for this instance of a component using the specified attribute array as a filter.\r
6237             </summary>\r
6238             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>\r
6239             <returns>\r
6240             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.\r
6241             </returns>\r
6242         </member>\r
6243         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">\r
6244             <summary>\r
6245             Returns the events for this instance of a component.\r
6246             </summary>\r
6247             <returns>\r
6248             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.\r
6249             </returns>\r
6250         </member>\r
6251         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">\r
6252             <summary>\r
6253             Returns an object that contains the property described by the specified property descriptor.\r
6254             </summary>\r
6255             <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>\r
6256             <returns>\r
6257             An <see cref="T:System.Object"/> that represents the owner of the specified property.\r
6258             </returns>\r
6259         </member>\r
6260         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">\r
6261             <summary>\r
6262             Gets the container's children tokens.\r
6263             </summary>\r
6264             <value>The container's children tokens.</value>\r
6265         </member>\r
6266         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">\r
6267             <summary>\r
6268             Occurs when a property value changes.\r
6269             </summary>\r
6270         </member>\r
6271         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">\r
6272             <summary>\r
6273             Occurs when a property value is changing.\r
6274             </summary>\r
6275         </member>\r
6276         <member name="P:Newtonsoft.Json.Linq.JObject.Type">\r
6277             <summary>\r
6278             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6279             </summary>\r
6280             <value>The type.</value>\r
6281         </member>\r
6282         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">\r
6283             <summary>\r
6284             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
6285             </summary>\r
6286             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
6287         </member>\r
6288         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">\r
6289             <summary>\r
6290             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6291             </summary>\r
6292             <value></value>\r
6293         </member>\r
6294         <member name="T:Newtonsoft.Json.Linq.JArray">\r
6295             <summary>\r
6296             Represents a JSON array.\r
6297             </summary>\r
6298             <example>\r
6299               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />\r
6300             </example>\r
6301         </member>\r
6302         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">\r
6303             <summary>\r
6304             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.\r
6305             </summary>\r
6306         </member>\r
6307         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">\r
6308             <summary>\r
6309             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.\r
6310             </summary>\r
6311             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>\r
6312         </member>\r
6313         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">\r
6314             <summary>\r
6315             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.\r
6316             </summary>\r
6317             <param name="content">The contents of the array.</param>\r
6318         </member>\r
6319         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">\r
6320             <summary>\r
6321             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.\r
6322             </summary>\r
6323             <param name="content">The contents of the array.</param>\r
6324         </member>\r
6325         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">\r
6326             <summary>\r
6327             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
6328             </summary>\r
6329             <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>\r
6330             <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>\r
6331         </member>\r
6332         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">\r
6333             <summary>\r
6334             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.\r
6335             </summary>\r
6336             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
6337             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>\r
6338             <example>\r
6339               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>\r
6340             </example>\r
6341         </member>\r
6342         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">\r
6343             <summary>\r
6344             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.\r
6345             </summary>\r
6346             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>\r
6347             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>\r
6348         </member>\r
6349         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
6350             <summary>\r
6351             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.\r
6352             </summary>\r
6353             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>\r
6354             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>\r
6355             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>\r
6356         </member>\r
6357         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
6358             <summary>\r
6359             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
6360             </summary>\r
6361             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
6362             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
6363         </member>\r
6364         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">\r
6365             <summary>\r
6366             Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.\r
6367             </summary>\r
6368             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>\r
6369             <returns>\r
6370             The index of <paramref name="item"/> if found in the list; otherwise, -1.\r
6371             </returns>\r
6372         </member>\r
6373         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">\r
6374             <summary>\r
6375             Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.\r
6376             </summary>\r
6377             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>\r
6378             <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>\r
6379             <exception cref="T:System.ArgumentOutOfRangeException">\r
6380                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>\r
6381             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>\r
6382         </member>\r
6383         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">\r
6384             <summary>\r
6385             Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.\r
6386             </summary>\r
6387             <param name="index">The zero-based index of the item to remove.</param>\r
6388             <exception cref="T:System.ArgumentOutOfRangeException">\r
6389                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>\r
6390             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>\r
6391         </member>\r
6392         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">\r
6393             <summary>\r
6394             Returns an enumerator that iterates through the collection.\r
6395             </summary>\r
6396             <returns>\r
6397             A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.\r
6398             </returns>\r
6399         </member>\r
6400         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">\r
6401             <summary>\r
6402             Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
6403             </summary>\r
6404             <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
6405             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>\r
6406         </member>\r
6407         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">\r
6408             <summary>\r
6409             Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
6410             </summary>\r
6411             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>\r
6412         </member>\r
6413         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">\r
6414             <summary>\r
6415             Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.\r
6416             </summary>\r
6417             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
6418             <returns>\r
6419             true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.\r
6420             </returns>\r
6421         </member>\r
6422         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">\r
6423             <summary>\r
6424             Copies to.\r
6425             </summary>\r
6426             <param name="array">The array.</param>\r
6427             <param name="arrayIndex">Index of the array.</param>\r
6428         </member>\r
6429         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">\r
6430             <summary>\r
6431             Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
6432             </summary>\r
6433             <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
6434             <returns>\r
6435             true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
6436             </returns>\r
6437             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>\r
6438         </member>\r
6439         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">\r
6440             <summary>\r
6441             Gets the container's children tokens.\r
6442             </summary>\r
6443             <value>The container's children tokens.</value>\r
6444         </member>\r
6445         <member name="P:Newtonsoft.Json.Linq.JArray.Type">\r
6446             <summary>\r
6447             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6448             </summary>\r
6449             <value>The type.</value>\r
6450         </member>\r
6451         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">\r
6452             <summary>\r
6453             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
6454             </summary>\r
6455             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
6456         </member>\r
6457         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">\r
6458             <summary>\r
6459             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.\r
6460             </summary>\r
6461             <value></value>\r
6462         </member>\r
6463         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">\r
6464             <summary>\r
6465             Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.\r
6466             </summary>\r
6467             <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>\r
6468         </member>\r
6469         <member name="T:Newtonsoft.Json.Linq.JTokenReader">\r
6470             <summary>\r
6471             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
6472             </summary>\r
6473         </member>\r
6474         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">\r
6475             <summary>\r
6476             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.\r
6477             </summary>\r
6478             <param name="token">The token to read from.</param>\r
6479         </member>\r
6480         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">\r
6481             <summary>\r
6482             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
6483             </summary>\r
6484             <returns>\r
6485             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r
6486             </returns>\r
6487         </member>\r
6488         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">\r
6489             <summary>\r
6490             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
6491             </summary>\r
6492             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
6493         </member>\r
6494         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">\r
6495             <summary>\r
6496             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
6497             </summary>\r
6498             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
6499         </member>\r
6500         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">\r
6501             <summary>\r
6502             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
6503             </summary>\r
6504             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
6505         </member>\r
6506         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">\r
6507             <summary>\r
6508             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
6509             </summary>\r
6510             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
6511         </member>\r
6512         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">\r
6513             <summary>\r
6514             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
6515             </summary>\r
6516             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
6517         </member>\r
6518         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">\r
6519             <summary>\r
6520             Reads the next JSON token from the stream.\r
6521             </summary>\r
6522             <returns>\r
6523             true if the next token was read successfully; false if there are no more tokens to read.\r
6524             </returns>\r
6525         </member>\r
6526         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">\r
6527             <summary>\r
6528             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.\r
6529             </summary>\r
6530         </member>\r
6531         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">\r
6532             <summary>\r
6533             Gets the path of the current JSON token. \r
6534             </summary>\r
6535         </member>\r
6536         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">\r
6537             <summary>\r
6538             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
6539             </summary>\r
6540         </member>\r
6541         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">\r
6542             <summary>\r
6543             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"/>.\r
6544             </summary>\r
6545             <param name="container">The container being written to.</param>\r
6546         </member>\r
6547         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">\r
6548             <summary>\r
6549             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.\r
6550             </summary>\r
6551         </member>\r
6552         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">\r
6553             <summary>\r
6554             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
6555             </summary>\r
6556         </member>\r
6557         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">\r
6558             <summary>\r
6559             Closes this stream and the underlying stream.\r
6560             </summary>\r
6561         </member>\r
6562         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">\r
6563             <summary>\r
6564             Writes the beginning of a JSON object.\r
6565             </summary>\r
6566         </member>\r
6567         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">\r
6568             <summary>\r
6569             Writes the beginning of a JSON array.\r
6570             </summary>\r
6571         </member>\r
6572         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">\r
6573             <summary>\r
6574             Writes the start of a constructor with the given name.\r
6575             </summary>\r
6576             <param name="name">The name of the constructor.</param>\r
6577         </member>\r
6578         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
6579             <summary>\r
6580             Writes the end.\r
6581             </summary>\r
6582             <param name="token">The token.</param>\r
6583         </member>\r
6584         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">\r
6585             <summary>\r
6586             Writes the property name of a name/value pair on a JSON object.\r
6587             </summary>\r
6588             <param name="name">The name of the property.</param>\r
6589         </member>\r
6590         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">\r
6591             <summary>\r
6592             Writes a <see cref="T:System.Object"/> value.\r
6593             An error will raised if the value cannot be written as a single JSON token.\r
6594             </summary>\r
6595             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
6596         </member>\r
6597         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">\r
6598             <summary>\r
6599             Writes a null value.\r
6600             </summary>\r
6601         </member>\r
6602         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">\r
6603             <summary>\r
6604             Writes an undefined value.\r
6605             </summary>\r
6606         </member>\r
6607         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">\r
6608             <summary>\r
6609             Writes raw JSON.\r
6610             </summary>\r
6611             <param name="json">The raw JSON to write.</param>\r
6612         </member>\r
6613         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">\r
6614             <summary>\r
6615             Writes out a comment <code>/*...*/</code> containing the specified text.\r
6616             </summary>\r
6617             <param name="text">Text to place inside the comment.</param>\r
6618         </member>\r
6619         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">\r
6620             <summary>\r
6621             Writes a <see cref="T:System.String"/> value.\r
6622             </summary>\r
6623             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
6624         </member>\r
6625         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">\r
6626             <summary>\r
6627             Writes a <see cref="T:System.Int32"/> value.\r
6628             </summary>\r
6629             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
6630         </member>\r
6631         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">\r
6632             <summary>\r
6633             Writes a <see cref="T:System.UInt32"/> value.\r
6634             </summary>\r
6635             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
6636         </member>\r
6637         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">\r
6638             <summary>\r
6639             Writes a <see cref="T:System.Int64"/> value.\r
6640             </summary>\r
6641             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
6642         </member>\r
6643         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">\r
6644             <summary>\r
6645             Writes a <see cref="T:System.UInt64"/> value.\r
6646             </summary>\r
6647             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
6648         </member>\r
6649         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">\r
6650             <summary>\r
6651             Writes a <see cref="T:System.Single"/> value.\r
6652             </summary>\r
6653             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
6654         </member>\r
6655         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">\r
6656             <summary>\r
6657             Writes a <see cref="T:System.Double"/> value.\r
6658             </summary>\r
6659             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
6660         </member>\r
6661         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">\r
6662             <summary>\r
6663             Writes a <see cref="T:System.Boolean"/> value.\r
6664             </summary>\r
6665             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
6666         </member>\r
6667         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">\r
6668             <summary>\r
6669             Writes a <see cref="T:System.Int16"/> value.\r
6670             </summary>\r
6671             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
6672         </member>\r
6673         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">\r
6674             <summary>\r
6675             Writes a <see cref="T:System.UInt16"/> value.\r
6676             </summary>\r
6677             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
6678         </member>\r
6679         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">\r
6680             <summary>\r
6681             Writes a <see cref="T:System.Char"/> value.\r
6682             </summary>\r
6683             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
6684         </member>\r
6685         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">\r
6686             <summary>\r
6687             Writes a <see cref="T:System.Byte"/> value.\r
6688             </summary>\r
6689             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
6690         </member>\r
6691         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">\r
6692             <summary>\r
6693             Writes a <see cref="T:System.SByte"/> value.\r
6694             </summary>\r
6695             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
6696         </member>\r
6697         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">\r
6698             <summary>\r
6699             Writes a <see cref="T:System.Decimal"/> value.\r
6700             </summary>\r
6701             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
6702         </member>\r
6703         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">\r
6704             <summary>\r
6705             Writes a <see cref="T:System.DateTime"/> value.\r
6706             </summary>\r
6707             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
6708         </member>\r
6709         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">\r
6710             <summary>\r
6711             Writes a <see cref="T:System.DateTimeOffset"/> value.\r
6712             </summary>\r
6713             <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>\r
6714         </member>\r
6715         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">\r
6716             <summary>\r
6717             Writes a <see cref="T:System.Byte"/>[] value.\r
6718             </summary>\r
6719             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
6720         </member>\r
6721         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">\r
6722             <summary>\r
6723             Writes a <see cref="T:System.TimeSpan"/> value.\r
6724             </summary>\r
6725             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
6726         </member>\r
6727         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">\r
6728             <summary>\r
6729             Writes a <see cref="T:System.Guid"/> value.\r
6730             </summary>\r
6731             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
6732         </member>\r
6733         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">\r
6734             <summary>\r
6735             Writes a <see cref="T:System.Uri"/> value.\r
6736             </summary>\r
6737             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
6738         </member>\r
6739         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">\r
6740             <summary>\r
6741             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.\r
6742             </summary>\r
6743         </member>\r
6744         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">\r
6745             <summary>\r
6746             Gets the token being writen.\r
6747             </summary>\r
6748             <value>The token being writen.</value>\r
6749         </member>\r
6750         <member name="T:Newtonsoft.Json.Linq.JProperty">\r
6751             <summary>\r
6752             Represents a JSON property.\r
6753             </summary>\r
6754         </member>\r
6755         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">\r
6756             <summary>\r
6757             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.\r
6758             </summary>\r
6759             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>\r
6760         </member>\r
6761         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">\r
6762             <summary>\r
6763             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.\r
6764             </summary>\r
6765             <param name="name">The property name.</param>\r
6766             <param name="content">The property content.</param>\r
6767         </member>\r
6768         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">\r
6769             <summary>\r
6770             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.\r
6771             </summary>\r
6772             <param name="name">The property name.</param>\r
6773             <param name="content">The property content.</param>\r
6774         </member>\r
6775         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
6776             <summary>\r
6777             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
6778             </summary>\r
6779             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
6780             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
6781         </member>\r
6782         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">\r
6783             <summary>\r
6784             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
6785             </summary>\r
6786             <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>\r
6787             <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>\r
6788         </member>\r
6789         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">\r
6790             <summary>\r
6791             Gets the container's children tokens.\r
6792             </summary>\r
6793             <value>The container's children tokens.</value>\r
6794         </member>\r
6795         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">\r
6796             <summary>\r
6797             Gets the property name.\r
6798             </summary>\r
6799             <value>The property name.</value>\r
6800         </member>\r
6801         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">\r
6802             <summary>\r
6803             Gets or sets the property value.\r
6804             </summary>\r
6805             <value>The property value.</value>\r
6806         </member>\r
6807         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">\r
6808             <summary>\r
6809             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6810             </summary>\r
6811             <value>The type.</value>\r
6812         </member>\r
6813         <member name="T:Newtonsoft.Json.Linq.JTokenType">\r
6814             <summary>\r
6815             Specifies the type of token.\r
6816             </summary>\r
6817         </member>\r
6818         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">\r
6819             <summary>\r
6820             No token type has been set.\r
6821             </summary>\r
6822         </member>\r
6823         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">\r
6824             <summary>\r
6825             A JSON object.\r
6826             </summary>\r
6827         </member>\r
6828         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">\r
6829             <summary>\r
6830             A JSON array.\r
6831             </summary>\r
6832         </member>\r
6833         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">\r
6834             <summary>\r
6835             A JSON constructor.\r
6836             </summary>\r
6837         </member>\r
6838         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">\r
6839             <summary>\r
6840             A JSON object property.\r
6841             </summary>\r
6842         </member>\r
6843         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">\r
6844             <summary>\r
6845             A comment.\r
6846             </summary>\r
6847         </member>\r
6848         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">\r
6849             <summary>\r
6850             An integer value.\r
6851             </summary>\r
6852         </member>\r
6853         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">\r
6854             <summary>\r
6855             A float value.\r
6856             </summary>\r
6857         </member>\r
6858         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">\r
6859             <summary>\r
6860             A string value.\r
6861             </summary>\r
6862         </member>\r
6863         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">\r
6864             <summary>\r
6865             A boolean value.\r
6866             </summary>\r
6867         </member>\r
6868         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">\r
6869             <summary>\r
6870             A null value.\r
6871             </summary>\r
6872         </member>\r
6873         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">\r
6874             <summary>\r
6875             An undefined value.\r
6876             </summary>\r
6877         </member>\r
6878         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">\r
6879             <summary>\r
6880             A date value.\r
6881             </summary>\r
6882         </member>\r
6883         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">\r
6884             <summary>\r
6885             A raw JSON value.\r
6886             </summary>\r
6887         </member>\r
6888         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">\r
6889             <summary>\r
6890             A collection of bytes value.\r
6891             </summary>\r
6892         </member>\r
6893         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">\r
6894             <summary>\r
6895             A Guid value.\r
6896             </summary>\r
6897         </member>\r
6898         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">\r
6899             <summary>\r
6900             A Uri value.\r
6901             </summary>\r
6902         </member>\r
6903         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">\r
6904             <summary>\r
6905             A TimeSpan value.\r
6906             </summary>\r
6907         </member>\r
6908         <member name="T:Newtonsoft.Json.Schema.Extensions">\r
6909             <summary>\r
6910             <para>\r
6911             Contains the JSON schema extension methods.\r
6912             </para>\r
6913             <note type="caution">\r
6914             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.\r
6915             </note>\r
6916             </summary>\r
6917         </member>\r
6918         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">\r
6919             <summary>\r
6920             <para>\r
6921             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.\r
6922             </para>\r
6923             <note type="caution">\r
6924             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.\r
6925             </note>\r
6926             </summary>\r
6927             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
6928             <param name="schema">The schema to test with.</param>\r
6929             <returns>\r
6930                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.\r
6931             </returns>\r
6932         </member>\r
6933         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">\r
6934             <summary>\r
6935             <para>\r
6936             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.\r
6937             </para>\r
6938             <note type="caution">\r
6939             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.\r
6940             </note>\r
6941             </summary>\r
6942             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
6943             <param name="schema">The schema to test with.</param>\r
6944             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>\r
6945             <returns>\r
6946                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.\r
6947             </returns>\r
6948         </member>\r
6949         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">\r
6950             <summary>\r
6951             <para>\r
6952             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6953             </para>\r
6954             <note type="caution">\r
6955             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.\r
6956             </note>\r
6957             </summary>\r
6958             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
6959             <param name="schema">The schema to test with.</param>\r
6960         </member>\r
6961         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">\r
6962             <summary>\r
6963             <para>\r
6964             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6965             </para>\r
6966             <note type="caution">\r
6967             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.\r
6968             </note>\r
6969             </summary>\r
6970             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
6971             <param name="schema">The schema to test with.</param>\r
6972             <param name="validationEventHandler">The validation event handler.</param>\r
6973         </member>\r
6974         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">\r
6975             <summary>\r
6976             <para>\r
6977             Returns detailed information about the schema exception.\r
6978             </para>\r
6979             <note type="caution">\r
6980             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.\r
6981             </note>\r
6982             </summary>\r
6983         </member>\r
6984         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">\r
6985             <summary>\r
6986             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.\r
6987             </summary>\r
6988         </member>\r
6989         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">\r
6990             <summary>\r
6991             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class\r
6992             with a specified error message.\r
6993             </summary>\r
6994             <param name="message">The error message that explains the reason for the exception.</param>\r
6995         </member>\r
6996         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">\r
6997             <summary>\r
6998             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class\r
6999             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
7000             </summary>\r
7001             <param name="message">The error message that explains the reason for the exception.</param>\r
7002             <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r
7003         </member>\r
7004         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
7005             <summary>\r
7006             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.\r
7007             </summary>\r
7008             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
7009             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
7010             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
7011             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
7012         </member>\r
7013         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">\r
7014             <summary>\r
7015             Gets the line number indicating where the error occurred.\r
7016             </summary>\r
7017             <value>The line number indicating where the error occurred.</value>\r
7018         </member>\r
7019         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">\r
7020             <summary>\r
7021             Gets the line position indicating where the error occurred.\r
7022             </summary>\r
7023             <value>The line position indicating where the error occurred.</value>\r
7024         </member>\r
7025         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">\r
7026             <summary>\r
7027             Gets the path to the JSON where the error occurred.\r
7028             </summary>\r
7029             <value>The path to the JSON where the error occurred.</value>\r
7030         </member>\r
7031         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">\r
7032             <summary>\r
7033             <para>\r
7034             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.\r
7035             </para>\r
7036             <note type="caution">\r
7037             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.\r
7038             </note>\r
7039             </summary>\r
7040         </member>\r
7041         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">\r
7042             <summary>\r
7043             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.\r
7044             </summary>\r
7045         </member>\r
7046         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">\r
7047             <summary>\r
7048             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.\r
7049             </summary>\r
7050             <param name="reference">The id.</param>\r
7051             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>\r
7052         </member>\r
7053         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">\r
7054             <summary>\r
7055             Gets or sets the loaded schemas.\r
7056             </summary>\r
7057             <value>The loaded schemas.</value>\r
7058         </member>\r
7059         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">\r
7060             <summary>\r
7061             <para>\r
7062             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.\r
7063             </para>\r
7064             <note type="caution">\r
7065             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.\r
7066             </note>\r
7067             </summary>\r
7068         </member>\r
7069         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">\r
7070             <summary>\r
7071             Do not infer a schema Id.\r
7072             </summary>\r
7073         </member>\r
7074         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">\r
7075             <summary>\r
7076             Use the .NET type name as the schema Id.\r
7077             </summary>\r
7078         </member>\r
7079         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">\r
7080             <summary>\r
7081             Use the assembly qualified .NET type name as the schema Id.\r
7082             </summary>\r
7083         </member>\r
7084         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">\r
7085             <summary>\r
7086             <para>\r
7087             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.\r
7088             </para>\r
7089             <note type="caution">\r
7090             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.\r
7091             </note>\r
7092             </summary>\r
7093         </member>\r
7094         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">\r
7095             <summary>\r
7096             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.\r
7097             </summary>\r
7098             <value>The JsonSchemaException associated with the validation error.</value>\r
7099         </member>\r
7100         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">\r
7101             <summary>\r
7102             Gets the path of the JSON location where the validation error occurred.\r
7103             </summary>\r
7104             <value>The path of the JSON location where the validation error occurred.</value>\r
7105         </member>\r
7106         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">\r
7107             <summary>\r
7108             Gets the text description corresponding to the validation error.\r
7109             </summary>\r
7110             <value>The text description.</value>\r
7111         </member>\r
7112         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">\r
7113             <summary>\r
7114             <para>\r
7115             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.\r
7116             </para>\r
7117             <note type="caution">\r
7118             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.\r
7119             </note>\r
7120             </summary>\r
7121         </member>\r
7122         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">\r
7123             <summary>\r
7124             Resolves member mappings for a type, camel casing property names.\r
7125             </summary>\r
7126         </member>\r
7127         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">\r
7128             <summary>\r
7129             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.\r
7130             </summary>\r
7131         </member>\r
7132         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">\r
7133             <summary>\r
7134             Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.\r
7135             </summary>\r
7136             <example>\r
7137               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>\r
7138               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>\r
7139             </example>\r
7140         </member>\r
7141         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">\r
7142             <summary>\r
7143             Resolves the contract for a given type.\r
7144             </summary>\r
7145             <param name="type">The type to resolve a contract for.</param>\r
7146             <returns>The contract for a given type.</returns>\r
7147         </member>\r
7148         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">\r
7149             <summary>\r
7150             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.\r
7151             </summary>\r
7152         </member>\r
7153         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">\r
7154             <summary>\r
7155             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.\r
7156             </summary>\r
7157             <param name="shareCache">\r
7158             If set to <c>true</c> the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> will use a cached shared with other resolvers of the same type.\r
7159             Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only\r
7160             happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different\r
7161             results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7162             </param>\r
7163         </member>\r
7164         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">\r
7165             <summary>\r
7166             Resolves the contract for a given type.\r
7167             </summary>\r
7168             <param name="type">The type to resolve a contract for.</param>\r
7169             <returns>The contract for a given type.</returns>\r
7170         </member>\r
7171         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">\r
7172             <summary>\r
7173             Gets the serializable members for the type.\r
7174             </summary>\r
7175             <param name="objectType">The type to get serializable members for.</param>\r
7176             <returns>The serializable members for the type.</returns>\r
7177         </member>\r
7178         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">\r
7179             <summary>\r
7180             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.\r
7181             </summary>\r
7182             <param name="objectType">Type of the object.</param>\r
7183             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>\r
7184         </member>\r
7185         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">\r
7186             <summary>\r
7187             Creates the constructor parameters.\r
7188             </summary>\r
7189             <param name="constructor">The constructor to create properties for.</param>\r
7190             <param name="memberProperties">The type's member properties.</param>\r
7191             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>\r
7192         </member>\r
7193         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">\r
7194             <summary>\r
7195             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.\r
7196             </summary>\r
7197             <param name="matchingMemberProperty">The matching member property.</param>\r
7198             <param name="parameterInfo">The constructor parameter.</param>\r
7199             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>\r
7200         </member>\r
7201         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">\r
7202             <summary>\r
7203             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.\r
7204             </summary>\r
7205             <param name="objectType">Type of the object.</param>\r
7206             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>\r
7207         </member>\r
7208         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">\r
7209             <summary>\r
7210             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.\r
7211             </summary>\r
7212             <param name="objectType">Type of the object.</param>\r
7213             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>\r
7214         </member>\r
7215         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">\r
7216             <summary>\r
7217             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.\r
7218             </summary>\r
7219             <param name="objectType">Type of the object.</param>\r
7220             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>\r
7221         </member>\r
7222         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">\r
7223             <summary>\r
7224             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.\r
7225             </summary>\r
7226             <param name="objectType">Type of the object.</param>\r
7227             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>\r
7228         </member>\r
7229         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">\r
7230             <summary>\r
7231             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.\r
7232             </summary>\r
7233             <param name="objectType">Type of the object.</param>\r
7234             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>\r
7235         </member>\r
7236         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">\r
7237             <summary>\r
7238             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.\r
7239             </summary>\r
7240             <param name="objectType">Type of the object.</param>\r
7241             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>\r
7242         </member>\r
7243         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">\r
7244             <summary>\r
7245             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.\r
7246             </summary>\r
7247             <param name="objectType">Type of the object.</param>\r
7248             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>\r
7249         </member>\r
7250         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">\r
7251             <summary>\r
7252             Determines which contract type is created for the given type.\r
7253             </summary>\r
7254             <param name="objectType">Type of the object.</param>\r
7255             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>\r
7256         </member>\r
7257         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">\r
7258             <summary>\r
7259             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.\r
7260             </summary>\r
7261             <param name="type">The type to create properties for.</param>\r
7262             /// <param name="memberSerialization">The member serialization mode for the type.</param>\r
7263             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>\r
7264         </member>\r
7265         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">\r
7266             <summary>\r
7267             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.\r
7268             </summary>\r
7269             <param name="member">The member.</param>\r
7270             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>\r
7271         </member>\r
7272         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">\r
7273             <summary>\r
7274             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.\r
7275             </summary>\r
7276             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>\r
7277             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>\r
7278             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>\r
7279         </member>\r
7280         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">\r
7281             <summary>\r
7282             Resolves the name of the property.\r
7283             </summary>\r
7284             <param name="propertyName">Name of the property.</param>\r
7285             <returns>Resolved name of the property.</returns>\r
7286         </member>\r
7287         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">\r
7288             <summary>\r
7289             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.\r
7290             </summary>\r
7291             <param name="dictionaryKey">Key of the dictionary.</param>\r
7292             <returns>Resolved key of the dictionary.</returns>\r
7293         </member>\r
7294         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">\r
7295             <summary>\r
7296             Gets the resolved name of the property.\r
7297             </summary>\r
7298             <param name="propertyName">Name of the property.</param>\r
7299             <returns>Name of the property.</returns>\r
7300         </member>\r
7301         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">\r
7302             <summary>\r
7303             Gets a value indicating whether members are being get and set using dynamic code generation.\r
7304             This value is determined by the runtime permissions available.\r
7305             </summary>\r
7306             <value>\r
7307                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r
7308             </value>\r
7309         </member>\r
7310         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">\r
7311             <summary>\r
7312             Gets or sets the default members search flags.\r
7313             </summary>\r
7314             <value>The default members search flags.</value>\r
7315         </member>\r
7316         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">\r
7317             <summary>\r
7318             Gets or sets a value indicating whether compiler generated members should be serialized.\r
7319             </summary>\r
7320             <value>\r
7321                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r
7322             </value>\r
7323         </member>\r
7324         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">\r
7325             <summary>\r
7326             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.\r
7327             </summary>\r
7328             <value>\r
7329                 <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>.\r
7330             </value>\r
7331         </member>\r
7332         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">\r
7333             <summary>\r
7334             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.\r
7335             </summary>\r
7336             <value>\r
7337                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r
7338             </value>\r
7339         </member>\r
7340         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">\r
7341             <summary>\r
7342             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.\r
7343             </summary>\r
7344         </member>\r
7345         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">\r
7346             <summary>\r
7347             Resolves the name of the property.\r
7348             </summary>\r
7349             <param name="propertyName">Name of the property.</param>\r
7350             <returns>The property name camel cased.</returns>\r
7351         </member>\r
7352         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">\r
7353             <summary>\r
7354             The default serialization binder used when resolving and loading classes from type names.\r
7355             </summary>\r
7356         </member>\r
7357         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">\r
7358             <summary>\r
7359             When overridden in a derived class, controls the binding of a serialized object to a type.\r
7360             </summary>\r
7361             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>\r
7362             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>\r
7363             <returns>\r
7364             The type of the object the formatter creates a new instance of.\r
7365             </returns>\r
7366         </member>\r
7367         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">\r
7368             <summary>\r
7369             Provides information surrounding an error.\r
7370             </summary>\r
7371         </member>\r
7372         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">\r
7373             <summary>\r
7374             Gets the error.\r
7375             </summary>\r
7376             <value>The error.</value>\r
7377         </member>\r
7378         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">\r
7379             <summary>\r
7380             Gets the original object that caused the error.\r
7381             </summary>\r
7382             <value>The original object that caused the error.</value>\r
7383         </member>\r
7384         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">\r
7385             <summary>\r
7386             Gets the member that caused the error.\r
7387             </summary>\r
7388             <value>The member that caused the error.</value>\r
7389         </member>\r
7390         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">\r
7391             <summary>\r
7392             Gets the path of the JSON location where the error occurred.\r
7393             </summary>\r
7394             <value>The path of the JSON location where the error occurred.</value>\r
7395         </member>\r
7396         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">\r
7397             <summary>\r
7398             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.\r
7399             </summary>\r
7400             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r
7401         </member>\r
7402         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">\r
7403             <summary>\r
7404             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7405             </summary>\r
7406         </member>\r
7407         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">\r
7408             <summary>\r
7409             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.\r
7410             </summary>\r
7411             <param name="underlyingType">The underlying type for the contract.</param>\r
7412         </member>\r
7413         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">\r
7414             <summary>\r
7415             Gets the <see cref="T:System.Type"/> of the collection items.\r
7416             </summary>\r
7417             <value>The <see cref="T:System.Type"/> of the collection items.</value>\r
7418         </member>\r
7419         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">\r
7420             <summary>\r
7421             Gets a value indicating whether the collection type is a multidimensional array.\r
7422             </summary>\r
7423             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r
7424         </member>\r
7425         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">\r
7426             <summary>\r
7427             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.\r
7428             </summary>\r
7429             <param name="o">The object that raised the callback event.</param>\r
7430             <param name="context">The streaming context.</param>\r
7431         </member>\r
7432         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">\r
7433             <summary>\r
7434             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.\r
7435             </summary>\r
7436             <param name="o">The object that raised the callback event.</param>\r
7437             <param name="context">The streaming context.</param>\r
7438             <param name="errorContext">The error context.</param>\r
7439         </member>\r
7440         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">\r
7441             <summary>\r
7442             Sets extension data for an object during deserialization.\r
7443             </summary>\r
7444             <param name="o">The object to set extension data on.</param>\r
7445             <param name="key">The extension data key.</param>\r
7446             <param name="value">The extension data value.</param>\r
7447         </member>\r
7448         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">\r
7449             <summary>\r
7450             Gets extension data for an object during serialization.\r
7451             </summary>\r
7452             <param name="o">The object to set extension data on.</param>\r
7453         </member>\r
7454         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">\r
7455             <summary>\r
7456             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7457             </summary>\r
7458         </member>\r
7459         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">\r
7460             <summary>\r
7461             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.\r
7462             </summary>\r
7463             <param name="underlyingType">The underlying type for the contract.</param>\r
7464         </member>\r
7465         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">\r
7466             <summary>\r
7467             Gets or sets the property name resolver.\r
7468             </summary>\r
7469             <value>The property name resolver.</value>\r
7470         </member>\r
7471         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">\r
7472             <summary>\r
7473             Gets or sets the dictionary key resolver.\r
7474             </summary>\r
7475             <value>The dictionary key resolver.</value>\r
7476         </member>\r
7477         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">\r
7478             <summary>\r
7479             Gets the <see cref="T:System.Type"/> of the dictionary keys.\r
7480             </summary>\r
7481             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>\r
7482         </member>\r
7483         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">\r
7484             <summary>\r
7485             Gets the <see cref="T:System.Type"/> of the dictionary values.\r
7486             </summary>\r
7487             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>\r
7488         </member>\r
7489         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">\r
7490             <summary>\r
7491             Maps a JSON property to a .NET member or constructor parameter.\r
7492             </summary>\r
7493         </member>\r
7494         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">\r
7495             <summary>\r
7496             Returns a <see cref="T:System.String"/> that represents this instance.\r
7497             </summary>\r
7498             <returns>\r
7499             A <see cref="T:System.String"/> that represents this instance.\r
7500             </returns>\r
7501         </member>\r
7502         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">\r
7503             <summary>\r
7504             Gets or sets the name of the property.\r
7505             </summary>\r
7506             <value>The name of the property.</value>\r
7507         </member>\r
7508         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">\r
7509             <summary>\r
7510             Gets or sets the type that declared this property.\r
7511             </summary>\r
7512             <value>The type that declared this property.</value>\r
7513         </member>\r
7514         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">\r
7515             <summary>\r
7516             Gets or sets the order of serialization and deserialization of a member.\r
7517             </summary>\r
7518             <value>The numeric order of serialization or deserialization.</value>\r
7519         </member>\r
7520         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">\r
7521             <summary>\r
7522             Gets or sets the name of the underlying member or parameter.\r
7523             </summary>\r
7524             <value>The name of the underlying member or parameter.</value>\r
7525         </member>\r
7526         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">\r
7527             <summary>\r
7528             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.\r
7529             </summary>\r
7530             <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>\r
7531         </member>\r
7532         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">\r
7533             <summary>\r
7534             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.\r
7535             </summary>\r
7536             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>\r
7537         </member>\r
7538         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">\r
7539             <summary>\r
7540             Gets or sets the type of the property.\r
7541             </summary>\r
7542             <value>The type of the property.</value>\r
7543         </member>\r
7544         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">\r
7545             <summary>\r
7546             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.\r
7547             If set this converter takes presidence over the contract converter for the property type.\r
7548             </summary>\r
7549             <value>The converter.</value>\r
7550         </member>\r
7551         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">\r
7552             <summary>\r
7553             Gets or sets the member converter.\r
7554             </summary>\r
7555             <value>The member converter.</value>\r
7556         </member>\r
7557         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">\r
7558             <summary>\r
7559             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.\r
7560             </summary>\r
7561             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r
7562         </member>\r
7563         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">\r
7564             <summary>\r
7565             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.\r
7566             </summary>\r
7567             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r
7568         </member>\r
7569         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">\r
7570             <summary>\r
7571             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.\r
7572             </summary>\r
7573             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r
7574         </member>\r
7575         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">\r
7576             <summary>\r
7577             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.\r
7578             </summary>\r
7579             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r
7580         </member>\r
7581         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">\r
7582             <summary>\r
7583             Gets the default value.\r
7584             </summary>\r
7585             <value>The default value.</value>\r
7586         </member>\r
7587         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">\r
7588             <summary>\r
7589             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.\r
7590             </summary>\r
7591             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>\r
7592         </member>\r
7593         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">\r
7594             <summary>\r
7595             Gets or sets a value indicating whether this property preserves object references.\r
7596             </summary>\r
7597             <value>\r
7598                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.\r
7599             </value>\r
7600         </member>\r
7601         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">\r
7602             <summary>\r
7603             Gets or sets the property null value handling.\r
7604             </summary>\r
7605             <value>The null value handling.</value>\r
7606         </member>\r
7607         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">\r
7608             <summary>\r
7609             Gets or sets the property default value handling.\r
7610             </summary>\r
7611             <value>The default value handling.</value>\r
7612         </member>\r
7613         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">\r
7614             <summary>\r
7615             Gets or sets the property reference loop handling.\r
7616             </summary>\r
7617             <value>The reference loop handling.</value>\r
7618         </member>\r
7619         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">\r
7620             <summary>\r
7621             Gets or sets the property object creation handling.\r
7622             </summary>\r
7623             <value>The object creation handling.</value>\r
7624         </member>\r
7625         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">\r
7626             <summary>\r
7627             Gets or sets or sets the type name handling.\r
7628             </summary>\r
7629             <value>The type name handling.</value>\r
7630         </member>\r
7631         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">\r
7632             <summary>\r
7633             Gets or sets a predicate used to determine whether the property should be serialize.\r
7634             </summary>\r
7635             <value>A predicate used to determine whether the property should be serialize.</value>\r
7636         </member>\r
7637         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">\r
7638             <summary>\r
7639             Gets or sets a predicate used to determine whether the property should be serialized.\r
7640             </summary>\r
7641             <value>A predicate used to determine whether the property should be serialized.</value>\r
7642         </member>\r
7643         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">\r
7644             <summary>\r
7645             Gets or sets an action used to set whether the property has been deserialized.\r
7646             </summary>\r
7647             <value>An action used to set whether the property has been deserialized.</value>\r
7648         </member>\r
7649         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">\r
7650             <summary>\r
7651             Gets or sets the converter used when serializing the property's collection items.\r
7652             </summary>\r
7653             <value>The collection's items converter.</value>\r
7654         </member>\r
7655         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">\r
7656             <summary>\r
7657             Gets or sets whether this property's collection items are serialized as a reference.\r
7658             </summary>\r
7659             <value>Whether this property's collection items are serialized as a reference.</value>\r
7660         </member>\r
7661         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">\r
7662             <summary>\r
7663             Gets or sets the the type name handling used when serializing the property's collection items.\r
7664             </summary>\r
7665             <value>The collection's items type name handling.</value>\r
7666         </member>\r
7667         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">\r
7668             <summary>\r
7669             Gets or sets the the reference loop handling used when serializing the property's collection items.\r
7670             </summary>\r
7671             <value>The collection's items reference loop handling.</value>\r
7672         </member>\r
7673         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">\r
7674             <summary>\r
7675             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.\r
7676             </summary>\r
7677         </member>\r
7678         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">\r
7679             <summary>\r
7680             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.\r
7681             </summary>\r
7682             <param name="type">The type.</param>\r
7683         </member>\r
7684         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">\r
7685             <summary>\r
7686             When implemented in a derived class, extracts the key from the specified element.\r
7687             </summary>\r
7688             <param name="item">The element from which to extract the key.</param>\r
7689             <returns>The key for the specified element.</returns>\r
7690         </member>\r
7691         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">\r
7692             <summary>\r
7693             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.\r
7694             </summary>\r
7695             <param name="property">The property to add to the collection.</param>\r
7696         </member>\r
7697         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">\r
7698             <summary>\r
7699             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.\r
7700             First attempts to get an exact case match of propertyName and then\r
7701             a case insensitive match.\r
7702             </summary>\r
7703             <param name="propertyName">Name of the property.</param>\r
7704             <returns>A matching property if found.</returns>\r
7705         </member>\r
7706         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">\r
7707             <summary>\r
7708             Gets a property by property name.\r
7709             </summary>\r
7710             <param name="propertyName">The name of the property to get.</param>\r
7711             <param name="comparisonType">Type property name string comparison.</param>\r
7712             <returns>A matching property if found.</returns>\r
7713         </member>\r
7714         <member name="T:Newtonsoft.Json.MissingMemberHandling">\r
7715             <summary>\r
7716             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7717             </summary>\r
7718         </member>\r
7719         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">\r
7720             <summary>\r
7721             Ignore a missing member and do not attempt to deserialize it.\r
7722             </summary>\r
7723         </member>\r
7724         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">\r
7725             <summary>\r
7726             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.\r
7727             </summary>\r
7728         </member>\r
7729         <member name="T:Newtonsoft.Json.NullValueHandling">\r
7730             <summary>\r
7731             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7732             </summary>\r
7733             <example>\r
7734               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>\r
7735               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>\r
7736             </example>\r
7737         </member>\r
7738         <member name="F:Newtonsoft.Json.NullValueHandling.Include">\r
7739             <summary>\r
7740             Include null values when serializing and deserializing objects.\r
7741             </summary>\r
7742         </member>\r
7743         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">\r
7744             <summary>\r
7745             Ignore null values when serializing and deserializing objects.\r
7746             </summary>\r
7747         </member>\r
7748         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">\r
7749             <summary>\r
7750             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
7751             </summary>\r
7752         </member>\r
7753         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">\r
7754             <summary>\r
7755             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.\r
7756             </summary>\r
7757         </member>\r
7758         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">\r
7759             <summary>\r
7760             Ignore loop references and do not serialize.\r
7761             </summary>\r
7762         </member>\r
7763         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">\r
7764             <summary>\r
7765             Serialize loop references.\r
7766             </summary>\r
7767         </member>\r
7768         <member name="T:Newtonsoft.Json.Schema.JsonSchema">\r
7769             <summary>\r
7770             <para>\r
7771             An in-memory representation of a JSON Schema.\r
7772             </para>\r
7773             <note type="caution">\r
7774             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.\r
7775             </note>\r
7776             </summary>\r
7777         </member>\r
7778         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">\r
7779             <summary>\r
7780             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.\r
7781             </summary>\r
7782         </member>\r
7783         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">\r
7784             <summary>\r
7785             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
7786             </summary>\r
7787             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>\r
7788             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>\r
7789         </member>\r
7790         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
7791             <summary>\r
7792             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
7793             </summary>\r
7794             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>\r
7795             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>\r
7796             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>\r
7797         </member>\r
7798         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">\r
7799             <summary>\r
7800             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.\r
7801             </summary>\r
7802             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
7803             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>\r
7804         </member>\r
7805         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
7806             <summary>\r
7807             Parses the specified json.\r
7808             </summary>\r
7809             <param name="json">The json.</param>\r
7810             <param name="resolver">The resolver.</param>\r
7811             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>\r
7812         </member>\r
7813         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">\r
7814             <summary>\r
7815             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
7816             </summary>\r
7817             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
7818         </member>\r
7819         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
7820             <summary>\r
7821             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.\r
7822             </summary>\r
7823             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
7824             <param name="resolver">The resolver used.</param>\r
7825         </member>\r
7826         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">\r
7827             <summary>\r
7828             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.\r
7829             </summary>\r
7830             <returns>\r
7831             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.\r
7832             </returns>\r
7833         </member>\r
7834         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">\r
7835             <summary>\r
7836             Gets or sets the id.\r
7837             </summary>\r
7838         </member>\r
7839         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">\r
7840             <summary>\r
7841             Gets or sets the title.\r
7842             </summary>\r
7843         </member>\r
7844         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">\r
7845             <summary>\r
7846             Gets or sets whether the object is required.\r
7847             </summary>\r
7848         </member>\r
7849         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">\r
7850             <summary>\r
7851             Gets or sets whether the object is read only.\r
7852             </summary>\r
7853         </member>\r
7854         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">\r
7855             <summary>\r
7856             Gets or sets whether the object is visible to users.\r
7857             </summary>\r
7858         </member>\r
7859         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">\r
7860             <summary>\r
7861             Gets or sets whether the object is transient.\r
7862             </summary>\r
7863         </member>\r
7864         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">\r
7865             <summary>\r
7866             Gets or sets the description of the object.\r
7867             </summary>\r
7868         </member>\r
7869         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">\r
7870             <summary>\r
7871             Gets or sets the types of values allowed by the object.\r
7872             </summary>\r
7873             <value>The type.</value>\r
7874         </member>\r
7875         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">\r
7876             <summary>\r
7877             Gets or sets the pattern.\r
7878             </summary>\r
7879             <value>The pattern.</value>\r
7880         </member>\r
7881         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">\r
7882             <summary>\r
7883             Gets or sets the minimum length.\r
7884             </summary>\r
7885             <value>The minimum length.</value>\r
7886         </member>\r
7887         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">\r
7888             <summary>\r
7889             Gets or sets the maximum length.\r
7890             </summary>\r
7891             <value>The maximum length.</value>\r
7892         </member>\r
7893         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">\r
7894             <summary>\r
7895             Gets or sets a number that the value should be divisble by.\r
7896             </summary>\r
7897             <value>A number that the value should be divisble by.</value>\r
7898         </member>\r
7899         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">\r
7900             <summary>\r
7901             Gets or sets the minimum.\r
7902             </summary>\r
7903             <value>The minimum.</value>\r
7904         </member>\r
7905         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">\r
7906             <summary>\r
7907             Gets or sets the maximum.\r
7908             </summary>\r
7909             <value>The maximum.</value>\r
7910         </member>\r
7911         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">\r
7912             <summary>\r
7913             Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.\r
7914             </summary>\r
7915             <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>\r
7916         </member>\r
7917         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">\r
7918             <summary>\r
7919             Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.\r
7920             </summary>\r
7921             <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>\r
7922         </member>\r
7923         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">\r
7924             <summary>\r
7925             Gets or sets the minimum number of items.\r
7926             </summary>\r
7927             <value>The minimum number of items.</value>\r
7928         </member>\r
7929         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">\r
7930             <summary>\r
7931             Gets or sets the maximum number of items.\r
7932             </summary>\r
7933             <value>The maximum number of items.</value>\r
7934         </member>\r
7935         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">\r
7936             <summary>\r
7937             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.\r
7938             </summary>\r
7939             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>\r
7940         </member>\r
7941         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">\r
7942             <summary>\r
7943             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"/>.\r
7944             </summary>\r
7945             <value>\r
7946                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.\r
7947             </value>\r
7948         </member>\r
7949         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">\r
7950             <summary>\r
7951             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.\r
7952             </summary>\r
7953             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>\r
7954         </member>\r
7955         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">\r
7956             <summary>\r
7957             Gets or sets a value indicating whether additional items are allowed.\r
7958             </summary>\r
7959             <value>\r
7960                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.\r
7961             </value>\r
7962         </member>\r
7963         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">\r
7964             <summary>\r
7965             Gets or sets whether the array items must be unique.\r
7966             </summary>\r
7967         </member>\r
7968         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">\r
7969             <summary>\r
7970             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.\r
7971             </summary>\r
7972             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>\r
7973         </member>\r
7974         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">\r
7975             <summary>\r
7976             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.\r
7977             </summary>\r
7978             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>\r
7979         </member>\r
7980         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">\r
7981             <summary>\r
7982             Gets or sets the pattern properties.\r
7983             </summary>\r
7984             <value>The pattern properties.</value>\r
7985         </member>\r
7986         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">\r
7987             <summary>\r
7988             Gets or sets a value indicating whether additional properties are allowed.\r
7989             </summary>\r
7990             <value>\r
7991                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r
7992             </value>\r
7993         </member>\r
7994         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">\r
7995             <summary>\r
7996             Gets or sets the required property if this property is present.\r
7997             </summary>\r
7998             <value>The required property if this property is present.</value>\r
7999         </member>\r
8000         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">\r
8001             <summary>\r
8002             Gets or sets the a collection of valid enum values allowed.\r
8003             </summary>\r
8004             <value>A collection of valid enum values allowed.</value>\r
8005         </member>\r
8006         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">\r
8007             <summary>\r
8008             Gets or sets disallowed types.\r
8009             </summary>\r
8010             <value>The disallow types.</value>\r
8011         </member>\r
8012         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">\r
8013             <summary>\r
8014             Gets or sets the default value.\r
8015             </summary>\r
8016             <value>The default value.</value>\r
8017         </member>\r
8018         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">\r
8019             <summary>\r
8020             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.\r
8021             </summary>\r
8022             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>\r
8023         </member>\r
8024         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">\r
8025             <summary>\r
8026             Gets or sets the format.\r
8027             </summary>\r
8028             <value>The format.</value>\r
8029         </member>\r
8030         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">\r
8031             <summary>\r
8032             <para>\r
8033             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.\r
8034             </para>\r
8035             <note type="caution">\r
8036             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.\r
8037             </note>\r
8038             </summary>\r
8039         </member>\r
8040         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">\r
8041             <summary>\r
8042             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8043             </summary>\r
8044             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8045             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8046         </member>\r
8047         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
8048             <summary>\r
8049             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8050             </summary>\r
8051             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8052             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>\r
8053             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8054         </member>\r
8055         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">\r
8056             <summary>\r
8057             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8058             </summary>\r
8059             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8060             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>\r
8061             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8062         </member>\r
8063         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">\r
8064             <summary>\r
8065             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8066             </summary>\r
8067             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8068             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>\r
8069             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>\r
8070             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8071         </member>\r
8072         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">\r
8073             <summary>\r
8074             Gets or sets how undefined schemas are handled by the serializer.\r
8075             </summary>\r
8076         </member>\r
8077         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">\r
8078             <summary>\r
8079             Gets or sets the contract resolver.\r
8080             </summary>\r
8081             <value>The contract resolver.</value>\r
8082         </member>\r
8083         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">\r
8084             <summary>\r
8085             <para>\r
8086             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.\r
8087             </para>\r
8088             <note type="caution">\r
8089             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.\r
8090             </note>\r
8091             </summary>\r
8092         </member>\r
8093         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">\r
8094             <summary>\r
8095             No type specified.\r
8096             </summary>\r
8097         </member>\r
8098         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">\r
8099             <summary>\r
8100             String type.\r
8101             </summary>\r
8102         </member>\r
8103         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">\r
8104             <summary>\r
8105             Float type.\r
8106             </summary>\r
8107         </member>\r
8108         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">\r
8109             <summary>\r
8110             Integer type.\r
8111             </summary>\r
8112         </member>\r
8113         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">\r
8114             <summary>\r
8115             Boolean type.\r
8116             </summary>\r
8117         </member>\r
8118         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">\r
8119             <summary>\r
8120             Object type.\r
8121             </summary>\r
8122         </member>\r
8123         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">\r
8124             <summary>\r
8125             Array type.\r
8126             </summary>\r
8127         </member>\r
8128         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">\r
8129             <summary>\r
8130             Null type.\r
8131             </summary>\r
8132         </member>\r
8133         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">\r
8134             <summary>\r
8135             Any type.\r
8136             </summary>\r
8137         </member>\r
8138         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">\r
8139             <summary>\r
8140             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8141             </summary>\r
8142         </member>\r
8143         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">\r
8144             <summary>\r
8145             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.\r
8146             </summary>\r
8147             <param name="underlyingType">The underlying type for the contract.</param>\r
8148         </member>\r
8149         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">\r
8150             <summary>\r
8151             Gets or sets the object member serialization.\r
8152             </summary>\r
8153             <value>The member object serialization.</value>\r
8154         </member>\r
8155         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">\r
8156             <summary>\r
8157             Gets or sets a value that indicates whether the object's properties are required.\r
8158             </summary>\r
8159             <value>\r
8160                 A value indicating whether the object's properties are required.\r
8161             </value>\r
8162         </member>\r
8163         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">\r
8164             <summary>\r
8165             Gets the object's properties.\r
8166             </summary>\r
8167             <value>The object's properties.</value>\r
8168         </member>\r
8169         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">\r
8170             <summary>\r
8171             Gets the constructor parameters required for any non-default constructor\r
8172             </summary>\r
8173         </member>\r
8174         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">\r
8175             <summary>\r
8176             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"/>.\r
8177             </summary>\r
8178         </member>\r
8179         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">\r
8180             <summary>\r
8181             Gets or sets the override constructor used to create the object.\r
8182             This is set when a constructor is marked up using the\r
8183             JsonConstructor attribute.\r
8184             </summary>\r
8185             <value>The override constructor.</value>\r
8186         </member>\r
8187         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">\r
8188             <summary>\r
8189             Gets or sets the parametrized constructor used to create the object.\r
8190             </summary>\r
8191             <value>The parametrized constructor.</value>\r
8192         </member>\r
8193         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">\r
8194             <summary>\r
8195             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.\r
8196             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.\r
8197             </summary>\r
8198             <value>The function used to create the object.</value>\r
8199         </member>\r
8200         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">\r
8201             <summary>\r
8202             Gets or sets the extension data setter.\r
8203             </summary>\r
8204         </member>\r
8205         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">\r
8206             <summary>\r
8207             Gets or sets the extension data getter.\r
8208             </summary>\r
8209         </member>\r
8210         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">\r
8211             <summary>\r
8212             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8213             </summary>\r
8214         </member>\r
8215         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">\r
8216             <summary>\r
8217             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.\r
8218             </summary>\r
8219             <param name="underlyingType">The underlying type for the contract.</param>\r
8220         </member>\r
8221         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">\r
8222             <summary>\r
8223             Lookup and create an instance of the JsonConverter type described by the argument.\r
8224             </summary>\r
8225             <param name="converterType">The JsonConverter type to create.</param>\r
8226             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.\r
8227             If null, the default constructor is used.</param>\r
8228         </member>\r
8229         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">\r
8230             <summary>\r
8231             Create a factory function that can be used to create instances of a JsonConverter described by the \r
8232             argument type.  The returned function can then be used to either invoke the converter's default ctor, or any \r
8233             parameterized constructors by way of an object array.\r
8234             </summary>\r
8235         </member>\r
8236         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">\r
8237             <summary>\r
8238             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.\r
8239             </summary>\r
8240         </member>\r
8241         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">\r
8242             <summary>\r
8243             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.\r
8244             </summary>\r
8245             <param name="memberInfo">The member info.</param>\r
8246         </member>\r
8247         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">\r
8248             <summary>\r
8249             Sets the value.\r
8250             </summary>\r
8251             <param name="target">The target to set the value on.</param>\r
8252             <param name="value">The value to set on the target.</param>\r
8253         </member>\r
8254         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">\r
8255             <summary>\r
8256             Gets the value.\r
8257             </summary>\r
8258             <param name="target">The target to get the value from.</param>\r
8259             <returns>The value.</returns>\r
8260         </member>\r
8261         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">\r
8262             <summary>\r
8263             When applied to a method, specifies that the method is called when an error occurs serializing an object.\r
8264             </summary>\r
8265         </member>\r
8266         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">\r
8267             <summary>\r
8268             Represents a method that constructs an object.\r
8269             </summary>\r
8270             <typeparam name="T">The object type to create.</typeparam>\r
8271         </member>\r
8272         <member name="T:Newtonsoft.Json.TypeNameHandling">\r
8273             <summary>\r
8274             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8275             </summary>\r
8276         </member>\r
8277         <member name="F:Newtonsoft.Json.TypeNameHandling.None">\r
8278             <summary>\r
8279             Do not include the .NET type name when serializing types.\r
8280             </summary>\r
8281         </member>\r
8282         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">\r
8283             <summary>\r
8284             Include the .NET type name when serializing into a JSON object structure.\r
8285             </summary>\r
8286         </member>\r
8287         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">\r
8288             <summary>\r
8289             Include the .NET type name when serializing into a JSON array structure.\r
8290             </summary>\r
8291         </member>\r
8292         <member name="F:Newtonsoft.Json.TypeNameHandling.All">\r
8293             <summary>\r
8294             Always include the .NET type name when serializing.\r
8295             </summary>\r
8296         </member>\r
8297         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">\r
8298             <summary>\r
8299             Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r
8300             </summary>\r
8301         </member>\r
8302         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">\r
8303             <summary>\r
8304             Converts the value to the specified type. If the value is unable to be converted, the\r
8305             value is checked whether it assignable to the specified type.\r
8306             </summary>\r
8307             <param name="initialValue">The value to convert.</param>\r
8308             <param name="culture">The culture to use when converting.</param>\r
8309             <param name="targetType">The type to convert or cast the value to.</param>\r
8310             <returns>\r
8311             The converted type. If conversion was unsuccessful, the initial value\r
8312             is returned if assignable to the target type.\r
8313             </returns>\r
8314         </member>\r
8315         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">\r
8316             <summary>\r
8317             Gets a dictionary of the names and values of an Enum type.\r
8318             </summary>\r
8319             <returns></returns>\r
8320         </member>\r
8321         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">\r
8322             <summary>\r
8323             Gets a dictionary of the names and values of an Enum type.\r
8324             </summary>\r
8325             <param name="enumType">The enum type to get names and values for.</param>\r
8326             <returns></returns>\r
8327         </member>\r
8328         <member name="T:Newtonsoft.Json.JsonToken">\r
8329             <summary>\r
8330             Specifies the type of JSON token.\r
8331             </summary>\r
8332         </member>\r
8333         <member name="F:Newtonsoft.Json.JsonToken.None">\r
8334             <summary>\r
8335             This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a <see cref="M:Newtonsoft.Json.JsonReader.Read"/> method has not been called. \r
8336             </summary>\r
8337         </member>\r
8338         <member name="F:Newtonsoft.Json.JsonToken.StartObject">\r
8339             <summary>\r
8340             An object start token.\r
8341             </summary>\r
8342         </member>\r
8343         <member name="F:Newtonsoft.Json.JsonToken.StartArray">\r
8344             <summary>\r
8345             An array start token.\r
8346             </summary>\r
8347         </member>\r
8348         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">\r
8349             <summary>\r
8350             A constructor start token.\r
8351             </summary>\r
8352         </member>\r
8353         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">\r
8354             <summary>\r
8355             An object property name.\r
8356             </summary>\r
8357         </member>\r
8358         <member name="F:Newtonsoft.Json.JsonToken.Comment">\r
8359             <summary>\r
8360             A comment.\r
8361             </summary>\r
8362         </member>\r
8363         <member name="F:Newtonsoft.Json.JsonToken.Raw">\r
8364             <summary>\r
8365             Raw JSON.\r
8366             </summary>\r
8367         </member>\r
8368         <member name="F:Newtonsoft.Json.JsonToken.Integer">\r
8369             <summary>\r
8370             An integer.\r
8371             </summary>\r
8372         </member>\r
8373         <member name="F:Newtonsoft.Json.JsonToken.Float">\r
8374             <summary>\r
8375             A float.\r
8376             </summary>\r
8377         </member>\r
8378         <member name="F:Newtonsoft.Json.JsonToken.String">\r
8379             <summary>\r
8380             A string.\r
8381             </summary>\r
8382         </member>\r
8383         <member name="F:Newtonsoft.Json.JsonToken.Boolean">\r
8384             <summary>\r
8385             A boolean.\r
8386             </summary>\r
8387         </member>\r
8388         <member name="F:Newtonsoft.Json.JsonToken.Null">\r
8389             <summary>\r
8390             A null token.\r
8391             </summary>\r
8392         </member>\r
8393         <member name="F:Newtonsoft.Json.JsonToken.Undefined">\r
8394             <summary>\r
8395             An undefined token.\r
8396             </summary>\r
8397         </member>\r
8398         <member name="F:Newtonsoft.Json.JsonToken.EndObject">\r
8399             <summary>\r
8400             An object end token.\r
8401             </summary>\r
8402         </member>\r
8403         <member name="F:Newtonsoft.Json.JsonToken.EndArray">\r
8404             <summary>\r
8405             An array end token.\r
8406             </summary>\r
8407         </member>\r
8408         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">\r
8409             <summary>\r
8410             A constructor end token.\r
8411             </summary>\r
8412         </member>\r
8413         <member name="F:Newtonsoft.Json.JsonToken.Date">\r
8414             <summary>\r
8415             A Date.\r
8416             </summary>\r
8417         </member>\r
8418         <member name="F:Newtonsoft.Json.JsonToken.Bytes">\r
8419             <summary>\r
8420             Byte data.\r
8421             </summary>\r
8422         </member>\r
8423         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">\r
8424             <summary>\r
8425             Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r
8426             </summary>\r
8427         </member>\r
8428         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">\r
8429             <summary>\r
8430             Determines whether the collection is null or empty.\r
8431             </summary>\r
8432             <param name="collection">The collection.</param>\r
8433             <returns>\r
8434                 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r
8435             </returns>\r
8436         </member>\r
8437         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">\r
8438             <summary>\r
8439             Adds the elements of the specified collection to the specified generic IList.\r
8440             </summary>\r
8441             <param name="initial">The list to add to.</param>\r
8442             <param name="collection">The collection of elements to add.</param>\r
8443         </member>\r
8444         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">\r
8445             <summary>\r
8446             Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer{TSource}.\r
8447             </summary>\r
8448             <typeparam name="TSource">The type of the elements of source.</typeparam>\r
8449             <param name="list">A sequence in which to locate a value.</param>\r
8450             <param name="value">The object to locate in the sequence</param>\r
8451             <param name="comparer">An equality comparer to compare values.</param>\r
8452             <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r
8453         </member>\r
8454         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">\r
8455             <summary>\r
8456             Gets the type of the typed collection's items.\r
8457             </summary>\r
8458             <param name="type">The type.</param>\r
8459             <returns>The type of the typed collection's items.</returns>\r
8460         </member>\r
8461         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">\r
8462             <summary>\r
8463             Gets the member's underlying type.\r
8464             </summary>\r
8465             <param name="member">The member.</param>\r
8466             <returns>The underlying type of the member.</returns>\r
8467         </member>\r
8468         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">\r
8469             <summary>\r
8470             Determines whether the member is an indexed property.\r
8471             </summary>\r
8472             <param name="member">The member.</param>\r
8473             <returns>\r
8474                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r
8475             </returns>\r
8476         </member>\r
8477         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">\r
8478             <summary>\r
8479             Determines whether the property is an indexed property.\r
8480             </summary>\r
8481             <param name="property">The property.</param>\r
8482             <returns>\r
8483                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r
8484             </returns>\r
8485         </member>\r
8486         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">\r
8487             <summary>\r
8488             Gets the member's value on the object.\r
8489             </summary>\r
8490             <param name="member">The member.</param>\r
8491             <param name="target">The target object.</param>\r
8492             <returns>The member's value on the object.</returns>\r
8493         </member>\r
8494         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">\r
8495             <summary>\r
8496             Sets the member's value on the target object.\r
8497             </summary>\r
8498             <param name="member">The member.</param>\r
8499             <param name="target">The target.</param>\r
8500             <param name="value">The value.</param>\r
8501         </member>\r
8502         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">\r
8503             <summary>\r
8504             Determines whether the specified MemberInfo can be read.\r
8505             </summary>\r
8506             <param name="member">The MemberInfo to determine whether can be read.</param>\r
8507             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r
8508             <returns>\r
8509                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r
8510             </returns>\r
8511         </member>\r
8512         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">\r
8513             <summary>\r
8514             Determines whether the specified MemberInfo can be set.\r
8515             </summary>\r
8516             <param name="member">The MemberInfo to determine whether can be set.</param>\r
8517             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r
8518             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>\r
8519             <returns>\r
8520                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r
8521             </returns>\r
8522         </member>\r
8523         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">\r
8524             <summary>\r
8525             Determines whether the string is all white space. Empty string will return false.\r
8526             </summary>\r
8527             <param name="s">The string to test whether it is all white space.</param>\r
8528             <returns>\r
8529                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.\r
8530             </returns>\r
8531         </member>\r
8532         <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">\r
8533             <summary>\r
8534             Nulls an empty string.\r
8535             </summary>\r
8536             <param name="s">The string.</param>\r
8537             <returns>Null if the string was null, otherwise the string unchanged.</returns>\r
8538         </member>\r
8539         <member name="T:Newtonsoft.Json.WriteState">\r
8540             <summary>\r
8541             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
8542             </summary>\r
8543         </member>\r
8544         <member name="F:Newtonsoft.Json.WriteState.Error">\r
8545             <summary>\r
8546             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.\r
8547             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.\r
8548             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. \r
8549             </summary>\r
8550         </member>\r
8551         <member name="F:Newtonsoft.Json.WriteState.Closed">\r
8552             <summary>\r
8553             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. \r
8554             </summary>\r
8555         </member>\r
8556         <member name="F:Newtonsoft.Json.WriteState.Object">\r
8557             <summary>\r
8558             An object is being written. \r
8559             </summary>\r
8560         </member>\r
8561         <member name="F:Newtonsoft.Json.WriteState.Array">\r
8562             <summary>\r
8563             A array is being written.\r
8564             </summary>\r
8565         </member>\r
8566         <member name="F:Newtonsoft.Json.WriteState.Constructor">\r
8567             <summary>\r
8568             A constructor is being written.\r
8569             </summary>\r
8570         </member>\r
8571         <member name="F:Newtonsoft.Json.WriteState.Property">\r
8572             <summary>\r
8573             A property is being written.\r
8574             </summary>\r
8575         </member>\r
8576         <member name="F:Newtonsoft.Json.WriteState.Start">\r
8577             <summary>\r
8578             A write method has not been called.\r
8579             </summary>\r
8580         </member>\r
8581     </members>\r
8582 </doc>\r