Add Newtonsoft.Json NuGet package
[StratumLibrary.git] / packages / Newtonsoft.Json.7.0.1 / lib / net20 / 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.BsonObjectId">\r
8             <summary>\r
9             Represents a BSON Oid (object id).\r
10             </summary>\r
11         </member>\r
12         <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">\r
13             <summary>\r
14             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.\r
15             </summary>\r
16             <param name="value">The Oid value.</param>\r
17         </member>\r
18         <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">\r
19             <summary>\r
20             Gets or sets the value of the Oid.\r
21             </summary>\r
22             <value>The value of the Oid.</value>\r
23         </member>\r
24         <member name="T:Newtonsoft.Json.Bson.BsonReader">\r
25             <summary>\r
26             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
27             </summary>\r
28         </member>\r
29         <member name="T:Newtonsoft.Json.JsonReader">\r
30             <summary>\r
31             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
32             </summary>\r
33         </member>\r
34         <member name="M:Newtonsoft.Json.JsonReader.#ctor">\r
35             <summary>\r
36             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.\r
37             </summary>\r
38         </member>\r
39         <member name="M:Newtonsoft.Json.JsonReader.Read">\r
40             <summary>\r
41             Reads the next JSON token from the stream.\r
42             </summary>\r
43             <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r
44         </member>\r
45         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">\r
46             <summary>\r
47             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
48             </summary>\r
49             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
50         </member>\r
51         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">\r
52             <summary>\r
53             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
54             </summary>\r
55             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
56         </member>\r
57         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">\r
58             <summary>\r
59             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
60             </summary>\r
61             <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
62         </member>\r
63         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">\r
64             <summary>\r
65             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
66             </summary>\r
67             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
68         </member>\r
69         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">\r
70             <summary>\r
71             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
72             </summary>\r
73             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
74         </member>\r
75         <member name="M:Newtonsoft.Json.JsonReader.Skip">\r
76             <summary>\r
77             Skips the children of the current token.\r
78             </summary>\r
79         </member>\r
80         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">\r
81             <summary>\r
82             Sets the current token.\r
83             </summary>\r
84             <param name="newToken">The new token.</param>\r
85         </member>\r
86         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">\r
87             <summary>\r
88             Sets the current token and value.\r
89             </summary>\r
90             <param name="newToken">The new token.</param>\r
91             <param name="value">The value.</param>\r
92         </member>\r
93         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">\r
94             <summary>\r
95             Sets the state based on current token type.\r
96             </summary>\r
97         </member>\r
98         <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">\r
99             <summary>\r
100             Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r
101             </summary>\r
102         </member>\r
103         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">\r
104             <summary>\r
105             Releases unmanaged and - optionally - managed resources\r
106             </summary>\r
107             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r
108         </member>\r
109         <member name="M:Newtonsoft.Json.JsonReader.Close">\r
110             <summary>\r
111             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. \r
112             </summary>\r
113         </member>\r
114         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">\r
115             <summary>\r
116             Gets the current reader state.\r
117             </summary>\r
118             <value>The current reader state.</value>\r
119         </member>\r
120         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">\r
121             <summary>\r
122             Gets or sets a value indicating whether the underlying stream or\r
123             <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.\r
124             </summary>\r
125             <value>\r
126             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when\r
127             the reader is closed; otherwise false. The default is true.\r
128             </value>\r
129         </member>\r
130         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">\r
131             <summary>\r
132             Gets or sets a value indicating whether multiple pieces of JSON content can\r
133             be read from a continuous stream without erroring.\r
134             </summary>\r
135             <value>\r
136             true to support reading multiple pieces of JSON content; otherwise false. The default is false.\r
137             </value>\r
138         </member>\r
139         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">\r
140             <summary>\r
141             Gets the quotation mark character used to enclose the value of a string.\r
142             </summary>\r
143         </member>\r
144         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">\r
145             <summary>\r
146             Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.\r
147             </summary>\r
148         </member>\r
149         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">\r
150             <summary>\r
151             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
152             </summary>\r
153         </member>\r
154         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">\r
155             <summary>\r
156             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
157             </summary>\r
158         </member>\r
159         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">\r
160             <summary>\r
161             Get or set how custom date formatted strings are parsed when reading JSON.\r
162             </summary>\r
163         </member>\r
164         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">\r
165             <summary>\r
166             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
167             </summary>\r
168         </member>\r
169         <member name="P:Newtonsoft.Json.JsonReader.TokenType">\r
170             <summary>\r
171             Gets the type of the current JSON token. \r
172             </summary>\r
173         </member>\r
174         <member name="P:Newtonsoft.Json.JsonReader.Value">\r
175             <summary>\r
176             Gets the text value of the current JSON token.\r
177             </summary>\r
178         </member>\r
179         <member name="P:Newtonsoft.Json.JsonReader.ValueType">\r
180             <summary>\r
181             Gets The Common Language Runtime (CLR) type for the current JSON token.\r
182             </summary>\r
183         </member>\r
184         <member name="P:Newtonsoft.Json.JsonReader.Depth">\r
185             <summary>\r
186             Gets the depth of the current token in the JSON document.\r
187             </summary>\r
188             <value>The depth of the current token in the JSON document.</value>\r
189         </member>\r
190         <member name="P:Newtonsoft.Json.JsonReader.Path">\r
191             <summary>\r
192             Gets the path of the current JSON token. \r
193             </summary>\r
194         </member>\r
195         <member name="P:Newtonsoft.Json.JsonReader.Culture">\r
196             <summary>\r
197             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
198             </summary>\r
199         </member>\r
200         <member name="T:Newtonsoft.Json.JsonReader.State">\r
201             <summary>\r
202             Specifies the state of the reader.\r
203             </summary>\r
204         </member>\r
205         <member name="F:Newtonsoft.Json.JsonReader.State.Start">\r
206             <summary>\r
207             The Read method has not been called.\r
208             </summary>\r
209         </member>\r
210         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">\r
211             <summary>\r
212             The end of the file has been reached successfully.\r
213             </summary>\r
214         </member>\r
215         <member name="F:Newtonsoft.Json.JsonReader.State.Property">\r
216             <summary>\r
217             Reader is at a property.\r
218             </summary>\r
219         </member>\r
220         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">\r
221             <summary>\r
222             Reader is at the start of an object.\r
223             </summary>\r
224         </member>\r
225         <member name="F:Newtonsoft.Json.JsonReader.State.Object">\r
226             <summary>\r
227             Reader is in an object.\r
228             </summary>\r
229         </member>\r
230         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">\r
231             <summary>\r
232             Reader is at the start of an array.\r
233             </summary>\r
234         </member>\r
235         <member name="F:Newtonsoft.Json.JsonReader.State.Array">\r
236             <summary>\r
237             Reader is in an array.\r
238             </summary>\r
239         </member>\r
240         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">\r
241             <summary>\r
242             The Close method has been called.\r
243             </summary>\r
244         </member>\r
245         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">\r
246             <summary>\r
247             Reader has just read a value.\r
248             </summary>\r
249         </member>\r
250         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">\r
251             <summary>\r
252             Reader is at the start of a constructor.\r
253             </summary>\r
254         </member>\r
255         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">\r
256             <summary>\r
257             Reader in a constructor.\r
258             </summary>\r
259         </member>\r
260         <member name="F:Newtonsoft.Json.JsonReader.State.Error">\r
261             <summary>\r
262             An error occurred that prevents the read operation from continuing.\r
263             </summary>\r
264         </member>\r
265         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">\r
266             <summary>\r
267             The end of the file has been reached successfully.\r
268             </summary>\r
269         </member>\r
270         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">\r
271             <summary>\r
272             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
273             </summary>\r
274             <param name="stream">The stream.</param>\r
275         </member>\r
276         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">\r
277             <summary>\r
278             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
279             </summary>\r
280             <param name="reader">The reader.</param>\r
281         </member>\r
282         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">\r
283             <summary>\r
284             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
285             </summary>\r
286             <param name="stream">The stream.</param>\r
287             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>\r
288             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>\r
289         </member>\r
290         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">\r
291             <summary>\r
292             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.\r
293             </summary>\r
294             <param name="reader">The reader.</param>\r
295             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>\r
296             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>\r
297         </member>\r
298         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">\r
299             <summary>\r
300             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
301             </summary>\r
302             <returns>\r
303             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
304             </returns>\r
305         </member>\r
306         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">\r
307             <summary>\r
308             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
309             </summary>\r
310             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
311         </member>\r
312         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">\r
313             <summary>\r
314             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
315             </summary>\r
316             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
317         </member>\r
318         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">\r
319             <summary>\r
320             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
321             </summary>\r
322             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
323         </member>\r
324         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">\r
325             <summary>\r
326             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
327             </summary>\r
328             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
329         </member>\r
330         <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">\r
331             <summary>\r
332             Reads the next JSON token from the stream.\r
333             </summary>\r
334             <returns>\r
335             true if the next token was read successfully; false if there are no more tokens to read.\r
336             </returns>\r
337         </member>\r
338         <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">\r
339             <summary>\r
340             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.\r
341             </summary>\r
342         </member>\r
343         <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">\r
344             <summary>\r
345             Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r
346             </summary>\r
347             <value>\r
348                 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r
349             </value>\r
350         </member>\r
351         <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">\r
352             <summary>\r
353             Gets or sets a value indicating whether the root object will be read as a JSON array.\r
354             </summary>\r
355             <value>\r
356                 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r
357             </value>\r
358         </member>\r
359         <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">\r
360             <summary>\r
361             Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.\r
362             </summary>\r
363             <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>\r
364         </member>\r
365         <member name="T:Newtonsoft.Json.Bson.BsonWriter">\r
366             <summary>\r
367             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
368             </summary>\r
369         </member>\r
370         <member name="T:Newtonsoft.Json.JsonWriter">\r
371             <summary>\r
372             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
373             </summary>\r
374         </member>\r
375         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">\r
376             <summary>\r
377             Creates an instance of the <c>JsonWriter</c> class. \r
378             </summary>\r
379         </member>\r
380         <member name="M:Newtonsoft.Json.JsonWriter.Flush">\r
381             <summary>\r
382             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
383             </summary>\r
384         </member>\r
385         <member name="M:Newtonsoft.Json.JsonWriter.Close">\r
386             <summary>\r
387             Closes this stream and the underlying stream.\r
388             </summary>\r
389         </member>\r
390         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">\r
391             <summary>\r
392             Writes the beginning of a JSON object.\r
393             </summary>\r
394         </member>\r
395         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">\r
396             <summary>\r
397             Writes the end of a JSON object.\r
398             </summary>\r
399         </member>\r
400         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">\r
401             <summary>\r
402             Writes the beginning of a JSON array.\r
403             </summary>\r
404         </member>\r
405         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">\r
406             <summary>\r
407             Writes the end of an array.\r
408             </summary>\r
409         </member>\r
410         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">\r
411             <summary>\r
412             Writes the start of a constructor with the given name.\r
413             </summary>\r
414             <param name="name">The name of the constructor.</param>\r
415         </member>\r
416         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">\r
417             <summary>\r
418             Writes the end constructor.\r
419             </summary>\r
420         </member>\r
421         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">\r
422             <summary>\r
423             Writes the property name of a name/value pair on a JSON object.\r
424             </summary>\r
425             <param name="name">The name of the property.</param>\r
426         </member>\r
427         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">\r
428             <summary>\r
429             Writes the property name of a name/value pair on a JSON object.\r
430             </summary>\r
431             <param name="name">The name of the property.</param>\r
432             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>\r
433         </member>\r
434         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">\r
435             <summary>\r
436             Writes the end of the current JSON object or array.\r
437             </summary>\r
438         </member>\r
439         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">\r
440             <summary>\r
441             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.\r
442             </summary>\r
443             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>\r
444         </member>\r
445         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">\r
446             <summary>\r
447             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.\r
448             </summary>\r
449             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>\r
450             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>\r
451         </member>\r
452         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">\r
453             <summary>\r
454             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.\r
455             </summary>\r
456             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>\r
457             <param name="value">\r
458             The value to write.\r
459             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
460             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
461         </member>\r
462         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">\r
463             <summary>\r
464             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.\r
465             </summary>\r
466             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>\r
467         </member>\r
468         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
469             <summary>\r
470             Writes the specified end token.\r
471             </summary>\r
472             <param name="token">The end token to write.</param>\r
473         </member>\r
474         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">\r
475             <summary>\r
476             Writes indent characters.\r
477             </summary>\r
478         </member>\r
479         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">\r
480             <summary>\r
481             Writes the JSON value delimiter.\r
482             </summary>\r
483         </member>\r
484         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">\r
485             <summary>\r
486             Writes an indent space.\r
487             </summary>\r
488         </member>\r
489         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">\r
490             <summary>\r
491             Writes a null value.\r
492             </summary>\r
493         </member>\r
494         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">\r
495             <summary>\r
496             Writes an undefined value.\r
497             </summary>\r
498         </member>\r
499         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">\r
500             <summary>\r
501             Writes raw JSON without changing the writer's state.\r
502             </summary>\r
503             <param name="json">The raw JSON to write.</param>\r
504         </member>\r
505         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">\r
506             <summary>\r
507             Writes raw JSON where a value is expected and updates the writer's state.\r
508             </summary>\r
509             <param name="json">The raw JSON to write.</param>\r
510         </member>\r
511         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">\r
512             <summary>\r
513             Writes a <see cref="T:System.String"/> value.\r
514             </summary>\r
515             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
516         </member>\r
517         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">\r
518             <summary>\r
519             Writes a <see cref="T:System.Int32"/> value.\r
520             </summary>\r
521             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
522         </member>\r
523         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">\r
524             <summary>\r
525             Writes a <see cref="T:System.UInt32"/> value.\r
526             </summary>\r
527             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
528         </member>\r
529         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">\r
530             <summary>\r
531             Writes a <see cref="T:System.Int64"/> value.\r
532             </summary>\r
533             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
534         </member>\r
535         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">\r
536             <summary>\r
537             Writes a <see cref="T:System.UInt64"/> value.\r
538             </summary>\r
539             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
540         </member>\r
541         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">\r
542             <summary>\r
543             Writes a <see cref="T:System.Single"/> value.\r
544             </summary>\r
545             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
546         </member>\r
547         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">\r
548             <summary>\r
549             Writes a <see cref="T:System.Double"/> value.\r
550             </summary>\r
551             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
552         </member>\r
553         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">\r
554             <summary>\r
555             Writes a <see cref="T:System.Boolean"/> value.\r
556             </summary>\r
557             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
558         </member>\r
559         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">\r
560             <summary>\r
561             Writes a <see cref="T:System.Int16"/> value.\r
562             </summary>\r
563             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
564         </member>\r
565         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">\r
566             <summary>\r
567             Writes a <see cref="T:System.UInt16"/> value.\r
568             </summary>\r
569             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
570         </member>\r
571         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">\r
572             <summary>\r
573             Writes a <see cref="T:System.Char"/> value.\r
574             </summary>\r
575             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
576         </member>\r
577         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">\r
578             <summary>\r
579             Writes a <see cref="T:System.Byte"/> value.\r
580             </summary>\r
581             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
582         </member>\r
583         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">\r
584             <summary>\r
585             Writes a <see cref="T:System.SByte"/> value.\r
586             </summary>\r
587             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
588         </member>\r
589         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">\r
590             <summary>\r
591             Writes a <see cref="T:System.Decimal"/> value.\r
592             </summary>\r
593             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
594         </member>\r
595         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">\r
596             <summary>\r
597             Writes a <see cref="T:System.DateTime"/> value.\r
598             </summary>\r
599             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
600         </member>\r
601         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">\r
602             <summary>\r
603             Writes a <see cref="T:System.Guid"/> value.\r
604             </summary>\r
605             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
606         </member>\r
607         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">\r
608             <summary>\r
609             Writes a <see cref="T:System.TimeSpan"/> value.\r
610             </summary>\r
611             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
612         </member>\r
613         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">\r
614             <summary>\r
615             Writes a <see cref="T:System.Nullable`1"/> value.\r
616             </summary>\r
617             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
618         </member>\r
619         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">\r
620             <summary>\r
621             Writes a <see cref="T:System.Nullable`1"/> value.\r
622             </summary>\r
623             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
624         </member>\r
625         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">\r
626             <summary>\r
627             Writes a <see cref="T:System.Nullable`1"/> value.\r
628             </summary>\r
629             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
630         </member>\r
631         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">\r
632             <summary>\r
633             Writes a <see cref="T:System.Nullable`1"/> value.\r
634             </summary>\r
635             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
636         </member>\r
637         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">\r
638             <summary>\r
639             Writes a <see cref="T:System.Nullable`1"/> value.\r
640             </summary>\r
641             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
642         </member>\r
643         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">\r
644             <summary>\r
645             Writes a <see cref="T:System.Nullable`1"/> value.\r
646             </summary>\r
647             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
648         </member>\r
649         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">\r
650             <summary>\r
651             Writes a <see cref="T:System.Nullable`1"/> value.\r
652             </summary>\r
653             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
654         </member>\r
655         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">\r
656             <summary>\r
657             Writes a <see cref="T:System.Nullable`1"/> value.\r
658             </summary>\r
659             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
660         </member>\r
661         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">\r
662             <summary>\r
663             Writes a <see cref="T:System.Nullable`1"/> value.\r
664             </summary>\r
665             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
666         </member>\r
667         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">\r
668             <summary>\r
669             Writes a <see cref="T:System.Nullable`1"/> value.\r
670             </summary>\r
671             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
672         </member>\r
673         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">\r
674             <summary>\r
675             Writes a <see cref="T:System.Nullable`1"/> value.\r
676             </summary>\r
677             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
678         </member>\r
679         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">\r
680             <summary>\r
681             Writes a <see cref="T:System.Nullable`1"/> value.\r
682             </summary>\r
683             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
684         </member>\r
685         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">\r
686             <summary>\r
687             Writes a <see cref="T:System.Nullable`1"/> value.\r
688             </summary>\r
689             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
690         </member>\r
691         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">\r
692             <summary>\r
693             Writes a <see cref="T:System.Nullable`1"/> value.\r
694             </summary>\r
695             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
696         </member>\r
697         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">\r
698             <summary>\r
699             Writes a <see cref="T:System.Nullable`1"/> value.\r
700             </summary>\r
701             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
702         </member>\r
703         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">\r
704             <summary>\r
705             Writes a <see cref="T:System.Nullable`1"/> value.\r
706             </summary>\r
707             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
708         </member>\r
709         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">\r
710             <summary>\r
711             Writes a <see cref="T:System.Byte"/>[] value.\r
712             </summary>\r
713             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
714         </member>\r
715         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">\r
716             <summary>\r
717             Writes a <see cref="T:System.Uri"/> value.\r
718             </summary>\r
719             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
720         </member>\r
721         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">\r
722             <summary>\r
723             Writes a <see cref="T:System.Object"/> value.\r
724             An error will raised if the value cannot be written as a single JSON token.\r
725             </summary>\r
726             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
727         </member>\r
728         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">\r
729             <summary>\r
730             Writes out a comment <code>/*...*/</code> containing the specified text. \r
731             </summary>\r
732             <param name="text">Text to place inside the comment.</param>\r
733         </member>\r
734         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">\r
735             <summary>\r
736             Writes out the given white space.\r
737             </summary>\r
738             <param name="ws">The string of white space characters.</param>\r
739         </member>\r
740         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">\r
741             <summary>\r
742             Sets the state of the JsonWriter,\r
743             </summary>\r
744             <param name="token">The JsonToken being written.</param>\r
745             <param name="value">The value being written.</param>\r
746         </member>\r
747         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">\r
748             <summary>\r
749             Gets or sets a value indicating whether the underlying stream or\r
750             <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.\r
751             </summary>\r
752             <value>\r
753             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when\r
754             the writer is closed; otherwise false. The default is true.\r
755             </value>\r
756         </member>\r
757         <member name="P:Newtonsoft.Json.JsonWriter.Top">\r
758             <summary>\r
759             Gets the top.\r
760             </summary>\r
761             <value>The top.</value>\r
762         </member>\r
763         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">\r
764             <summary>\r
765             Gets the state of the writer.\r
766             </summary>\r
767         </member>\r
768         <member name="P:Newtonsoft.Json.JsonWriter.Path">\r
769             <summary>\r
770             Gets the path of the writer. \r
771             </summary>\r
772         </member>\r
773         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">\r
774             <summary>\r
775             Indicates how JSON text output is formatted.\r
776             </summary>\r
777         </member>\r
778         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">\r
779             <summary>\r
780             Get or set how dates are written to JSON text.\r
781             </summary>\r
782         </member>\r
783         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">\r
784             <summary>\r
785             Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.\r
786             </summary>\r
787         </member>\r
788         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">\r
789             <summary>\r
790             Get or set how strings are escaped when writing JSON text.\r
791             </summary>\r
792         </member>\r
793         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">\r
794             <summary>\r
795             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
796             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
797             are written to JSON text.\r
798             </summary>\r
799         </member>\r
800         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">\r
801             <summary>\r
802             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.\r
803             </summary>\r
804         </member>\r
805         <member name="P:Newtonsoft.Json.JsonWriter.Culture">\r
806             <summary>\r
807             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
808             </summary>\r
809         </member>\r
810         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">\r
811             <summary>\r
812             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.\r
813             </summary>\r
814             <param name="stream">The stream.</param>\r
815         </member>\r
816         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">\r
817             <summary>\r
818             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.\r
819             </summary>\r
820             <param name="writer">The writer.</param>\r
821         </member>\r
822         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">\r
823             <summary>\r
824             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
825             </summary>\r
826         </member>\r
827         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
828             <summary>\r
829             Writes the end.\r
830             </summary>\r
831             <param name="token">The token.</param>\r
832         </member>\r
833         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">\r
834             <summary>\r
835             Writes out a comment <code>/*...*/</code> containing the specified text.\r
836             </summary>\r
837             <param name="text">Text to place inside the comment.</param>\r
838         </member>\r
839         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">\r
840             <summary>\r
841             Writes the start of a constructor with the given name.\r
842             </summary>\r
843             <param name="name">The name of the constructor.</param>\r
844         </member>\r
845         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">\r
846             <summary>\r
847             Writes raw JSON.\r
848             </summary>\r
849             <param name="json">The raw JSON to write.</param>\r
850         </member>\r
851         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">\r
852             <summary>\r
853             Writes raw JSON where a value is expected and updates the writer's state.\r
854             </summary>\r
855             <param name="json">The raw JSON to write.</param>\r
856         </member>\r
857         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">\r
858             <summary>\r
859             Writes the beginning of a JSON array.\r
860             </summary>\r
861         </member>\r
862         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">\r
863             <summary>\r
864             Writes the beginning of a JSON object.\r
865             </summary>\r
866         </member>\r
867         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">\r
868             <summary>\r
869             Writes the property name of a name/value pair on a JSON object.\r
870             </summary>\r
871             <param name="name">The name of the property.</param>\r
872         </member>\r
873         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">\r
874             <summary>\r
875             Closes this stream and the underlying stream.\r
876             </summary>\r
877         </member>\r
878         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">\r
879             <summary>\r
880             Writes a <see cref="T:System.Object"/> value.\r
881             An error will raised if the value cannot be written as a single JSON token.\r
882             </summary>\r
883             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
884         </member>\r
885         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">\r
886             <summary>\r
887             Writes a null value.\r
888             </summary>\r
889         </member>\r
890         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">\r
891             <summary>\r
892             Writes an undefined value.\r
893             </summary>\r
894         </member>\r
895         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">\r
896             <summary>\r
897             Writes a <see cref="T:System.String"/> value.\r
898             </summary>\r
899             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
900         </member>\r
901         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">\r
902             <summary>\r
903             Writes a <see cref="T:System.Int32"/> value.\r
904             </summary>\r
905             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
906         </member>\r
907         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">\r
908             <summary>\r
909             Writes a <see cref="T:System.UInt32"/> value.\r
910             </summary>\r
911             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
912         </member>\r
913         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">\r
914             <summary>\r
915             Writes a <see cref="T:System.Int64"/> value.\r
916             </summary>\r
917             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
918         </member>\r
919         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">\r
920             <summary>\r
921             Writes a <see cref="T:System.UInt64"/> value.\r
922             </summary>\r
923             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
924         </member>\r
925         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">\r
926             <summary>\r
927             Writes a <see cref="T:System.Single"/> value.\r
928             </summary>\r
929             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
930         </member>\r
931         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">\r
932             <summary>\r
933             Writes a <see cref="T:System.Double"/> value.\r
934             </summary>\r
935             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
936         </member>\r
937         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">\r
938             <summary>\r
939             Writes a <see cref="T:System.Boolean"/> value.\r
940             </summary>\r
941             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
942         </member>\r
943         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">\r
944             <summary>\r
945             Writes a <see cref="T:System.Int16"/> value.\r
946             </summary>\r
947             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
948         </member>\r
949         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">\r
950             <summary>\r
951             Writes a <see cref="T:System.UInt16"/> value.\r
952             </summary>\r
953             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
954         </member>\r
955         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">\r
956             <summary>\r
957             Writes a <see cref="T:System.Char"/> value.\r
958             </summary>\r
959             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
960         </member>\r
961         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">\r
962             <summary>\r
963             Writes a <see cref="T:System.Byte"/> value.\r
964             </summary>\r
965             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
966         </member>\r
967         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">\r
968             <summary>\r
969             Writes a <see cref="T:System.SByte"/> value.\r
970             </summary>\r
971             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
972         </member>\r
973         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">\r
974             <summary>\r
975             Writes a <see cref="T:System.Decimal"/> value.\r
976             </summary>\r
977             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
978         </member>\r
979         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">\r
980             <summary>\r
981             Writes a <see cref="T:System.DateTime"/> value.\r
982             </summary>\r
983             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
984         </member>\r
985         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">\r
986             <summary>\r
987             Writes a <see cref="T:System.Byte"/>[] value.\r
988             </summary>\r
989             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
990         </member>\r
991         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">\r
992             <summary>\r
993             Writes a <see cref="T:System.Guid"/> value.\r
994             </summary>\r
995             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
996         </member>\r
997         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">\r
998             <summary>\r
999             Writes a <see cref="T:System.TimeSpan"/> value.\r
1000             </summary>\r
1001             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
1002         </member>\r
1003         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">\r
1004             <summary>\r
1005             Writes a <see cref="T:System.Uri"/> value.\r
1006             </summary>\r
1007             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
1008         </member>\r
1009         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">\r
1010             <summary>\r
1011             Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.\r
1012             </summary>\r
1013             <param name="value">The Object ID value to write.</param>\r
1014         </member>\r
1015         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">\r
1016             <summary>\r
1017             Writes a BSON regex.\r
1018             </summary>\r
1019             <param name="pattern">The regex pattern.</param>\r
1020             <param name="options">The regex options.</param>\r
1021         </member>\r
1022         <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">\r
1023             <summary>\r
1024             Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.\r
1025             When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.\r
1026             </summary>\r
1027             <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>\r
1028         </member>\r
1029         <member name="T:Newtonsoft.Json.ConstructorHandling">\r
1030             <summary>\r
1031             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1032             </summary>\r
1033         </member>\r
1034         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">\r
1035             <summary>\r
1036             First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r
1037             </summary>\r
1038         </member>\r
1039         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">\r
1040             <summary>\r
1041             Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r
1042             </summary>\r
1043         </member>\r
1044         <member name="T:Newtonsoft.Json.Converters.BinaryConverter">\r
1045             <summary>\r
1046             Converts a binary value to and from a base 64 string value.\r
1047             </summary>\r
1048         </member>\r
1049         <member name="T:Newtonsoft.Json.JsonConverter">\r
1050             <summary>\r
1051             Converts an object to and from JSON.\r
1052             </summary>\r
1053         </member>\r
1054         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1055             <summary>\r
1056             Writes the JSON representation of the object.\r
1057             </summary>\r
1058             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1059             <param name="value">The value.</param>\r
1060             <param name="serializer">The calling serializer.</param>\r
1061         </member>\r
1062         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1063             <summary>\r
1064             Reads the JSON representation of the object.\r
1065             </summary>\r
1066             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1067             <param name="objectType">Type of the object.</param>\r
1068             <param name="existingValue">The existing value of object being read.</param>\r
1069             <param name="serializer">The calling serializer.</param>\r
1070             <returns>The object value.</returns>\r
1071         </member>\r
1072         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">\r
1073             <summary>\r
1074             Determines whether this instance can convert the specified object type.\r
1075             </summary>\r
1076             <param name="objectType">Type of the object.</param>\r
1077             <returns>\r
1078                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1079             </returns>\r
1080         </member>\r
1081         <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">\r
1082             <summary>\r
1083             <para>\r
1084             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.\r
1085             </para>\r
1086             <note type="caution">\r
1087             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
1088             </note>\r
1089             </summary>\r
1090             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>\r
1091         </member>\r
1092         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">\r
1093             <summary>\r
1094             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.\r
1095             </summary>\r
1096             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>\r
1097         </member>\r
1098         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">\r
1099             <summary>\r
1100             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.\r
1101             </summary>\r
1102             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>\r
1103         </member>\r
1104         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1105             <summary>\r
1106             Writes the JSON representation of the object.\r
1107             </summary>\r
1108             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1109             <param name="value">The value.</param>\r
1110             <param name="serializer">The calling serializer.</param>\r
1111         </member>\r
1112         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1113             <summary>\r
1114             Reads the JSON representation of the object.\r
1115             </summary>\r
1116             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1117             <param name="objectType">Type of the object.</param>\r
1118             <param name="existingValue">The existing value of object being read.</param>\r
1119             <param name="serializer">The calling serializer.</param>\r
1120             <returns>The object value.</returns>\r
1121         </member>\r
1122         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">\r
1123             <summary>\r
1124             Determines whether this instance can convert the specified object type.\r
1125             </summary>\r
1126             <param name="objectType">Type of the object.</param>\r
1127             <returns>\r
1128                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1129             </returns>\r
1130         </member>\r
1131         <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">\r
1132             <summary>\r
1133             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.\r
1134             </summary>\r
1135         </member>\r
1136         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1137             <summary>\r
1138             Writes the JSON representation of the object.\r
1139             </summary>\r
1140             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1141             <param name="value">The value.</param>\r
1142             <param name="serializer">The calling serializer.</param>\r
1143         </member>\r
1144         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1145             <summary>\r
1146             Reads the JSON representation of the object.\r
1147             </summary>\r
1148             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1149             <param name="objectType">Type of the object.</param>\r
1150             <param name="existingValue">The existing value of object being read.</param>\r
1151             <param name="serializer">The calling serializer.</param>\r
1152             <returns>The object value.</returns>\r
1153         </member>\r
1154         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">\r
1155             <summary>\r
1156             Determines whether this instance can convert the specified object type.\r
1157             </summary>\r
1158             <param name="objectType">Type of the object.</param>\r
1159             <returns>\r
1160                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1161             </returns>\r
1162         </member>\r
1163         <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">\r
1164             <summary>\r
1165             Create a custom object\r
1166             </summary>\r
1167             <typeparam name="T">The object type to convert.</typeparam>\r
1168         </member>\r
1169         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1170             <summary>\r
1171             Writes the JSON representation of the object.\r
1172             </summary>\r
1173             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1174             <param name="value">The value.</param>\r
1175             <param name="serializer">The calling serializer.</param>\r
1176         </member>\r
1177         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1178             <summary>\r
1179             Reads the JSON representation of the object.\r
1180             </summary>\r
1181             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1182             <param name="objectType">Type of the object.</param>\r
1183             <param name="existingValue">The existing value of object being read.</param>\r
1184             <param name="serializer">The calling serializer.</param>\r
1185             <returns>The object value.</returns>\r
1186         </member>\r
1187         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">\r
1188             <summary>\r
1189             Creates an object which will then be populated by the serializer.\r
1190             </summary>\r
1191             <param name="objectType">Type of the object.</param>\r
1192             <returns>The created object.</returns>\r
1193         </member>\r
1194         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">\r
1195             <summary>\r
1196             Determines whether this instance can convert the specified object type.\r
1197             </summary>\r
1198             <param name="objectType">Type of the object.</param>\r
1199             <returns>\r
1200                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1201             </returns>\r
1202         </member>\r
1203         <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">\r
1204             <summary>\r
1205             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.\r
1206             </summary>\r
1207             <value>\r
1208                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.\r
1209             </value>\r
1210         </member>\r
1211         <member name="T:Newtonsoft.Json.Converters.DataSetConverter">\r
1212             <summary>\r
1213             Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.\r
1214             </summary>\r
1215         </member>\r
1216         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1217             <summary>\r
1218             Writes the JSON representation of the object.\r
1219             </summary>\r
1220             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1221             <param name="value">The value.</param>\r
1222             <param name="serializer">The calling serializer.</param>\r
1223         </member>\r
1224         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1225             <summary>\r
1226             Reads the JSON representation of the object.\r
1227             </summary>\r
1228             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1229             <param name="objectType">Type of the object.</param>\r
1230             <param name="existingValue">The existing value of object being read.</param>\r
1231             <param name="serializer">The calling serializer.</param>\r
1232             <returns>The object value.</returns>\r
1233         </member>\r
1234         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">\r
1235             <summary>\r
1236             Determines whether this instance can convert the specified value type.\r
1237             </summary>\r
1238             <param name="valueType">Type of the value.</param>\r
1239             <returns>\r
1240                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
1241             </returns>\r
1242         </member>\r
1243         <member name="T:Newtonsoft.Json.Converters.DataTableConverter">\r
1244             <summary>\r
1245             Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.\r
1246             </summary>\r
1247         </member>\r
1248         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1249             <summary>\r
1250             Writes the JSON representation of the object.\r
1251             </summary>\r
1252             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1253             <param name="value">The value.</param>\r
1254             <param name="serializer">The calling serializer.</param>\r
1255         </member>\r
1256         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1257             <summary>\r
1258             Reads the JSON representation of the object.\r
1259             </summary>\r
1260             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1261             <param name="objectType">Type of the object.</param>\r
1262             <param name="existingValue">The existing value of object being read.</param>\r
1263             <param name="serializer">The calling serializer.</param>\r
1264             <returns>The object value.</returns>\r
1265         </member>\r
1266         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">\r
1267             <summary>\r
1268             Determines whether this instance can convert the specified value type.\r
1269             </summary>\r
1270             <param name="valueType">Type of the value.</param>\r
1271             <returns>\r
1272                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
1273             </returns>\r
1274         </member>\r
1275         <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">\r
1276             <summary>\r
1277             Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.\r
1278             </summary>\r
1279         </member>\r
1280         <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">\r
1281             <summary>\r
1282             Determines whether this instance can convert the specified object type.\r
1283             </summary>\r
1284             <param name="objectType">Type of the object.</param>\r
1285             <returns>\r
1286                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1287             </returns>\r
1288         </member>\r
1289         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">\r
1290             <summary>\r
1291             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.\r
1292             </summary>\r
1293         </member>\r
1294         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1295             <summary>\r
1296             Writes the JSON representation of the object.\r
1297             </summary>\r
1298             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1299             <param name="value">The value.</param>\r
1300             <param name="serializer">The calling serializer.</param>\r
1301         </member>\r
1302         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1303             <summary>\r
1304             Reads the JSON representation of the object.\r
1305             </summary>\r
1306             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1307             <param name="objectType">Type of the object.</param>\r
1308             <param name="existingValue">The existing value of object being read.</param>\r
1309             <param name="serializer">The calling serializer.</param>\r
1310             <returns>The object value.</returns>\r
1311         </member>\r
1312         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">\r
1313             <summary>\r
1314             Determines whether this instance can convert the specified object type.\r
1315             </summary>\r
1316             <param name="objectType">Type of the object.</param>\r
1317             <returns>\r
1318                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1319             </returns>\r
1320         </member>\r
1321         <member name="T:Newtonsoft.Json.Converters.RegexConverter">\r
1322             <summary>\r
1323             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.\r
1324             </summary>\r
1325         </member>\r
1326         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1327             <summary>\r
1328             Writes the JSON representation of the object.\r
1329             </summary>\r
1330             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1331             <param name="value">The value.</param>\r
1332             <param name="serializer">The calling serializer.</param>\r
1333         </member>\r
1334         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1335             <summary>\r
1336             Reads the JSON representation of the object.\r
1337             </summary>\r
1338             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1339             <param name="objectType">Type of the object.</param>\r
1340             <param name="existingValue">The existing value of object being read.</param>\r
1341             <param name="serializer">The calling serializer.</param>\r
1342             <returns>The object value.</returns>\r
1343         </member>\r
1344         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">\r
1345             <summary>\r
1346             Determines whether this instance can convert the specified object type.\r
1347             </summary>\r
1348             <param name="objectType">Type of the object.</param>\r
1349             <returns>\r
1350                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1351             </returns>\r
1352         </member>\r
1353         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">\r
1354             <summary>\r
1355             Converts an <see cref="T:System.Enum"/> to and from its name string value.\r
1356             </summary>\r
1357         </member>\r
1358         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">\r
1359             <summary>\r
1360             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.\r
1361             </summary>\r
1362         </member>\r
1363         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1364             <summary>\r
1365             Writes the JSON representation of the object.\r
1366             </summary>\r
1367             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1368             <param name="value">The value.</param>\r
1369             <param name="serializer">The calling serializer.</param>\r
1370         </member>\r
1371         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1372             <summary>\r
1373             Reads the JSON representation of the object.\r
1374             </summary>\r
1375             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1376             <param name="objectType">Type of the object.</param>\r
1377             <param name="existingValue">The existing value of object being read.</param>\r
1378             <param name="serializer">The calling serializer.</param>\r
1379             <returns>The object value.</returns>\r
1380         </member>\r
1381         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">\r
1382             <summary>\r
1383             Determines whether this instance can convert the specified object type.\r
1384             </summary>\r
1385             <param name="objectType">Type of the object.</param>\r
1386             <returns>\r
1387             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1388             </returns>\r
1389         </member>\r
1390         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">\r
1391             <summary>\r
1392             Gets or sets a value indicating whether the written enum text should be camel case.\r
1393             </summary>\r
1394             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r
1395         </member>\r
1396         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">\r
1397             <summary>\r
1398             Gets or sets a value indicating whether integer values are allowed.\r
1399             </summary>\r
1400             <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>\r
1401         </member>\r
1402         <member name="T:Newtonsoft.Json.Converters.VersionConverter">\r
1403             <summary>\r
1404             Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").\r
1405             </summary>\r
1406         </member>\r
1407         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1408             <summary>\r
1409             Writes the JSON representation of the object.\r
1410             </summary>\r
1411             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
1412             <param name="value">The value.</param>\r
1413             <param name="serializer">The calling serializer.</param>\r
1414         </member>\r
1415         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
1416             <summary>\r
1417             Reads the JSON representation of the object.\r
1418             </summary>\r
1419             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
1420             <param name="objectType">Type of the object.</param>\r
1421             <param name="existingValue">The existing property value of the JSON that is being converted.</param>\r
1422             <param name="serializer">The calling serializer.</param>\r
1423             <returns>The object value.</returns>\r
1424         </member>\r
1425         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">\r
1426             <summary>\r
1427             Determines whether this instance can convert the specified object type.\r
1428             </summary>\r
1429             <param name="objectType">Type of the object.</param>\r
1430             <returns>\r
1431                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r
1432             </returns>\r
1433         </member>\r
1434         <member name="T:Newtonsoft.Json.DateFormatHandling">\r
1435             <summary>\r
1436             Specifies how dates are formatted when writing JSON text.\r
1437             </summary>\r
1438         </member>\r
1439         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">\r
1440             <summary>\r
1441             Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".\r
1442             </summary>\r
1443         </member>\r
1444         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">\r
1445             <summary>\r
1446             Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".\r
1447             </summary>\r
1448         </member>\r
1449         <member name="T:Newtonsoft.Json.DateParseHandling">\r
1450             <summary>\r
1451             Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.\r
1452             </summary>\r
1453         </member>\r
1454         <member name="F:Newtonsoft.Json.DateParseHandling.None">\r
1455             <summary>\r
1456             Date formatted strings are not parsed to a date type and are read as strings.\r
1457             </summary>\r
1458         </member>\r
1459         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">\r
1460             <summary>\r
1461             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.\r
1462             </summary>\r
1463         </member>\r
1464         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">\r
1465             <summary>\r
1466             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.\r
1467             </summary>\r
1468         </member>\r
1469         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">\r
1470             <summary>\r
1471             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
1472             </summary>\r
1473         </member>\r
1474         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">\r
1475             <summary>\r
1476             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.\r
1477             </summary>\r
1478         </member>\r
1479         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">\r
1480             <summary>\r
1481             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.\r
1482             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.\r
1483             </summary>\r
1484         </member>\r
1485         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">\r
1486             <summary>\r
1487             Time zone information should be preserved when converting.\r
1488             </summary>\r
1489         </member>\r
1490         <member name="T:Newtonsoft.Json.FloatFormatHandling">\r
1491             <summary>\r
1492             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
1493             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
1494             </summary>\r
1495         </member>\r
1496         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">\r
1497             <summary>\r
1498             Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".\r
1499             </summary>\r
1500         </member>\r
1501         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">\r
1502             <summary>\r
1503             Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.\r
1504             Note that this will produce non-valid JSON.\r
1505             </summary>\r
1506         </member>\r
1507         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">\r
1508             <summary>\r
1509             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
1510             </summary>\r
1511         </member>\r
1512         <member name="T:Newtonsoft.Json.FloatParseHandling">\r
1513             <summary>\r
1514             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
1515             </summary>\r
1516         </member>\r
1517         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">\r
1518             <summary>\r
1519             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.\r
1520             </summary>\r
1521         </member>\r
1522         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">\r
1523             <summary>\r
1524             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.\r
1525             </summary>\r
1526         </member>\r
1527         <member name="T:Newtonsoft.Json.Formatting">\r
1528             <summary>\r
1529             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.\r
1530             </summary>\r
1531         </member>\r
1532         <member name="F:Newtonsoft.Json.Formatting.None">\r
1533             <summary>\r
1534             No special formatting is applied. This is the default.\r
1535             </summary>\r
1536         </member>\r
1537         <member name="F:Newtonsoft.Json.Formatting.Indented">\r
1538             <summary>\r
1539             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
1540             </summary>\r
1541         </member>\r
1542         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">\r
1543             <summary>\r
1544             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.\r
1545             </summary>\r
1546         </member>\r
1547         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">\r
1548             <summary>\r
1549             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.\r
1550             </summary>\r
1551         </member>\r
1552         <member name="T:Newtonsoft.Json.JsonContainerAttribute">\r
1553             <summary>\r
1554             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.\r
1555             </summary>\r
1556         </member>\r
1557         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">\r
1558             <summary>\r
1559             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.\r
1560             </summary>\r
1561         </member>\r
1562         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">\r
1563             <summary>\r
1564             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.\r
1565             </summary>\r
1566             <param name="id">The container Id.</param>\r
1567         </member>\r
1568         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">\r
1569             <summary>\r
1570             Gets or sets the id.\r
1571             </summary>\r
1572             <value>The id.</value>\r
1573         </member>\r
1574         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">\r
1575             <summary>\r
1576             Gets or sets the title.\r
1577             </summary>\r
1578             <value>The title.</value>\r
1579         </member>\r
1580         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">\r
1581             <summary>\r
1582             Gets or sets the description.\r
1583             </summary>\r
1584             <value>The description.</value>\r
1585         </member>\r
1586         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">\r
1587             <summary>\r
1588             Gets the collection's items converter.\r
1589             </summary>\r
1590             <value>The collection's items converter.</value>\r
1591         </member>\r
1592         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">\r
1593             <summary>\r
1594             The parameter list to use when constructing the JsonConverter described by ItemConverterType.\r
1595             If null, the default constructor is used.\r
1596             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,\r
1597             order, and type of these parameters.\r
1598             </summary>\r
1599             <example>\r
1600             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]\r
1601             </example>\r
1602         </member>\r
1603         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">\r
1604             <summary>\r
1605             Gets or sets a value that indicates whether to preserve object references.\r
1606             </summary>\r
1607             <value>\r
1608                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r
1609             </value>\r
1610         </member>\r
1611         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">\r
1612             <summary>\r
1613             Gets or sets a value that indicates whether to preserve collection's items references.\r
1614             </summary>\r
1615             <value>\r
1616                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r
1617             </value>\r
1618         </member>\r
1619         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">\r
1620             <summary>\r
1621             Gets or sets the reference loop handling used when serializing the collection's items.\r
1622             </summary>\r
1623             <value>The reference loop handling.</value>\r
1624         </member>\r
1625         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">\r
1626             <summary>\r
1627             Gets or sets the type name handling used when serializing the collection's items.\r
1628             </summary>\r
1629             <value>The type name handling.</value>\r
1630         </member>\r
1631         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">\r
1632             <summary>\r
1633             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.\r
1634             </summary>\r
1635         </member>\r
1636         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">\r
1637             <summary>\r
1638             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.\r
1639             </summary>\r
1640             <param name="id">The container Id.</param>\r
1641         </member>\r
1642         <member name="T:Newtonsoft.Json.JsonException">\r
1643             <summary>\r
1644             The exception thrown when an error occurs during JSON serialization or deserialization.\r
1645             </summary>\r
1646         </member>\r
1647         <member name="M:Newtonsoft.Json.JsonException.#ctor">\r
1648             <summary>\r
1649             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.\r
1650             </summary>\r
1651         </member>\r
1652         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">\r
1653             <summary>\r
1654             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class\r
1655             with a specified error message.\r
1656             </summary>\r
1657             <param name="message">The error message that explains the reason for the exception.</param>\r
1658         </member>\r
1659         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">\r
1660             <summary>\r
1661             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class\r
1662             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
1663             </summary>\r
1664             <param name="message">The error message that explains the reason for the exception.</param>\r
1665             <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
1666         </member>\r
1667         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
1668             <summary>\r
1669             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.\r
1670             </summary>\r
1671             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
1672             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
1673             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
1674             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
1675         </member>\r
1676         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">\r
1677             <summary>\r
1678             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection\r
1679             and write values during serialization.\r
1680             </summary>\r
1681         </member>\r
1682         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">\r
1683             <summary>\r
1684             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.\r
1685             </summary>\r
1686         </member>\r
1687         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">\r
1688             <summary>\r
1689             Gets or sets a value that indicates whether to write extension data when serializing the object.\r
1690             </summary>\r
1691             <value>\r
1692                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.\r
1693             </value>\r
1694         </member>\r
1695         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">\r
1696             <summary>\r
1697             Gets or sets a value that indicates whether to read extension data when deserializing the object.\r
1698             </summary>\r
1699             <value>\r
1700                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.\r
1701             </value>\r
1702         </member>\r
1703         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">\r
1704             <summary>\r
1705             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.\r
1706             </summary>\r
1707         </member>\r
1708         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">\r
1709             <summary>\r
1710             Specifies the settings used when merging JSON.\r
1711             </summary>\r
1712         </member>\r
1713         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">\r
1714             <summary>\r
1715             Gets or sets the method used when merging JSON arrays.\r
1716             </summary>\r
1717             <value>The method used when merging JSON arrays.</value>\r
1718         </member>\r
1719         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">\r
1720             <summary>\r
1721             Specifies how JSON arrays are merged together.\r
1722             </summary>\r
1723         </member>\r
1724         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">\r
1725             <summary>Concatenate arrays.</summary>\r
1726         </member>\r
1727         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">\r
1728             <summary>Union arrays, skipping items that already exist.</summary>\r
1729         </member>\r
1730         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">\r
1731             <summary>Replace all array items.</summary>\r
1732         </member>\r
1733         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">\r
1734             <summary>Merge array items together, matched by index.</summary>\r
1735         </member>\r
1736         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">\r
1737             <summary>\r
1738             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1739             </summary>\r
1740         </member>\r
1741         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">\r
1742             <summary>\r
1743             Read metadata properties located at the start of a JSON object.\r
1744             </summary>\r
1745         </member>\r
1746         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">\r
1747             <summary>\r
1748             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.\r
1749             </summary>\r
1750         </member>\r
1751         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">\r
1752             <summary>\r
1753             Do not try to read metadata properties.\r
1754             </summary>\r
1755         </member>\r
1756         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">\r
1757             <summary>\r
1758             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.\r
1759             </summary>\r
1760         </member>\r
1761         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">\r
1762             <summary>\r
1763             Represents a trace writer.\r
1764             </summary>\r
1765         </member>\r
1766         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
1767             <summary>\r
1768             Writes the specified trace level, message and optional exception.\r
1769             </summary>\r
1770             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
1771             <param name="message">The trace message.</param>\r
1772             <param name="ex">The trace exception. This parameter is optional.</param>\r
1773         </member>\r
1774         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">\r
1775             <summary>\r
1776             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1777             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
1778             <code>Warning</code> and <code>Error</code> messages.\r
1779             </summary>\r
1780             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>\r
1781         </member>\r
1782         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
1783             <summary>\r
1784             Writes the specified trace level, message and optional exception.\r
1785             </summary>\r
1786             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
1787             <param name="message">The trace message.</param>\r
1788             <param name="ex">The trace exception. This parameter is optional.</param>\r
1789         </member>\r
1790         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">\r
1791             <summary>\r
1792             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1793             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
1794             <code>Warning</code> and <code>Error</code> messages.\r
1795             </summary>\r
1796             <value>\r
1797             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1798             </value>\r
1799         </member>\r
1800         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">\r
1801             <summary>\r
1802             Provides methods to get attributes.\r
1803             </summary>\r
1804         </member>\r
1805         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">\r
1806             <summary>\r
1807             Returns a collection of all of the attributes, or an empty collection if there are no attributes.\r
1808             </summary>\r
1809             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
1810             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
1811         </member>\r
1812         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">\r
1813             <summary>\r
1814             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.\r
1815             </summary>\r
1816             <param name="attributeType">The type of the attributes.</param>\r
1817             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
1818             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
1819         </member>\r
1820         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">\r
1821             <summary>\r
1822             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1823             </summary>\r
1824         </member>\r
1825         <member name="T:Newtonsoft.Json.Serialization.JsonContract">\r
1826             <summary>\r
1827             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
1828             </summary>\r
1829         </member>\r
1830         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">\r
1831             <summary>\r
1832             Gets the underlying type for the contract.\r
1833             </summary>\r
1834             <value>The underlying type for the contract.</value>\r
1835         </member>\r
1836         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">\r
1837             <summary>\r
1838             Gets or sets the type created during deserialization.\r
1839             </summary>\r
1840             <value>The type created during deserialization.</value>\r
1841         </member>\r
1842         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">\r
1843             <summary>\r
1844             Gets or sets whether this type contract is serialized as a reference.\r
1845             </summary>\r
1846             <value>Whether this type contract is serialized as a reference.</value>\r
1847         </member>\r
1848         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">\r
1849             <summary>\r
1850             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.\r
1851             </summary>\r
1852             <value>The converter.</value>\r
1853         </member>\r
1854         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">\r
1855             <summary>\r
1856             Gets or sets all methods called immediately after deserialization of the object.\r
1857             </summary>\r
1858             <value>The methods called immediately after deserialization of the object.</value>\r
1859         </member>\r
1860         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">\r
1861             <summary>\r
1862             Gets or sets all methods called during deserialization of the object.\r
1863             </summary>\r
1864             <value>The methods called during deserialization of the object.</value>\r
1865         </member>\r
1866         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">\r
1867             <summary>\r
1868             Gets or sets all methods called after serialization of the object graph.\r
1869             </summary>\r
1870             <value>The methods called after serialization of the object graph.</value>\r
1871         </member>\r
1872         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">\r
1873             <summary>\r
1874             Gets or sets all methods called before serialization of the object.\r
1875             </summary>\r
1876             <value>The methods called before serialization of the object.</value>\r
1877         </member>\r
1878         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">\r
1879             <summary>\r
1880             Gets or sets all method called when an error is thrown during the serialization of the object.\r
1881             </summary>\r
1882             <value>The methods called when an error is thrown during the serialization of the object.</value>\r
1883         </member>\r
1884         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">\r
1885             <summary>\r
1886             Gets or sets the method called immediately after deserialization of the object.\r
1887             </summary>\r
1888             <value>The method called immediately after deserialization of the object.</value>\r
1889         </member>\r
1890         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">\r
1891             <summary>\r
1892             Gets or sets the method called during deserialization of the object.\r
1893             </summary>\r
1894             <value>The method called during deserialization of the object.</value>\r
1895         </member>\r
1896         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">\r
1897             <summary>\r
1898             Gets or sets the method called after serialization of the object graph.\r
1899             </summary>\r
1900             <value>The method called after serialization of the object graph.</value>\r
1901         </member>\r
1902         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">\r
1903             <summary>\r
1904             Gets or sets the method called before serialization of the object.\r
1905             </summary>\r
1906             <value>The method called before serialization of the object.</value>\r
1907         </member>\r
1908         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">\r
1909             <summary>\r
1910             Gets or sets the method called when an error is thrown during the serialization of the object.\r
1911             </summary>\r
1912             <value>The method called when an error is thrown during the serialization of the object.</value>\r
1913         </member>\r
1914         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">\r
1915             <summary>\r
1916             Gets or sets the default creator method used to create the object.\r
1917             </summary>\r
1918             <value>The default creator method used to create the object.</value>\r
1919         </member>\r
1920         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">\r
1921             <summary>\r
1922             Gets or sets a value indicating whether the default creator is non public.\r
1923             </summary>\r
1924             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r
1925         </member>\r
1926         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">\r
1927             <summary>\r
1928             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.\r
1929             </summary>\r
1930             <param name="underlyingType">The underlying type for the contract.</param>\r
1931         </member>\r
1932         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">\r
1933             <summary>\r
1934             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
1935             </summary>\r
1936             <value>The converter.</value>\r
1937         </member>\r
1938         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">\r
1939             <summary>\r
1940             Gets or sets a value indicating whether the collection items preserve object references.\r
1941             </summary>\r
1942             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r
1943         </member>\r
1944         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">\r
1945             <summary>\r
1946             Gets or sets the collection item reference loop handling.\r
1947             </summary>\r
1948             <value>The reference loop handling.</value>\r
1949         </member>\r
1950         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">\r
1951             <summary>\r
1952             Gets or sets the collection item type name handling.\r
1953             </summary>\r
1954             <value>The type name handling.</value>\r
1955         </member>\r
1956         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">\r
1957             <summary>\r
1958             Represents a trace writer that writes to memory. When the trace message limit is\r
1959             reached then old trace messages will be removed as new messages are added.\r
1960             </summary>\r
1961         </member>\r
1962         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">\r
1963             <summary>\r
1964             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.\r
1965             </summary>\r
1966         </member>\r
1967         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">\r
1968             <summary>\r
1969             Writes the specified trace level, message and optional exception.\r
1970             </summary>\r
1971             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>\r
1972             <param name="message">The trace message.</param>\r
1973             <param name="ex">The trace exception. This parameter is optional.</param>\r
1974         </member>\r
1975         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">\r
1976             <summary>\r
1977             Returns an enumeration of the most recent trace messages.\r
1978             </summary>\r
1979             <returns>An enumeration of the most recent trace messages.</returns>\r
1980         </member>\r
1981         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">\r
1982             <summary>\r
1983             Returns a <see cref="T:System.String"/> of the most recent trace messages.\r
1984             </summary>\r
1985             <returns>\r
1986             A <see cref="T:System.String"/> of the most recent trace messages.\r
1987             </returns>\r
1988         </member>\r
1989         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">\r
1990             <summary>\r
1991             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1992             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r
1993             <code>Warning</code> and <code>Error</code> messages.\r
1994             </summary>\r
1995             <value>\r
1996             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.\r
1997             </value>\r
1998         </member>\r
1999         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">\r
2000             <summary>\r
2001             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
2002             </summary>\r
2003         </member>\r
2004         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">\r
2005             <summary>\r
2006             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.\r
2007             </summary>\r
2008             <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
2009         </member>\r
2010         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">\r
2011             <summary>\r
2012             Returns a collection of all of the attributes, or an empty collection if there are no attributes.\r
2013             </summary>\r
2014             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
2015             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
2016         </member>\r
2017         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">\r
2018             <summary>\r
2019             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.\r
2020             </summary>\r
2021             <param name="attributeType">The type of the attributes.</param>\r
2022             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>\r
2023             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>\r
2024         </member>\r
2025         <member name="T:Newtonsoft.Json.IJsonLineInfo">\r
2026             <summary>\r
2027             Provides an interface to enable a class to return line and position information.\r
2028             </summary>\r
2029         </member>\r
2030         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">\r
2031             <summary>\r
2032             Gets a value indicating whether the class can return line information.\r
2033             </summary>\r
2034             <returns>\r
2035                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r
2036             </returns>\r
2037         </member>\r
2038         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">\r
2039             <summary>\r
2040             Gets the current line number.\r
2041             </summary>\r
2042             <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r
2043         </member>\r
2044         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">\r
2045             <summary>\r
2046             Gets the current line position.\r
2047             </summary>\r
2048             <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r
2049         </member>\r
2050         <member name="T:Newtonsoft.Json.StringEscapeHandling">\r
2051             <summary>\r
2052             Specifies how strings are escaped when writing JSON text.\r
2053             </summary>\r
2054         </member>\r
2055         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">\r
2056             <summary>\r
2057             Only control characters (e.g. newline) are escaped.\r
2058             </summary>\r
2059         </member>\r
2060         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">\r
2061             <summary>\r
2062             All non-ASCII and control characters (e.g. newline) are escaped.\r
2063             </summary>\r
2064         </member>\r
2065         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">\r
2066             <summary>\r
2067             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r
2068             </summary>\r
2069         </member>\r
2070         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Enumerable">\r
2071             <summary>\r
2072             Provides a set of static (Shared in Visual Basic) methods for \r
2073             querying objects that implement <see cref="T:System.Collections.Generic.IEnumerable`1"/>.\r
2074             </summary>\r
2075         </member>\r
2076         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})">\r
2077             <summary>\r
2078             Returns the input typed as <see cref="T:System.Collections.Generic.IEnumerable`1"/>.\r
2079             </summary>\r
2080         </member>\r
2081         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Empty``1">\r
2082             <summary>\r
2083             Returns an empty <see cref="T:System.Collections.Generic.IEnumerable`1"/> that has the \r
2084             specified type argument.\r
2085             </summary>\r
2086         </member>\r
2087         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Cast``1(System.Collections.IEnumerable)">\r
2088             <summary>\r
2089             Converts the elements of an <see cref="T:System.Collections.IEnumerable"/> to the \r
2090             specified type.\r
2091             </summary>\r
2092         </member>\r
2093         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OfType``1(System.Collections.IEnumerable)">\r
2094             <summary>\r
2095             Filters the elements of an <see cref="T:System.Collections.IEnumerable"/> based on a specified type.\r
2096             </summary>\r
2097         </member>\r
2098         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Range(System.Int32,System.Int32)">\r
2099             <summary>\r
2100             Generates a sequence of integral numbers within a specified range.\r
2101             </summary>\r
2102             <param name="start">The value of the first integer in the sequence.</param>\r
2103             <param name="count">The number of sequential integers to generate.</param>\r
2104         </member>\r
2105         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Repeat``1(``0,System.Int32)">\r
2106             <summary>\r
2107             Generates a sequence that contains one repeated value.\r
2108             </summary>\r
2109         </member>\r
2110         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2111             <summary>\r
2112             Filters a sequence of values based on a predicate.\r
2113             </summary>\r
2114         </member>\r
2115         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">\r
2116             <summary>\r
2117             Filters a sequence of values based on a predicate. \r
2118             Each element's index is used in the logic of the predicate function.\r
2119             </summary>\r
2120         </member>\r
2121         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2122             <summary>\r
2123             Projects each element of a sequence into a new form.\r
2124             </summary>\r
2125         </member>\r
2126         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,``1})">\r
2127             <summary>\r
2128             Projects each element of a sequence into a new form by \r
2129             incorporating the element's index.\r
2130             </summary>\r
2131         </member>\r
2132         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}})">\r
2133             <summary>\r
2134             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/> \r
2135             and flattens the resulting sequences into one sequence.\r
2136             </summary>\r
2137         </member>\r
2138         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})">\r
2139             <summary>\r
2140             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, \r
2141             and flattens the resulting sequences into one sequence. The \r
2142             index of each source element is used in the projected form of \r
2143             that element.\r
2144             </summary>\r
2145         </member>\r
2146         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">\r
2147             <summary>\r
2148             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, \r
2149             flattens the resulting sequences into one sequence, and invokes \r
2150             a result selector function on each element therein.\r
2151             </summary>\r
2152         </member>\r
2153         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})">\r
2154             <summary>\r
2155             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1"/>, \r
2156             flattens the resulting sequences into one sequence, and invokes \r
2157             a result selector function on each element therein. The index of \r
2158             each source element is used in the intermediate projected form \r
2159             of that element.\r
2160             </summary>\r
2161         </member>\r
2162         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2163             <summary>\r
2164             Returns elements from a sequence as long as a specified condition is true.\r
2165             </summary>\r
2166         </member>\r
2167         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">\r
2168             <summary>\r
2169             Returns elements from a sequence as long as a specified condition is true.\r
2170             The element's index is used in the logic of the predicate function.\r
2171             </summary>\r
2172         </member>\r
2173         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">\r
2174             <summary>\r
2175             Base implementation of First operator.\r
2176             </summary>\r
2177         </member>\r
2178         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})">\r
2179             <summary>\r
2180             Returns the first element of a sequence.\r
2181             </summary>\r
2182         </member>\r
2183         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2184             <summary>\r
2185             Returns the first element in a sequence that satisfies a specified condition.\r
2186             </summary>\r
2187         </member>\r
2188         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">\r
2189             <summary>\r
2190             Returns the first element of a sequence, or a default value if \r
2191             the sequence contains no elements.\r
2192             </summary>\r
2193         </member>\r
2194         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2195             <summary>\r
2196             Returns the first element of the sequence that satisfies a \r
2197             condition or a default value if no such element is found.\r
2198             </summary>\r
2199         </member>\r
2200         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">\r
2201             <summary>\r
2202             Base implementation of Last operator.\r
2203             </summary>\r
2204         </member>\r
2205         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})">\r
2206             <summary>\r
2207             Returns the last element of a sequence.\r
2208             </summary>\r
2209         </member>\r
2210         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2211             <summary>\r
2212             Returns the last element of a sequence that satisfies a \r
2213             specified condition.\r
2214             </summary>\r
2215         </member>\r
2216         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})">\r
2217             <summary>\r
2218             Returns the last element of a sequence, or a default value if \r
2219             the sequence contains no elements.\r
2220             </summary>\r
2221         </member>\r
2222         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2223             <summary>\r
2224             Returns the last element of a sequence that satisfies a \r
2225             condition or a default value if no such element is found.\r
2226             </summary>\r
2227         </member>\r
2228         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">\r
2229             <summary>\r
2230             Base implementation of Single operator.\r
2231             </summary>\r
2232         </member>\r
2233         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})">\r
2234             <summary>\r
2235             Returns the only element of a sequence, and throws an exception \r
2236             if there is not exactly one element in the sequence.\r
2237             </summary>\r
2238         </member>\r
2239         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2240             <summary>\r
2241             Returns the only element of a sequence that satisfies a \r
2242             specified condition, and throws an exception if more than one \r
2243             such element exists.\r
2244             </summary>\r
2245         </member>\r
2246         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})">\r
2247             <summary>\r
2248             Returns the only element of a sequence, or a default value if \r
2249             the sequence is empty; this method throws an exception if there \r
2250             is more than one element in the sequence.\r
2251             </summary>\r
2252         </member>\r
2253         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2254             <summary>\r
2255             Returns the only element of a sequence that satisfies a \r
2256             specified condition or a default value if no such element \r
2257             exists; this method throws an exception if more than one element \r
2258             satisfies the condition.\r
2259             </summary>\r
2260         </member>\r
2261         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">\r
2262             <summary>\r
2263             Returns the element at a specified index in a sequence.\r
2264             </summary>\r
2265         </member>\r
2266         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">\r
2267             <summary>\r
2268             Returns the element at a specified index in a sequence or a \r
2269             default value if the index is out of range.\r
2270             </summary>\r
2271         </member>\r
2272         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})">\r
2273             <summary>\r
2274             Inverts the order of the elements in a sequence.\r
2275             </summary>\r
2276         </member>\r
2277         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">\r
2278             <summary>\r
2279             Returns a specified number of contiguous elements from the start \r
2280             of a sequence.\r
2281             </summary>\r
2282         </member>\r
2283         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">\r
2284             <summary>\r
2285             Bypasses a specified number of elements in a sequence and then \r
2286             returns the remaining elements.\r
2287             </summary>\r
2288         </member>\r
2289         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2290             <summary>\r
2291             Bypasses elements in a sequence as long as a specified condition \r
2292             is true and then returns the remaining elements.\r
2293             </summary>\r
2294         </member>\r
2295         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">\r
2296             <summary>\r
2297             Bypasses elements in a sequence as long as a specified condition \r
2298             is true and then returns the remaining elements. The element's \r
2299             index is used in the logic of the predicate function.\r
2300             </summary>\r
2301         </member>\r
2302         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})">\r
2303             <summary>\r
2304             Returns the number of elements in a sequence.\r
2305             </summary>\r
2306         </member>\r
2307         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2308             <summary>\r
2309             Returns a number that represents how many elements in the \r
2310             specified sequence satisfy a condition.\r
2311             </summary>\r
2312         </member>\r
2313         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})">\r
2314             <summary>\r
2315             Returns an <see cref="T:System.Int64"/> that represents the total number \r
2316             of elements in a sequence.\r
2317             </summary>\r
2318         </member>\r
2319         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2320             <summary>\r
2321             Returns an <see cref="T:System.Int64"/> that represents how many elements \r
2322             in a sequence satisfy a condition.\r
2323             </summary>\r
2324         </member>\r
2325         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">\r
2326             <summary>\r
2327             Concatenates two sequences.\r
2328             </summary>\r
2329         </member>\r
2330         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})">\r
2331             <summary>\r
2332             Creates a <see cref="T:System.Collections.Generic.List`1"/> from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.\r
2333             </summary>\r
2334         </member>\r
2335         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})">\r
2336             <summary>\r
2337             Creates an array from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.\r
2338             </summary>\r
2339         </member>\r
2340         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})">\r
2341             <summary>\r
2342             Returns distinct elements from a sequence by using the default \r
2343             equality comparer to compare values.\r
2344             </summary>\r
2345         </member>\r
2346         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">\r
2347             <summary>\r
2348             Returns distinct elements from a sequence by using a specified \r
2349             <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.\r
2350             </summary>\r
2351         </member>\r
2352         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2353             <summary>\r
2354             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an \r
2355             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2356             selector function.\r
2357             </summary>\r
2358         </member>\r
2359         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">\r
2360             <summary>\r
2361             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an \r
2362             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2363             selector function and a key comparer.\r
2364             </summary>\r
2365         </member>\r
2366         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">\r
2367             <summary>\r
2368             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an \r
2369             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key \r
2370             and element selector functions.\r
2371             </summary>\r
2372         </member>\r
2373         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">\r
2374             <summary>\r
2375             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/> from an \r
2376             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2377             selector function, a comparer and an element selector function.\r
2378             </summary>\r
2379         </member>\r
2380         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2381             <summary>\r
2382             Groups the elements of a sequence according to a specified key \r
2383             selector function.\r
2384             </summary>\r
2385         </member>\r
2386         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">\r
2387             <summary>\r
2388             Groups the elements of a sequence according to a specified key \r
2389             selector function and compares the keys by using a specified \r
2390             comparer.\r
2391             </summary>\r
2392         </member>\r
2393         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">\r
2394             <summary>\r
2395             Groups the elements of a sequence according to a specified key \r
2396             selector function and projects the elements for each group by \r
2397             using a specified function.\r
2398             </summary>\r
2399         </member>\r
2400         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">\r
2401             <summary>\r
2402             Groups the elements of a sequence according to a specified key \r
2403             selector function and creates a result value from each group and \r
2404             its key.\r
2405             </summary>\r
2406         </member>\r
2407         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})">\r
2408             <summary>\r
2409             Groups the elements of a sequence according to a key selector \r
2410             function. The keys are compared by using a comparer and each \r
2411             group's elements are projected by using a specified function.\r
2412             </summary>\r
2413         </member>\r
2414         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})">\r
2415             <summary>\r
2416             Groups the elements of a sequence according to a specified key \r
2417             selector function and creates a result value from each group and \r
2418             its key. The elements of each group are projected by using a \r
2419             specified function.\r
2420             </summary>\r
2421         </member>\r
2422         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})">\r
2423             <summary>\r
2424             Groups the elements of a sequence according to a specified key \r
2425             selector function and creates a result value from each group and \r
2426             its key. The keys are compared by using a specified comparer.\r
2427             </summary>\r
2428         </member>\r
2429         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})">\r
2430             <summary>\r
2431             Groups the elements of a sequence according to a specified key \r
2432             selector function and creates a result value from each group and \r
2433             its key. Key values are compared by using a specified comparer, \r
2434             and the elements of each group are projected by using a \r
2435             specified function.\r
2436             </summary>\r
2437         </member>\r
2438         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,``0})">\r
2439             <summary>\r
2440             Applies an accumulator function over a sequence.\r
2441             </summary>\r
2442         </member>\r
2443         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1})">\r
2444             <summary>\r
2445             Applies an accumulator function over a sequence. The specified \r
2446             seed value is used as the initial accumulator value.\r
2447             </summary>\r
2448         </member>\r
2449         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1},Newtonsoft.Json.Serialization.Func{``1,``2})">\r
2450             <summary>\r
2451             Applies an accumulator function over a sequence. The specified \r
2452             seed value is used as the initial accumulator value, and the \r
2453             specified function is used to select the result value.\r
2454             </summary>\r
2455         </member>\r
2456         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">\r
2457             <summary>\r
2458             Produces the set union of two sequences by using the default \r
2459             equality comparer.\r
2460             </summary>\r
2461         </member>\r
2462         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">\r
2463             <summary>\r
2464             Produces the set union of two sequences by using a specified \r
2465             <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.\r
2466             </summary>\r
2467         </member>\r
2468         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})">\r
2469             <summary>\r
2470             Returns the elements of the specified sequence or the type \r
2471             parameter's default value in a singleton collection if the \r
2472             sequence is empty.\r
2473             </summary>\r
2474         </member>\r
2475         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)">\r
2476             <summary>\r
2477             Returns the elements of the specified sequence or the specified \r
2478             value in a singleton collection if the sequence is empty.\r
2479             </summary>\r
2480         </member>\r
2481         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2482             <summary>\r
2483             Determines whether all elements of a sequence satisfy a condition.\r
2484             </summary>\r
2485         </member>\r
2486         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})">\r
2487             <summary>\r
2488             Determines whether a sequence contains any elements.\r
2489             </summary>\r
2490         </member>\r
2491         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">\r
2492             <summary>\r
2493             Determines whether any element of a sequence satisfies a \r
2494             condition.\r
2495             </summary>\r
2496         </member>\r
2497         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)">\r
2498             <summary>\r
2499             Determines whether a sequence contains a specified element by \r
2500             using the default equality comparer.\r
2501             </summary>\r
2502         </member>\r
2503         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">\r
2504             <summary>\r
2505             Determines whether a sequence contains a specified element by \r
2506             using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.\r
2507             </summary>\r
2508         </member>\r
2509         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">\r
2510             <summary>\r
2511             Determines whether two sequences are equal by comparing the \r
2512             elements by using the default equality comparer for their type.\r
2513             </summary>\r
2514         </member>\r
2515         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">\r
2516             <summary>\r
2517             Determines whether two sequences are equal by comparing their \r
2518             elements by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/>.\r
2519             </summary>\r
2520         </member>\r
2521         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,System.Boolean})">\r
2522             <summary>\r
2523             Base implementation for Min/Max operator.\r
2524             </summary>\r
2525         </member>\r
2526         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}},System.Nullable{``0},Newtonsoft.Json.Serialization.Func{System.Nullable{``0},System.Nullable{``0},System.Boolean})">\r
2527             <summary>\r
2528             Base implementation for Min/Max operator for nullable types.\r
2529             </summary>\r
2530         </member>\r
2531         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})">\r
2532             <summary>\r
2533             Returns the minimum value in a generic sequence.\r
2534             </summary>\r
2535         </member>\r
2536         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2537             <summary>\r
2538             Invokes a transform function on each element of a generic \r
2539             sequence and returns the minimum resulting value.\r
2540             </summary>\r
2541         </member>\r
2542         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})">\r
2543             <summary>\r
2544             Returns the maximum value in a generic sequence.\r
2545             </summary>\r
2546         </member>\r
2547         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2548             <summary>\r
2549             Invokes a transform function on each element of a generic \r
2550             sequence and returns the maximum resulting value.\r
2551             </summary>\r
2552         </member>\r
2553         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Renumerable``1(System.Collections.Generic.IEnumerator{``0})">\r
2554             <summary>\r
2555             Makes an enumerator seen as enumerable once more.\r
2556             </summary>\r
2557             <remarks>\r
2558             The supplied enumerator must have been started. The first element\r
2559             returned is the element the enumerator was on when passed in.\r
2560             DO NOT use this method if the caller must be a generator. It is\r
2561             mostly safe among aggregate operations.\r
2562             </remarks>\r
2563         </member>\r
2564         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2565             <summary>\r
2566             Sorts the elements of a sequence in ascending order according to a key.\r
2567             </summary>\r
2568         </member>\r
2569         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">\r
2570             <summary>\r
2571             Sorts the elements of a sequence in ascending order by using a \r
2572             specified comparer.\r
2573             </summary>\r
2574         </member>\r
2575         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2576             <summary>\r
2577             Sorts the elements of a sequence in descending order according to a key.\r
2578             </summary>\r
2579         </member>\r
2580         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">\r
2581             <summary>\r
2582              Sorts the elements of a sequence in descending order by using a \r
2583             specified comparer. \r
2584             </summary>\r
2585         </member>\r
2586         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2587             <summary>\r
2588             Performs a subsequent ordering of the elements in a sequence in \r
2589             ascending order according to a key.\r
2590             </summary>\r
2591         </member>\r
2592         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">\r
2593             <summary>\r
2594             Performs a subsequent ordering of the elements in a sequence in \r
2595             ascending order by using a specified comparer.\r
2596             </summary>\r
2597         </member>\r
2598         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2599             <summary>\r
2600             Performs a subsequent ordering of the elements in a sequence in \r
2601             descending order, according to a key.\r
2602             </summary>\r
2603         </member>\r
2604         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})">\r
2605             <summary>\r
2606             Performs a subsequent ordering of the elements in a sequence in \r
2607             descending order by using a specified comparer.\r
2608             </summary>\r
2609         </member>\r
2610         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.IntersectExceptImpl``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0},System.Boolean)">\r
2611             <summary>\r
2612             Base implementation for Intersect and Except operators.\r
2613             </summary>\r
2614         </member>\r
2615         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">\r
2616             <summary>\r
2617             Produces the set intersection of two sequences by using the \r
2618             default equality comparer to compare values.\r
2619             </summary>\r
2620         </member>\r
2621         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">\r
2622             <summary>\r
2623             Produces the set intersection of two sequences by using the \r
2624             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.\r
2625             </summary>\r
2626         </member>\r
2627         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">\r
2628             <summary>\r
2629             Produces the set difference of two sequences by using the \r
2630             default equality comparer to compare values.\r
2631             </summary>\r
2632         </member>\r
2633         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">\r
2634             <summary>\r
2635             Produces the set difference of two sequences by using the \r
2636             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.\r
2637             </summary>\r
2638         </member>\r
2639         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">\r
2640             <summary>\r
2641             Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an \r
2642             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2643             selector function.\r
2644             </summary>\r
2645         </member>\r
2646         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})">\r
2647             <summary>\r
2648             Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an \r
2649             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2650             selector function and key comparer.\r
2651             </summary>\r
2652         </member>\r
2653         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})">\r
2654             <summary>\r
2655             Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an \r
2656             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to specified key \r
2657             selector and element selector functions.\r
2658             </summary>\r
2659         </member>\r
2660         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})">\r
2661             <summary>\r
2662             Creates a <see cref="T:System.Collections.Generic.Dictionary`2"/> from an \r
2663             <see cref="T:System.Collections.Generic.IEnumerable`1"/> according to a specified key \r
2664             selector function, a comparer, and an element selector function.\r
2665             </summary>\r
2666         </member>\r
2667         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3})">\r
2668             <summary>\r
2669             Correlates the elements of two sequences based on matching keys. \r
2670             The default equality comparer is used to compare keys.\r
2671             </summary>\r
2672         </member>\r
2673         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})">\r
2674             <summary>\r
2675             Correlates the elements of two sequences based on matching keys. \r
2676             The default equality comparer is used to compare keys. A \r
2677             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> is used to compare keys.\r
2678             </summary>\r
2679         </member>\r
2680         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})">\r
2681             <summary>\r
2682             Correlates the elements of two sequences based on equality of \r
2683             keys and groups the results. The default equality comparer is \r
2684             used to compare keys.\r
2685             </summary>\r
2686         </member>\r
2687         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})">\r
2688             <summary>\r
2689             Correlates the elements of two sequences based on equality of \r
2690             keys and groups the results. The default equality comparer is \r
2691             used to compare keys. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> \r
2692             is used to compare keys.\r
2693             </summary>\r
2694         </member>\r
2695         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})">\r
2696             <summary>\r
2697             Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> values.\r
2698             </summary>\r
2699         </member>\r
2700         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">\r
2701             <summary>\r
2702             Computes the sum of a sequence of nullable <see cref="T:System.Int32"/> \r
2703             values that are obtained by invoking a transform function on \r
2704             each element of the input sequence.\r
2705             </summary>\r
2706         </member>\r
2707         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})">\r
2708             <summary>\r
2709             Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values.\r
2710             </summary>\r
2711         </member>\r
2712         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">\r
2713             <summary>\r
2714             Computes the average of a sequence of nullable <see cref="T:System.Int32"/> values \r
2715             that are obtained by invoking a transform function on each \r
2716             element of the input sequence.\r
2717             </summary>\r
2718         </member>\r
2719         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">\r
2720             <summary>\r
2721             Computes the sum of a sequence of <see cref="T:System.Int32"/> values.\r
2722             </summary>\r
2723         </member>\r
2724         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">\r
2725             <summary>\r
2726             Computes the sum of a sequence of <see cref="T:System.Int32"/> \r
2727             values that are obtained by invoking a transform function on \r
2728             each element of the input sequence.\r
2729             </summary>\r
2730         </member>\r
2731         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">\r
2732             <summary>\r
2733             Computes the average of a sequence of <see cref="T:System.Int32"/> values.\r
2734             </summary>\r
2735         </member>\r
2736         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">\r
2737             <summary>\r
2738             Computes the average of a sequence of <see cref="T:System.Int32"/> values \r
2739             that are obtained by invoking a transform function on each \r
2740             element of the input sequence.\r
2741             </summary>\r
2742         </member>\r
2743         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">\r
2744             <summary>\r
2745             Returns the minimum value in a sequence of nullable \r
2746             <see cref="T:System.Int32"/> values.\r
2747             </summary>\r
2748         </member>\r
2749         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">\r
2750             <summary>\r
2751             Invokes a transform function on each element of a sequence and \r
2752             returns the minimum nullable <see cref="T:System.Int32"/> value.\r
2753             </summary>\r
2754         </member>\r
2755         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">\r
2756             <summary>\r
2757             Returns the maximum value in a sequence of nullable \r
2758             <see cref="T:System.Int32"/> values.\r
2759             </summary>\r
2760         </member>\r
2761         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">\r
2762             <summary>\r
2763             Invokes a transform function on each element of a sequence and \r
2764             returns the maximum nullable <see cref="T:System.Int32"/> value.\r
2765             </summary>\r
2766         </member>\r
2767         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})">\r
2768             <summary>\r
2769             Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> values.\r
2770             </summary>\r
2771         </member>\r
2772         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">\r
2773             <summary>\r
2774             Computes the sum of a sequence of nullable <see cref="T:System.Int64"/> \r
2775             values that are obtained by invoking a transform function on \r
2776             each element of the input sequence.\r
2777             </summary>\r
2778         </member>\r
2779         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})">\r
2780             <summary>\r
2781             Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values.\r
2782             </summary>\r
2783         </member>\r
2784         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">\r
2785             <summary>\r
2786             Computes the average of a sequence of nullable <see cref="T:System.Int64"/> values \r
2787             that are obtained by invoking a transform function on each \r
2788             element of the input sequence.\r
2789             </summary>\r
2790         </member>\r
2791         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">\r
2792             <summary>\r
2793             Computes the sum of a sequence of <see cref="T:System.Int64"/> values.\r
2794             </summary>\r
2795         </member>\r
2796         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">\r
2797             <summary>\r
2798             Computes the sum of a sequence of <see cref="T:System.Int64"/> \r
2799             values that are obtained by invoking a transform function on \r
2800             each element of the input sequence.\r
2801             </summary>\r
2802         </member>\r
2803         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">\r
2804             <summary>\r
2805             Computes the average of a sequence of <see cref="T:System.Int64"/> values.\r
2806             </summary>\r
2807         </member>\r
2808         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">\r
2809             <summary>\r
2810             Computes the average of a sequence of <see cref="T:System.Int64"/> values \r
2811             that are obtained by invoking a transform function on each \r
2812             element of the input sequence.\r
2813             </summary>\r
2814         </member>\r
2815         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">\r
2816             <summary>\r
2817             Returns the minimum value in a sequence of nullable \r
2818             <see cref="T:System.Int64"/> values.\r
2819             </summary>\r
2820         </member>\r
2821         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">\r
2822             <summary>\r
2823             Invokes a transform function on each element of a sequence and \r
2824             returns the minimum nullable <see cref="T:System.Int64"/> value.\r
2825             </summary>\r
2826         </member>\r
2827         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">\r
2828             <summary>\r
2829             Returns the maximum value in a sequence of nullable \r
2830             <see cref="T:System.Int64"/> values.\r
2831             </summary>\r
2832         </member>\r
2833         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">\r
2834             <summary>\r
2835             Invokes a transform function on each element of a sequence and \r
2836             returns the maximum nullable <see cref="T:System.Int64"/> value.\r
2837             </summary>\r
2838         </member>\r
2839         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})">\r
2840             <summary>\r
2841             Computes the sum of a sequence of nullable <see cref="T:System.Single"/> values.\r
2842             </summary>\r
2843         </member>\r
2844         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">\r
2845             <summary>\r
2846             Computes the sum of a sequence of nullable <see cref="T:System.Single"/> \r
2847             values that are obtained by invoking a transform function on \r
2848             each element of the input sequence.\r
2849             </summary>\r
2850         </member>\r
2851         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})">\r
2852             <summary>\r
2853             Computes the average of a sequence of nullable <see cref="T:System.Single"/> values.\r
2854             </summary>\r
2855         </member>\r
2856         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">\r
2857             <summary>\r
2858             Computes the average of a sequence of nullable <see cref="T:System.Single"/> values \r
2859             that are obtained by invoking a transform function on each \r
2860             element of the input sequence.\r
2861             </summary>\r
2862         </member>\r
2863         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">\r
2864             <summary>\r
2865             Computes the sum of a sequence of <see cref="T:System.Single"/> values.\r
2866             </summary>\r
2867         </member>\r
2868         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">\r
2869             <summary>\r
2870             Computes the sum of a sequence of <see cref="T:System.Single"/> \r
2871             values that are obtained by invoking a transform function on \r
2872             each element of the input sequence.\r
2873             </summary>\r
2874         </member>\r
2875         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">\r
2876             <summary>\r
2877             Computes the average of a sequence of <see cref="T:System.Single"/> values.\r
2878             </summary>\r
2879         </member>\r
2880         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">\r
2881             <summary>\r
2882             Computes the average of a sequence of <see cref="T:System.Single"/> values \r
2883             that are obtained by invoking a transform function on each \r
2884             element of the input sequence.\r
2885             </summary>\r
2886         </member>\r
2887         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">\r
2888             <summary>\r
2889             Returns the minimum value in a sequence of nullable \r
2890             <see cref="T:System.Single"/> values.\r
2891             </summary>\r
2892         </member>\r
2893         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">\r
2894             <summary>\r
2895             Invokes a transform function on each element of a sequence and \r
2896             returns the minimum nullable <see cref="T:System.Single"/> value.\r
2897             </summary>\r
2898         </member>\r
2899         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">\r
2900             <summary>\r
2901             Returns the maximum value in a sequence of nullable \r
2902             <see cref="T:System.Single"/> values.\r
2903             </summary>\r
2904         </member>\r
2905         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">\r
2906             <summary>\r
2907             Invokes a transform function on each element of a sequence and \r
2908             returns the maximum nullable <see cref="T:System.Single"/> value.\r
2909             </summary>\r
2910         </member>\r
2911         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})">\r
2912             <summary>\r
2913             Computes the sum of a sequence of nullable <see cref="T:System.Double"/> values.\r
2914             </summary>\r
2915         </member>\r
2916         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">\r
2917             <summary>\r
2918             Computes the sum of a sequence of nullable <see cref="T:System.Double"/> \r
2919             values that are obtained by invoking a transform function on \r
2920             each element of the input sequence.\r
2921             </summary>\r
2922         </member>\r
2923         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})">\r
2924             <summary>\r
2925             Computes the average of a sequence of nullable <see cref="T:System.Double"/> values.\r
2926             </summary>\r
2927         </member>\r
2928         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">\r
2929             <summary>\r
2930             Computes the average of a sequence of nullable <see cref="T:System.Double"/> values \r
2931             that are obtained by invoking a transform function on each \r
2932             element of the input sequence.\r
2933             </summary>\r
2934         </member>\r
2935         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">\r
2936             <summary>\r
2937             Computes the sum of a sequence of <see cref="T:System.Double"/> values.\r
2938             </summary>\r
2939         </member>\r
2940         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">\r
2941             <summary>\r
2942             Computes the sum of a sequence of <see cref="T:System.Double"/> \r
2943             values that are obtained by invoking a transform function on \r
2944             each element of the input sequence.\r
2945             </summary>\r
2946         </member>\r
2947         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">\r
2948             <summary>\r
2949             Computes the average of a sequence of <see cref="T:System.Double"/> values.\r
2950             </summary>\r
2951         </member>\r
2952         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">\r
2953             <summary>\r
2954             Computes the average of a sequence of <see cref="T:System.Double"/> values \r
2955             that are obtained by invoking a transform function on each \r
2956             element of the input sequence.\r
2957             </summary>\r
2958         </member>\r
2959         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">\r
2960             <summary>\r
2961             Returns the minimum value in a sequence of nullable \r
2962             <see cref="T:System.Double"/> values.\r
2963             </summary>\r
2964         </member>\r
2965         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">\r
2966             <summary>\r
2967             Invokes a transform function on each element of a sequence and \r
2968             returns the minimum nullable <see cref="T:System.Double"/> value.\r
2969             </summary>\r
2970         </member>\r
2971         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">\r
2972             <summary>\r
2973             Returns the maximum value in a sequence of nullable \r
2974             <see cref="T:System.Double"/> values.\r
2975             </summary>\r
2976         </member>\r
2977         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">\r
2978             <summary>\r
2979             Invokes a transform function on each element of a sequence and \r
2980             returns the maximum nullable <see cref="T:System.Double"/> value.\r
2981             </summary>\r
2982         </member>\r
2983         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})">\r
2984             <summary>\r
2985             Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> values.\r
2986             </summary>\r
2987         </member>\r
2988         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">\r
2989             <summary>\r
2990             Computes the sum of a sequence of nullable <see cref="T:System.Decimal"/> \r
2991             values that are obtained by invoking a transform function on \r
2992             each element of the input sequence.\r
2993             </summary>\r
2994         </member>\r
2995         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})">\r
2996             <summary>\r
2997             Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values.\r
2998             </summary>\r
2999         </member>\r
3000         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">\r
3001             <summary>\r
3002             Computes the average of a sequence of nullable <see cref="T:System.Decimal"/> values \r
3003             that are obtained by invoking a transform function on each \r
3004             element of the input sequence.\r
3005             </summary>\r
3006         </member>\r
3007         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">\r
3008             <summary>\r
3009             Computes the sum of a sequence of <see cref="T:System.Decimal"/> values.\r
3010             </summary>\r
3011         </member>\r
3012         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">\r
3013             <summary>\r
3014             Computes the sum of a sequence of <see cref="T:System.Decimal"/> \r
3015             values that are obtained by invoking a transform function on \r
3016             each element of the input sequence.\r
3017             </summary>\r
3018         </member>\r
3019         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">\r
3020             <summary>\r
3021             Computes the average of a sequence of <see cref="T:System.Decimal"/> values.\r
3022             </summary>\r
3023         </member>\r
3024         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">\r
3025             <summary>\r
3026             Computes the average of a sequence of <see cref="T:System.Decimal"/> values \r
3027             that are obtained by invoking a transform function on each \r
3028             element of the input sequence.\r
3029             </summary>\r
3030         </member>\r
3031         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">\r
3032             <summary>\r
3033             Returns the minimum value in a sequence of nullable \r
3034             <see cref="T:System.Decimal"/> values.\r
3035             </summary>\r
3036         </member>\r
3037         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">\r
3038             <summary>\r
3039             Invokes a transform function on each element of a sequence and \r
3040             returns the minimum nullable <see cref="T:System.Decimal"/> value.\r
3041             </summary>\r
3042         </member>\r
3043         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">\r
3044             <summary>\r
3045             Returns the maximum value in a sequence of nullable \r
3046             <see cref="T:System.Decimal"/> values.\r
3047             </summary>\r
3048         </member>\r
3049         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">\r
3050             <summary>\r
3051             Invokes a transform function on each element of a sequence and \r
3052             returns the maximum nullable <see cref="T:System.Decimal"/> value.\r
3053             </summary>\r
3054         </member>\r
3055         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2">\r
3056             <summary>\r
3057             Represents a collection of objects that have a common key.\r
3058             </summary>\r
3059         </member>\r
3060         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2.Key">\r
3061             <summary>\r
3062             Gets the key of the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2"/>.\r
3063             </summary>\r
3064         </member>\r
3065         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.ILookup`2">\r
3066             <summary>\r
3067             Defines an indexer, size property, and Boolean search method for \r
3068             data structures that map keys to <see cref="T:System.Collections.Generic.IEnumerable`1"/> \r
3069             sequences of values.\r
3070             </summary>\r
3071         </member>\r
3072         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1">\r
3073             <summary>\r
3074             Represents a sorted sequence.\r
3075             </summary>\r
3076         </member>\r
3077         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1.CreateOrderedEnumerable``1(Newtonsoft.Json.Serialization.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)">\r
3078             <summary>\r
3079             Performs a subsequent ordering on the elements of an \r
3080             <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1"/> according to a key.\r
3081             </summary>\r
3082         </member>\r
3083         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2">\r
3084             <summary>\r
3085             Represents a collection of keys each mapped to one or more values.\r
3086             </summary>\r
3087         </member>\r
3088         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Contains(`0)">\r
3089             <summary>\r
3090             Determines whether a specified key is in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.\r
3091             </summary>\r
3092         </member>\r
3093         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.ApplyResultSelector``1(Newtonsoft.Json.Serialization.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})">\r
3094             <summary>\r
3095             Applies a transform function to each key and its associated \r
3096             values and returns the results.\r
3097             </summary>\r
3098         </member>\r
3099         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.GetEnumerator">\r
3100             <summary>\r
3101             Returns a generic enumerator that iterates through the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.\r
3102             </summary>\r
3103         </member>\r
3104         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Count">\r
3105             <summary>\r
3106             Gets the number of key/value collection pairs in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2"/>.\r
3107             </summary>\r
3108         </member>\r
3109         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Item(`0)">\r
3110             <summary>\r
3111             Gets the collection of values indexed by the specified key.\r
3112             </summary>\r
3113         </member>\r
3114         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.TagPosition(`0,System.Int32)">\r
3115             <remarks>\r
3116             See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>\r
3117             for why this method is needed and cannot be expressed as a \r
3118             lambda at the call site.\r
3119             </remarks>\r
3120         </member>\r
3121         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.GetFirst(Newtonsoft.Json.Utilities.LinqBridge.Tuple{`0,System.Int32})">\r
3122             <remarks>\r
3123             See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>\r
3124             for why this method is needed and cannot be expressed as a \r
3125             lambda at the call site.\r
3126             </remarks>\r
3127         </member>\r
3128         <member name="T:System.Runtime.CompilerServices.ExtensionAttribute">\r
3129             <remarks>\r
3130             This attribute allows us to define extension methods without \r
3131             requiring .NET Framework 3.5. For more information, see the section,\r
3132             <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7">Extension Methods in .NET Framework 2.0 Apps</a>,\r
3133             of <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx">Basic Instincts: Extension Methods</a>\r
3134             column in <a href="http://msdn.microsoft.com/msdnmag/">MSDN Magazine</a>, \r
3135             issue <a href="http://msdn.microsoft.com/en-us/magazine/cc135410.aspx">Nov 2007</a>.\r
3136             </remarks>\r
3137         </member>\r
3138         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">\r
3139             <summary>\r
3140             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.\r
3141             </summary>\r
3142         </member>\r
3143         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">\r
3144             <summary>\r
3145             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.\r
3146             </summary>\r
3147             <param name="name">The name.</param>\r
3148         </member>\r
3149         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">\r
3150             <summary>\r
3151             When overridden in a derived class, returns whether resetting an object changes its value.\r
3152             </summary>\r
3153             <returns>\r
3154             true if resetting the component changes its value; otherwise, false.\r
3155             </returns>\r
3156             <param name="component">The component to test for reset capability. \r
3157                             </param>\r
3158         </member>\r
3159         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">\r
3160             <summary>\r
3161             When overridden in a derived class, gets the current value of the property on a component.\r
3162             </summary>\r
3163             <returns>\r
3164             The value of a property for a given component.\r
3165             </returns>\r
3166             <param name="component">The component with the property for which to retrieve the value. \r
3167                             </param>\r
3168         </member>\r
3169         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">\r
3170             <summary>\r
3171             When overridden in a derived class, resets the value for this property of the component to the default value.\r
3172             </summary>\r
3173             <param name="component">The component with the property value that is to be reset to the default value. \r
3174                             </param>\r
3175         </member>\r
3176         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">\r
3177             <summary>\r
3178             When overridden in a derived class, sets the value of the component to a different value.\r
3179             </summary>\r
3180             <param name="component">The component with the property value that is to be set. \r
3181                             </param><param name="value">The new value. \r
3182                             </param>\r
3183         </member>\r
3184         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">\r
3185             <summary>\r
3186             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.\r
3187             </summary>\r
3188             <returns>\r
3189             true if the property should be persisted; otherwise, false.\r
3190             </returns>\r
3191             <param name="component">The component with the property to be examined for persistence. \r
3192                             </param>\r
3193         </member>\r
3194         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">\r
3195             <summary>\r
3196             When overridden in a derived class, gets the type of the component this property is bound to.\r
3197             </summary>\r
3198             <returns>\r
3199             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
3200             </returns>\r
3201         </member>\r
3202         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">\r
3203             <summary>\r
3204             When overridden in a derived class, gets a value indicating whether this property is read-only.\r
3205             </summary>\r
3206             <returns>\r
3207             true if the property is read-only; otherwise, false.\r
3208             </returns>\r
3209         </member>\r
3210         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">\r
3211             <summary>\r
3212             When overridden in a derived class, gets the type of the property.\r
3213             </summary>\r
3214             <returns>\r
3215             A <see cref="T:System.Type"/> that represents the type of the property.\r
3216             </returns>\r
3217         </member>\r
3218         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">\r
3219             <summary>\r
3220             Gets the hash code for the name of the member.\r
3221             </summary>\r
3222             <value></value>\r
3223             <returns>\r
3224             The hash code for the name of the member.\r
3225             </returns>\r
3226         </member>\r
3227         <member name="T:Newtonsoft.Json.Linq.JRaw">\r
3228             <summary>\r
3229             Represents a raw JSON string.\r
3230             </summary>\r
3231         </member>\r
3232         <member name="T:Newtonsoft.Json.Linq.JValue">\r
3233             <summary>\r
3234             Represents a value in JSON (string, integer, date, etc).\r
3235             </summary>\r
3236         </member>\r
3237         <member name="T:Newtonsoft.Json.Linq.JToken">\r
3238             <summary>\r
3239             Represents an abstract JSON token.\r
3240             </summary>\r
3241         </member>\r
3242         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">\r
3243             <summary>\r
3244             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
3245             </summary>\r
3246             <typeparam name="T">The type of token</typeparam>\r
3247         </member>\r
3248         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">\r
3249             <summary>\r
3250             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.\r
3251             </summary>\r
3252             <value></value>\r
3253         </member>\r
3254         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">\r
3255             <summary>\r
3256             Compares the values of two tokens, including the values of all descendant tokens.\r
3257             </summary>\r
3258             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
3259             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
3260             <returns>true if the tokens are equal; otherwise false.</returns>\r
3261         </member>\r
3262         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">\r
3263             <summary>\r
3264             Adds the specified content immediately after this token.\r
3265             </summary>\r
3266             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r
3267         </member>\r
3268         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">\r
3269             <summary>\r
3270             Adds the specified content immediately before this token.\r
3271             </summary>\r
3272             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r
3273         </member>\r
3274         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">\r
3275             <summary>\r
3276             Returns a collection of the ancestor tokens of this token.\r
3277             </summary>\r
3278             <returns>A collection of the ancestor tokens of this token.</returns>\r
3279         </member>\r
3280         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">\r
3281             <summary>\r
3282             Returns a collection of tokens that contain this token, and the ancestors of this token.\r
3283             </summary>\r
3284             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>\r
3285         </member>\r
3286         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">\r
3287             <summary>\r
3288             Returns a collection of the sibling tokens after this token, in document order.\r
3289             </summary>\r
3290             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r
3291         </member>\r
3292         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">\r
3293             <summary>\r
3294             Returns a collection of the sibling tokens before this token, in document order.\r
3295             </summary>\r
3296             <returns>A collection of the sibling tokens before this token, in document order.</returns>\r
3297         </member>\r
3298         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">\r
3299             <summary>\r
3300             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.\r
3301             </summary>\r
3302             <typeparam name="T">The type to convert the token to.</typeparam>\r
3303             <param name="key">The token key.</param>\r
3304             <returns>The converted token value.</returns>\r
3305         </member>\r
3306         <member name="M:Newtonsoft.Json.Linq.JToken.Children">\r
3307             <summary>\r
3308             Returns a collection of the child tokens of this token, in document order.\r
3309             </summary>\r
3310             <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
3311         </member>\r
3312         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">\r
3313             <summary>\r
3314             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r
3315             </summary>\r
3316             <typeparam name="T">The type to filter the child tokens on.</typeparam>\r
3317             <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
3318         </member>\r
3319         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">\r
3320             <summary>\r
3321             Returns a collection of the child values of this token, in document order.\r
3322             </summary>\r
3323             <typeparam name="T">The type to convert the values to.</typeparam>\r
3324             <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
3325         </member>\r
3326         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">\r
3327             <summary>\r
3328             Removes this token from its parent.\r
3329             </summary>\r
3330         </member>\r
3331         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">\r
3332             <summary>\r
3333             Replaces this token with the specified token.\r
3334             </summary>\r
3335             <param name="value">The value.</param>\r
3336         </member>\r
3337         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
3338             <summary>\r
3339             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
3340             </summary>\r
3341             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
3342             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
3343         </member>\r
3344         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">\r
3345             <summary>\r
3346             Returns the indented JSON for this token.\r
3347             </summary>\r
3348             <returns>\r
3349             The indented JSON for this token.\r
3350             </returns>\r
3351         </member>\r
3352         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">\r
3353             <summary>\r
3354             Returns the JSON for this token using the given formatting and converters.\r
3355             </summary>\r
3356             <param name="formatting">Indicates how the output is formatted.</param>\r
3357             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
3358             <returns>The JSON for this token using the given formatting and converters.</returns>\r
3359         </member>\r
3360         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">\r
3361             <summary>\r
3362             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.\r
3363             </summary>\r
3364             <param name="value">The value.</param>\r
3365             <returns>The result of the conversion.</returns>\r
3366         </member>\r
3367         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">\r
3368             <summary>\r
3369             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3370             </summary>\r
3371             <param name="value">The value.</param>\r
3372             <returns>The result of the conversion.</returns>\r
3373         </member>\r
3374         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">\r
3375             <summary>\r
3376             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.\r
3377             </summary>\r
3378             <param name="value">The value.</param>\r
3379             <returns>The result of the conversion.</returns>\r
3380         </member>\r
3381         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">\r
3382             <summary>\r
3383             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3384             </summary>\r
3385             <param name="value">The value.</param>\r
3386             <returns>The result of the conversion.</returns>\r
3387         </member>\r
3388         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">\r
3389             <summary>\r
3390             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3391             </summary>\r
3392             <param name="value">The value.</param>\r
3393             <returns>The result of the conversion.</returns>\r
3394         </member>\r
3395         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">\r
3396             <summary>\r
3397             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3398             </summary>\r
3399             <param name="value">The value.</param>\r
3400             <returns>The result of the conversion.</returns>\r
3401         </member>\r
3402         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">\r
3403             <summary>\r
3404             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3405             </summary>\r
3406             <param name="value">The value.</param>\r
3407             <returns>The result of the conversion.</returns>\r
3408         </member>\r
3409         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">\r
3410             <summary>\r
3411             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.\r
3412             </summary>\r
3413             <param name="value">The value.</param>\r
3414             <returns>The result of the conversion.</returns>\r
3415         </member>\r
3416         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">\r
3417             <summary>\r
3418             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.\r
3419             </summary>\r
3420             <param name="value">The value.</param>\r
3421             <returns>The result of the conversion.</returns>\r
3422         </member>\r
3423         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">\r
3424             <summary>\r
3425             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.\r
3426             </summary>\r
3427             <param name="value">The value.</param>\r
3428             <returns>The result of the conversion.</returns>\r
3429         </member>\r
3430         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">\r
3431             <summary>\r
3432             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.\r
3433             </summary>\r
3434             <param name="value">The value.</param>\r
3435             <returns>The result of the conversion.</returns>\r
3436         </member>\r
3437         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">\r
3438             <summary>\r
3439             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.\r
3440             </summary>\r
3441             <param name="value">The value.</param>\r
3442             <returns>The result of the conversion.</returns>\r
3443         </member>\r
3444         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">\r
3445             <summary>\r
3446             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.\r
3447             </summary>\r
3448             <param name="value">The value.</param>\r
3449             <returns>The result of the conversion.</returns>\r
3450         </member>\r
3451         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">\r
3452             <summary>\r
3453             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3454             </summary>\r
3455             <param name="value">The value.</param>\r
3456             <returns>The result of the conversion.</returns>\r
3457         </member>\r
3458         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">\r
3459             <summary>\r
3460             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3461             </summary>\r
3462             <param name="value">The value.</param>\r
3463             <returns>The result of the conversion.</returns>\r
3464         </member>\r
3465         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">\r
3466             <summary>\r
3467             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3468             </summary>\r
3469             <param name="value">The value.</param>\r
3470             <returns>The result of the conversion.</returns>\r
3471         </member>\r
3472         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">\r
3473             <summary>\r
3474             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3475             </summary>\r
3476             <param name="value">The value.</param>\r
3477             <returns>The result of the conversion.</returns>\r
3478         </member>\r
3479         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">\r
3480             <summary>\r
3481             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3482             </summary>\r
3483             <param name="value">The value.</param>\r
3484             <returns>The result of the conversion.</returns>\r
3485         </member>\r
3486         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">\r
3487             <summary>\r
3488             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.\r
3489             </summary>\r
3490             <param name="value">The value.</param>\r
3491             <returns>The result of the conversion.</returns>\r
3492         </member>\r
3493         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">\r
3494             <summary>\r
3495             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3496             </summary>\r
3497             <param name="value">The value.</param>\r
3498             <returns>The result of the conversion.</returns>\r
3499         </member>\r
3500         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">\r
3501             <summary>\r
3502             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3503             </summary>\r
3504             <param name="value">The value.</param>\r
3505             <returns>The result of the conversion.</returns>\r
3506         </member>\r
3507         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">\r
3508             <summary>\r
3509             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.\r
3510             </summary>\r
3511             <param name="value">The value.</param>\r
3512             <returns>The result of the conversion.</returns>\r
3513         </member>\r
3514         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">\r
3515             <summary>\r
3516             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3517             </summary>\r
3518             <param name="value">The value.</param>\r
3519             <returns>The result of the conversion.</returns>\r
3520         </member>\r
3521         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">\r
3522             <summary>\r
3523             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.\r
3524             </summary>\r
3525             <param name="value">The value.</param>\r
3526             <returns>The result of the conversion.</returns>\r
3527         </member>\r
3528         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">\r
3529             <summary>\r
3530             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.\r
3531             </summary>\r
3532             <param name="value">The value.</param>\r
3533             <returns>The result of the conversion.</returns>\r
3534         </member>\r
3535         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">\r
3536             <summary>\r
3537             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.\r
3538             </summary>\r
3539             <param name="value">The value.</param>\r
3540             <returns>The result of the conversion.</returns>\r
3541         </member>\r
3542         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">\r
3543             <summary>\r
3544             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.\r
3545             </summary>\r
3546             <param name="value">The value.</param>\r
3547             <returns>The result of the conversion.</returns>\r
3548         </member>\r
3549         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">\r
3550             <summary>\r
3551             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.\r
3552             </summary>\r
3553             <param name="value">The value.</param>\r
3554             <returns>The result of the conversion.</returns>\r
3555         </member>\r
3556         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">\r
3557             <summary>\r
3558             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.\r
3559             </summary>\r
3560             <param name="value">The value.</param>\r
3561             <returns>The result of the conversion.</returns>\r
3562         </member>\r
3563         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">\r
3564             <summary>\r
3565             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].\r
3566             </summary>\r
3567             <param name="value">The value.</param>\r
3568             <returns>The result of the conversion.</returns>\r
3569         </member>\r
3570         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">\r
3571             <summary>\r
3572             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.\r
3573             </summary>\r
3574             <param name="value">The value.</param>\r
3575             <returns>The result of the conversion.</returns>\r
3576         </member>\r
3577         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">\r
3578             <summary>\r
3579             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.\r
3580             </summary>\r
3581             <param name="value">The value.</param>\r
3582             <returns>The result of the conversion.</returns>\r
3583         </member>\r
3584         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">\r
3585             <summary>\r
3586             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.\r
3587             </summary>\r
3588             <param name="value">The value.</param>\r
3589             <returns>The result of the conversion.</returns>\r
3590         </member>\r
3591         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">\r
3592             <summary>\r
3593             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.\r
3594             </summary>\r
3595             <param name="value">The value.</param>\r
3596             <returns>The result of the conversion.</returns>\r
3597         </member>\r
3598         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">\r
3599             <summary>\r
3600             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.\r
3601             </summary>\r
3602             <param name="value">The value.</param>\r
3603             <returns>The result of the conversion.</returns>\r
3604         </member>\r
3605         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">\r
3606             <summary>\r
3607             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3608             </summary>\r
3609             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3610             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3611         </member>\r
3612         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">\r
3613             <summary>\r
3614             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3615             </summary>\r
3616             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3617             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3618         </member>\r
3619         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">\r
3620             <summary>\r
3621             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3622             </summary>\r
3623             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3624             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3625         </member>\r
3626         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">\r
3627             <summary>\r
3628             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3629             </summary>\r
3630             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3631             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3632         </member>\r
3633         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">\r
3634             <summary>\r
3635             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3636             </summary>\r
3637             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3638             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3639         </member>\r
3640         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">\r
3641             <summary>\r
3642             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3643             </summary>\r
3644             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3645             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3646         </member>\r
3647         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">\r
3648             <summary>\r
3649             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3650             </summary>\r
3651             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3652             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3653         </member>\r
3654         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">\r
3655             <summary>\r
3656             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3657             </summary>\r
3658             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3659             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3660         </member>\r
3661         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">\r
3662             <summary>\r
3663             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3664             </summary>\r
3665             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3666             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3667         </member>\r
3668         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">\r
3669             <summary>\r
3670             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3671             </summary>\r
3672             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3673             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3674         </member>\r
3675         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">\r
3676             <summary>\r
3677             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3678             </summary>\r
3679             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3680             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3681         </member>\r
3682         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">\r
3683             <summary>\r
3684             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3685             </summary>\r
3686             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3687             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3688         </member>\r
3689         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">\r
3690             <summary>\r
3691             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3692             </summary>\r
3693             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3694             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3695         </member>\r
3696         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">\r
3697             <summary>\r
3698             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3699             </summary>\r
3700             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3701             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3702         </member>\r
3703         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">\r
3704             <summary>\r
3705             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3706             </summary>\r
3707             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3708             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3709         </member>\r
3710         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">\r
3711             <summary>\r
3712             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3713             </summary>\r
3714             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3715             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3716         </member>\r
3717         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">\r
3718             <summary>\r
3719             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3720             </summary>\r
3721             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3722             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3723         </member>\r
3724         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">\r
3725             <summary>\r
3726             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3727             </summary>\r
3728             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3729             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3730         </member>\r
3731         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">\r
3732             <summary>\r
3733             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3734             </summary>\r
3735             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3736             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3737         </member>\r
3738         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">\r
3739             <summary>\r
3740             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3741             </summary>\r
3742             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3743             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3744         </member>\r
3745         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">\r
3746             <summary>\r
3747             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3748             </summary>\r
3749             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3750             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3751         </member>\r
3752         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">\r
3753             <summary>\r
3754             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3755             </summary>\r
3756             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3757             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3758         </member>\r
3759         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">\r
3760             <summary>\r
3761             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3762             </summary>\r
3763             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3764             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3765         </member>\r
3766         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">\r
3767             <summary>\r
3768             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3769             </summary>\r
3770             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3771             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3772         </member>\r
3773         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">\r
3774             <summary>\r
3775             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3776             </summary>\r
3777             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3778             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3779         </member>\r
3780         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">\r
3781             <summary>\r
3782             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3783             </summary>\r
3784             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3785             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3786         </member>\r
3787         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">\r
3788             <summary>\r
3789             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3790             </summary>\r
3791             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3792             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3793         </member>\r
3794         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">\r
3795             <summary>\r
3796             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3797             </summary>\r
3798             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3799             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3800         </member>\r
3801         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">\r
3802             <summary>\r
3803             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3804             </summary>\r
3805             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3806             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3807         </member>\r
3808         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">\r
3809             <summary>\r
3810             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3811             </summary>\r
3812             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3813             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3814         </member>\r
3815         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">\r
3816             <summary>\r
3817             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3818             </summary>\r
3819             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3820             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3821         </member>\r
3822         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">\r
3823             <summary>\r
3824             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3825             </summary>\r
3826             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3827             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3828         </member>\r
3829         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">\r
3830             <summary>\r
3831             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3832             </summary>\r
3833             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>\r
3834             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>\r
3835         </member>\r
3836         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">\r
3837             <summary>\r
3838             Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.\r
3839             </summary>\r
3840             <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>\r
3841         </member>\r
3842         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">\r
3843             <summary>\r
3844             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.\r
3845             </summary>\r
3846             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>\r
3847             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>\r
3848         </member>\r
3849         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
3850             <summary>\r
3851             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3852             </summary>\r
3853             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>\r
3854             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>\r
3855             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>\r
3856         </member>\r
3857         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">\r
3858             <summary>\r
3859             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3860             </summary>\r
3861             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>\r
3862             <returns>The new object created from the JSON value.</returns>\r
3863         </member>\r
3864         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">\r
3865             <summary>\r
3866             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3867             </summary>\r
3868             <param name="objectType">The object type that the token will be deserialized to.</param>\r
3869             <returns>The new object created from the JSON value.</returns>\r
3870         </member>\r
3871         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">\r
3872             <summary>\r
3873             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3874             </summary>\r
3875             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>\r
3876             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>\r
3877             <returns>The new object created from the JSON value.</returns>\r
3878         </member>\r
3879         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">\r
3880             <summary>\r
3881             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
3882             </summary>\r
3883             <param name="objectType">The object type that the token will be deserialized to.</param>\r
3884             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>\r
3885             <returns>The new object created from the JSON value.</returns>\r
3886         </member>\r
3887         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">\r
3888             <summary>\r
3889             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
3890             </summary>\r
3891             <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
3892             <returns>\r
3893             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens\r
3894             that were read from the reader. The runtime type of the token is determined\r
3895             by the token type of the first token encountered in the reader.\r
3896             </returns>\r
3897         </member>\r
3898         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">\r
3899             <summary>\r
3900             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.\r
3901             </summary>\r
3902             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
3903             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>\r
3904         </member>\r
3905         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">\r
3906             <summary>\r
3907             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
3908             </summary>\r
3909             <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
3910             <returns>\r
3911             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens\r
3912             that were read from the reader. The runtime type of the token is determined\r
3913             by the token type of the first token encountered in the reader.\r
3914             </returns>\r
3915         </member>\r
3916         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">\r
3917             <summary>\r
3918             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.\r
3919             </summary>\r
3920             <param name="path">\r
3921             A <see cref="T:System.String"/> that contains a JPath expression.\r
3922             </param>\r
3923             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>\r
3924         </member>\r
3925         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">\r
3926             <summary>\r
3927             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.\r
3928             </summary>\r
3929             <param name="path">\r
3930             A <see cref="T:System.String"/> that contains a JPath expression.\r
3931             </param>\r
3932             <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
3933             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
3934         </member>\r
3935         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">\r
3936             <summary>\r
3937             Selects a collection of elements using a JPath expression.\r
3938             </summary>\r
3939             <param name="path">\r
3940             A <see cref="T:System.String"/> that contains a JPath expression.\r
3941             </param>\r
3942             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>\r
3943         </member>\r
3944         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">\r
3945             <summary>\r
3946             Selects a collection of elements using a JPath expression.\r
3947             </summary>\r
3948             <param name="path">\r
3949             A <see cref="T:System.String"/> that contains a JPath expression.\r
3950             </param>\r
3951             <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
3952             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>\r
3953         </member>\r
3954         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">\r
3955             <summary>\r
3956             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.\r
3957             </summary>\r
3958             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>\r
3959         </member>\r
3960         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">\r
3961             <summary>\r
3962             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3963             </summary>\r
3964             <param name="annotation">The annotation to add.</param>\r
3965         </member>\r
3966         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">\r
3967             <summary>\r
3968             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3969             </summary>\r
3970             <typeparam name="T">The type of the annotation to retrieve.</typeparam>\r
3971             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>\r
3972         </member>\r
3973         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">\r
3974             <summary>\r
3975             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3976             </summary>\r
3977             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>\r
3978             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>\r
3979         </member>\r
3980         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">\r
3981             <summary>\r
3982             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3983             </summary>\r
3984             <typeparam name="T">The type of the annotations to retrieve.</typeparam>\r
3985             <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
3986         </member>\r
3987         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">\r
3988             <summary>\r
3989             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3990             </summary>\r
3991             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>\r
3992             <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
3993         </member>\r
3994         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">\r
3995             <summary>\r
3996             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
3997             </summary>\r
3998             <typeparam name="T">The type of annotations to remove.</typeparam>\r
3999         </member>\r
4000         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">\r
4001             <summary>\r
4002             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
4003             </summary>\r
4004             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>\r
4005         </member>\r
4006         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">\r
4007             <summary>\r
4008             Gets a comparer that can compare two tokens for value equality.\r
4009             </summary>\r
4010             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>\r
4011         </member>\r
4012         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">\r
4013             <summary>\r
4014             Gets or sets the parent.\r
4015             </summary>\r
4016             <value>The parent.</value>\r
4017         </member>\r
4018         <member name="P:Newtonsoft.Json.Linq.JToken.Root">\r
4019             <summary>\r
4020             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
4021             </summary>\r
4022             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>\r
4023         </member>\r
4024         <member name="P:Newtonsoft.Json.Linq.JToken.Type">\r
4025             <summary>\r
4026             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
4027             </summary>\r
4028             <value>The type.</value>\r
4029         </member>\r
4030         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">\r
4031             <summary>\r
4032             Gets a value indicating whether this token has child tokens.\r
4033             </summary>\r
4034             <value>\r
4035                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
4036             </value>\r
4037         </member>\r
4038         <member name="P:Newtonsoft.Json.Linq.JToken.Next">\r
4039             <summary>\r
4040             Gets the next sibling token of this node.\r
4041             </summary>\r
4042             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>\r
4043         </member>\r
4044         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">\r
4045             <summary>\r
4046             Gets the previous sibling token of this node.\r
4047             </summary>\r
4048             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>\r
4049         </member>\r
4050         <member name="P:Newtonsoft.Json.Linq.JToken.Path">\r
4051             <summary>\r
4052             Gets the path of the JSON token. \r
4053             </summary>\r
4054         </member>\r
4055         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">\r
4056             <summary>\r
4057             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
4058             </summary>\r
4059             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
4060         </member>\r
4061         <member name="P:Newtonsoft.Json.Linq.JToken.First">\r
4062             <summary>\r
4063             Get the first child token of this token.\r
4064             </summary>\r
4065             <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
4066         </member>\r
4067         <member name="P:Newtonsoft.Json.Linq.JToken.Last">\r
4068             <summary>\r
4069             Get the last child token of this token.\r
4070             </summary>\r
4071             <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
4072         </member>\r
4073         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">\r
4074             <summary>\r
4075             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
4076             </summary>\r
4077             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>\r
4078         </member>\r
4079         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">\r
4080             <summary>\r
4081             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4082             </summary>\r
4083             <param name="value">The value.</param>\r
4084         </member>\r
4085         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">\r
4086             <summary>\r
4087             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4088             </summary>\r
4089             <param name="value">The value.</param>\r
4090         </member>\r
4091         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">\r
4092             <summary>\r
4093             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4094             </summary>\r
4095             <param name="value">The value.</param>\r
4096         </member>\r
4097         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">\r
4098             <summary>\r
4099             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4100             </summary>\r
4101             <param name="value">The value.</param>\r
4102         </member>\r
4103         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">\r
4104             <summary>\r
4105             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4106             </summary>\r
4107             <param name="value">The value.</param>\r
4108         </member>\r
4109         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">\r
4110             <summary>\r
4111             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4112             </summary>\r
4113             <param name="value">The value.</param>\r
4114         </member>\r
4115         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">\r
4116             <summary>\r
4117             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4118             </summary>\r
4119             <param name="value">The value.</param>\r
4120         </member>\r
4121         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">\r
4122             <summary>\r
4123             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4124             </summary>\r
4125             <param name="value">The value.</param>\r
4126         </member>\r
4127         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">\r
4128             <summary>\r
4129             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4130             </summary>\r
4131             <param name="value">The value.</param>\r
4132         </member>\r
4133         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">\r
4134             <summary>\r
4135             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4136             </summary>\r
4137             <param name="value">The value.</param>\r
4138         </member>\r
4139         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">\r
4140             <summary>\r
4141             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4142             </summary>\r
4143             <param name="value">The value.</param>\r
4144         </member>\r
4145         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">\r
4146             <summary>\r
4147             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4148             </summary>\r
4149             <param name="value">The value.</param>\r
4150         </member>\r
4151         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">\r
4152             <summary>\r
4153             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.\r
4154             </summary>\r
4155             <param name="value">The value.</param>\r
4156         </member>\r
4157         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">\r
4158             <summary>\r
4159             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.\r
4160             </summary>\r
4161             <param name="value">The value.</param>\r
4162             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>\r
4163         </member>\r
4164         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">\r
4165             <summary>\r
4166             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.\r
4167             </summary>\r
4168             <param name="value">The value.</param>\r
4169             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>\r
4170         </member>\r
4171         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">\r
4172             <summary>\r
4173             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.\r
4174             </summary>\r
4175             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>\r
4176         </member>\r
4177         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">\r
4178             <summary>\r
4179             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.\r
4180             </summary>\r
4181             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>\r
4182         </member>\r
4183         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
4184             <summary>\r
4185             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
4186             </summary>\r
4187             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
4188             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
4189         </member>\r
4190         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">\r
4191             <summary>\r
4192             Indicates whether the current object is equal to another object of the same type.\r
4193             </summary>\r
4194             <returns>\r
4195             true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.\r
4196             </returns>\r
4197             <param name="other">An object to compare with this object.</param>\r
4198         </member>\r
4199         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">\r
4200             <summary>\r
4201             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.\r
4202             </summary>\r
4203             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>\r
4204             <returns>\r
4205             true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.\r
4206             </returns>\r
4207             <exception cref="T:System.NullReferenceException">\r
4208             The <paramref name="obj"/> parameter is null.\r
4209             </exception>\r
4210         </member>\r
4211         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">\r
4212             <summary>\r
4213             Serves as a hash function for a particular type.\r
4214             </summary>\r
4215             <returns>\r
4216             A hash code for the current <see cref="T:System.Object"/>.\r
4217             </returns>\r
4218         </member>\r
4219         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">\r
4220             <summary>\r
4221             Returns a <see cref="T:System.String"/> that represents this instance.\r
4222             </summary>\r
4223             <returns>\r
4224             A <see cref="T:System.String"/> that represents this instance.\r
4225             </returns>\r
4226         </member>\r
4227         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">\r
4228             <summary>\r
4229             Returns a <see cref="T:System.String"/> that represents this instance.\r
4230             </summary>\r
4231             <param name="format">The format.</param>\r
4232             <returns>\r
4233             A <see cref="T:System.String"/> that represents this instance.\r
4234             </returns>\r
4235         </member>\r
4236         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">\r
4237             <summary>\r
4238             Returns a <see cref="T:System.String"/> that represents this instance.\r
4239             </summary>\r
4240             <param name="formatProvider">The format provider.</param>\r
4241             <returns>\r
4242             A <see cref="T:System.String"/> that represents this instance.\r
4243             </returns>\r
4244         </member>\r
4245         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">\r
4246             <summary>\r
4247             Returns a <see cref="T:System.String"/> that represents this instance.\r
4248             </summary>\r
4249             <param name="format">The format.</param>\r
4250             <param name="formatProvider">The format provider.</param>\r
4251             <returns>\r
4252             A <see cref="T:System.String"/> that represents this instance.\r
4253             </returns>\r
4254         </member>\r
4255         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">\r
4256             <summary>\r
4257             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
4258             </summary>\r
4259             <param name="obj">An object to compare with this instance.</param>\r
4260             <returns>\r
4261             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r
4262             Value\r
4263             Meaning\r
4264             Less than zero\r
4265             This instance is less than <paramref name="obj"/>.\r
4266             Zero\r
4267             This instance is equal to <paramref name="obj"/>.\r
4268             Greater than zero\r
4269             This instance is greater than <paramref name="obj"/>.\r
4270             </returns>\r
4271             <exception cref="T:System.ArgumentException">\r
4272                 <paramref name="obj"/> is not the same type as this instance.\r
4273             </exception>\r
4274         </member>\r
4275         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">\r
4276             <summary>\r
4277             Gets a value indicating whether this token has child tokens.\r
4278             </summary>\r
4279             <value>\r
4280                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
4281             </value>\r
4282         </member>\r
4283         <member name="P:Newtonsoft.Json.Linq.JValue.Type">\r
4284             <summary>\r
4285             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
4286             </summary>\r
4287             <value>The type.</value>\r
4288         </member>\r
4289         <member name="P:Newtonsoft.Json.Linq.JValue.Value">\r
4290             <summary>\r
4291             Gets or sets the underlying token value.\r
4292             </summary>\r
4293             <value>The underlying token value.</value>\r
4294         </member>\r
4295         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">\r
4296             <summary>\r
4297             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
4298             </summary>\r
4299             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>\r
4300         </member>\r
4301         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">\r
4302             <summary>\r
4303             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.\r
4304             </summary>\r
4305             <param name="rawJson">The raw json.</param>\r
4306         </member>\r
4307         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">\r
4308             <summary>\r
4309             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.\r
4310             </summary>\r
4311             <param name="reader">The reader.</param>\r
4312             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>\r
4313         </member>\r
4314         <member name="T:Newtonsoft.Json.Required">\r
4315             <summary>\r
4316             Indicating whether a property is required.\r
4317             </summary>\r
4318         </member>\r
4319         <member name="F:Newtonsoft.Json.Required.Default">\r
4320             <summary>\r
4321             The property is not required. The default state.\r
4322             </summary>\r
4323         </member>\r
4324         <member name="F:Newtonsoft.Json.Required.AllowNull">\r
4325             <summary>\r
4326             The property must be defined in JSON but can be a null value.\r
4327             </summary>\r
4328         </member>\r
4329         <member name="F:Newtonsoft.Json.Required.Always">\r
4330             <summary>\r
4331             The property must be defined in JSON and cannot be a null value.\r
4332             </summary>\r
4333         </member>\r
4334         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">\r
4335             <summary>\r
4336             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4337             </summary>\r
4338         </member>\r
4339         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">\r
4340             <summary>\r
4341             Resolves a reference to its object.\r
4342             </summary>\r
4343             <param name="context">The serialization context.</param>\r
4344             <param name="reference">The reference to resolve.</param>\r
4345             <returns>The object that</returns>\r
4346         </member>\r
4347         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">\r
4348             <summary>\r
4349             Gets the reference for the sepecified object.\r
4350             </summary>\r
4351             <param name="context">The serialization context.</param>\r
4352             <param name="value">The object to get a reference for.</param>\r
4353             <returns>The reference to the object.</returns>\r
4354         </member>\r
4355         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">\r
4356             <summary>\r
4357             Determines whether the specified object is referenced.\r
4358             </summary>\r
4359             <param name="context">The serialization context.</param>\r
4360             <param name="value">The object to test for a reference.</param>\r
4361             <returns>\r
4362                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r
4363             </returns>\r
4364         </member>\r
4365         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">\r
4366             <summary>\r
4367             Adds a reference to the specified object.\r
4368             </summary>\r
4369             <param name="context">The serialization context.</param>\r
4370             <param name="reference">The reference.</param>\r
4371             <param name="value">The object to reference.</param>\r
4372         </member>\r
4373         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">\r
4374             <summary>\r
4375             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4376             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.\r
4377             </summary>\r
4378             <example>\r
4379               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>       \r
4380             </example>\r
4381         </member>\r
4382         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">\r
4383             <summary>\r
4384             Do not preserve references when serializing types.\r
4385             </summary>\r
4386         </member>\r
4387         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">\r
4388             <summary>\r
4389             Preserve references when serializing into a JSON object structure.\r
4390             </summary>\r
4391         </member>\r
4392         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">\r
4393             <summary>\r
4394             Preserve references when serializing into a JSON array structure.\r
4395             </summary>\r
4396         </member>\r
4397         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">\r
4398             <summary>\r
4399             Preserve references when serializing.\r
4400             </summary>\r
4401         </member>\r
4402         <member name="T:Newtonsoft.Json.JsonArrayAttribute">\r
4403             <summary>\r
4404             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.\r
4405             </summary>\r
4406         </member>\r
4407         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">\r
4408             <summary>\r
4409             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.\r
4410             </summary>\r
4411         </member>\r
4412         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">\r
4413             <summary>\r
4414             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
4415             </summary>\r
4416             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>\r
4417         </member>\r
4418         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">\r
4419             <summary>\r
4420             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.\r
4421             </summary>\r
4422             <param name="id">The container Id.</param>\r
4423         </member>\r
4424         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">\r
4425             <summary>\r
4426             Gets or sets a value indicating whether null items are allowed in the collection.\r
4427             </summary>\r
4428             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r
4429         </member>\r
4430         <member name="T:Newtonsoft.Json.DefaultValueHandling">\r
4431             <summary>\r
4432             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4433             </summary>\r
4434             <example>\r
4435               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/>\r
4436               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/>\r
4437             </example>\r
4438         </member>\r
4439         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">\r
4440             <summary>\r
4441             Include members where the member value is the same as the member's default value when serializing objects.\r
4442             Included members are written to JSON. Has no effect when deserializing.\r
4443             </summary>\r
4444         </member>\r
4445         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">\r
4446             <summary>\r
4447             Ignore members where the member value is the same as the member's default value when serializing objects\r
4448             so that is is not written to JSON.\r
4449             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,\r
4450             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r
4451             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.\r
4452             </summary>\r
4453         </member>\r
4454         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">\r
4455             <summary>\r
4456             Members with a default value but no JSON will be set to their default value when deserializing.\r
4457             </summary>\r
4458         </member>\r
4459         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">\r
4460             <summary>\r
4461             Ignore members where the member value is the same as the member's default value when serializing objects\r
4462             and sets members to their default value when deserializing.\r
4463             </summary>\r
4464         </member>\r
4465         <member name="T:Newtonsoft.Json.JsonConverterAttribute">\r
4466             <summary>\r
4467             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
4468             </summary>\r
4469         </member>\r
4470         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">\r
4471             <summary>\r
4472             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.\r
4473             </summary>\r
4474             <param name="converterType">Type of the converter.</param>\r
4475         </member>\r
4476         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">\r
4477             <summary>\r
4478             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.\r
4479             </summary>\r
4480             <param name="converterType">Type of the converter.</param>\r
4481             <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>\r
4482         </member>\r
4483         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">\r
4484             <summary>\r
4485             Gets the <see cref="T:System.Type"/> of the converter.\r
4486             </summary>\r
4487             <value>The <see cref="T:System.Type"/> of the converter.</value>\r
4488         </member>\r
4489         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">\r
4490             <summary>\r
4491             The parameter list to use when constructing the JsonConverter described by ConverterType.  \r
4492             If null, the default constructor is used.\r
4493             </summary>\r
4494         </member>\r
4495         <member name="T:Newtonsoft.Json.JsonObjectAttribute">\r
4496             <summary>\r
4497             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.\r
4498             </summary>\r
4499         </member>\r
4500         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">\r
4501             <summary>\r
4502             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.\r
4503             </summary>\r
4504         </member>\r
4505         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">\r
4506             <summary>\r
4507             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.\r
4508             </summary>\r
4509             <param name="memberSerialization">The member serialization.</param>\r
4510         </member>\r
4511         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">\r
4512             <summary>\r
4513             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.\r
4514             </summary>\r
4515             <param name="id">The container Id.</param>\r
4516         </member>\r
4517         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">\r
4518             <summary>\r
4519             Gets or sets the member serialization.\r
4520             </summary>\r
4521             <value>The member serialization.</value>\r
4522         </member>\r
4523         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">\r
4524             <summary>\r
4525             Gets or sets a value that indicates whether the object's properties are required.\r
4526             </summary>\r
4527             <value>\r
4528                 A value indicating whether the object's properties are required.\r
4529             </value>\r
4530         </member>\r
4531         <member name="T:Newtonsoft.Json.JsonSerializerSettings">\r
4532             <summary>\r
4533             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.\r
4534             </summary>\r
4535         </member>\r
4536         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">\r
4537             <summary>\r
4538             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.\r
4539             </summary>\r
4540         </member>\r
4541         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">\r
4542             <summary>\r
4543             Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r
4544             </summary>\r
4545             <value>Reference loop handling.</value>\r
4546         </member>\r
4547         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">\r
4548             <summary>\r
4549             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
4550             </summary>\r
4551             <value>Missing member handling.</value>\r
4552         </member>\r
4553         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">\r
4554             <summary>\r
4555             Gets or sets how objects are created during deserialization.\r
4556             </summary>\r
4557             <value>The object creation handling.</value>\r
4558         </member>\r
4559         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">\r
4560             <summary>\r
4561             Gets or sets how null values are handled during serialization and deserialization.\r
4562             </summary>\r
4563             <value>Null value handling.</value>\r
4564         </member>\r
4565         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">\r
4566             <summary>\r
4567             Gets or sets how null default are handled during serialization and deserialization.\r
4568             </summary>\r
4569             <value>The default value handling.</value>\r
4570         </member>\r
4571         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">\r
4572             <summary>\r
4573             Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.\r
4574             </summary>\r
4575             <value>The converters.</value>\r
4576         </member>\r
4577         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">\r
4578             <summary>\r
4579             Gets or sets how object references are preserved by the serializer.\r
4580             </summary>\r
4581             <value>The preserve references handling.</value>\r
4582         </member>\r
4583         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">\r
4584             <summary>\r
4585             Gets or sets how type name writing and reading is handled by the serializer.\r
4586             </summary>\r
4587             <value>The type name handling.</value>\r
4588         </member>\r
4589         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">\r
4590             <summary>\r
4591             Gets or sets how metadata properties are used during deserialization.\r
4592             </summary>\r
4593             <value>The metadata properties handling.</value>\r
4594         </member>\r
4595         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">\r
4596             <summary>\r
4597             Gets or sets how a type name assembly is written and resolved by the serializer.\r
4598             </summary>\r
4599             <value>The type name assembly format.</value>\r
4600         </member>\r
4601         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">\r
4602             <summary>\r
4603             Gets or sets how constructors are used during deserialization.\r
4604             </summary>\r
4605             <value>The constructor handling.</value>\r
4606         </member>\r
4607         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">\r
4608             <summary>\r
4609             Gets or sets the contract resolver used by the serializer when\r
4610             serializing .NET objects to JSON and vice versa.\r
4611             </summary>\r
4612             <value>The contract resolver.</value>\r
4613         </member>\r
4614         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">\r
4615             <summary>\r
4616             Gets or sets the equality comparer used by the serializer when comparing references.\r
4617             </summary>\r
4618             <value>The equality comparer.</value>\r
4619         </member>\r
4620         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">\r
4621             <summary>\r
4622             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
4623             </summary>\r
4624             <value>The reference resolver.</value>\r
4625         </member>\r
4626         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">\r
4627             <summary>\r
4628             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
4629             </summary>\r
4630             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>\r
4631         </member>\r
4632         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">\r
4633             <summary>\r
4634             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.\r
4635             </summary>\r
4636             <value>The trace writer.</value>\r
4637         </member>\r
4638         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">\r
4639             <summary>\r
4640             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.\r
4641             </summary>\r
4642             <value>The binder.</value>\r
4643         </member>\r
4644         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">\r
4645             <summary>\r
4646             Gets or sets the error handler called during serialization and deserialization.\r
4647             </summary>\r
4648             <value>The error handler called during serialization and deserialization.</value>\r
4649         </member>\r
4650         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">\r
4651             <summary>\r
4652             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.\r
4653             </summary>\r
4654             <value>The context.</value>\r
4655         </member>\r
4656         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">\r
4657             <summary>\r
4658             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
4659             </summary>\r
4660         </member>\r
4661         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">\r
4662             <summary>\r
4663             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
4664             </summary>\r
4665         </member>\r
4666         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">\r
4667             <summary>\r
4668             Indicates how JSON text output is formatted.\r
4669             </summary>\r
4670         </member>\r
4671         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">\r
4672             <summary>\r
4673             Get or set how dates are written to JSON text.\r
4674             </summary>\r
4675         </member>\r
4676         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">\r
4677             <summary>\r
4678             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.\r
4679             </summary>\r
4680         </member>\r
4681         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">\r
4682             <summary>\r
4683             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
4684             </summary>\r
4685         </member>\r
4686         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">\r
4687             <summary>\r
4688             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
4689             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
4690             are written as JSON.\r
4691             </summary>\r
4692         </member>\r
4693         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">\r
4694             <summary>\r
4695             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
4696             </summary>\r
4697         </member>\r
4698         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">\r
4699             <summary>\r
4700             Get or set how strings are escaped when writing JSON text.\r
4701             </summary>\r
4702         </member>\r
4703         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">\r
4704             <summary>\r
4705             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
4706             </summary>\r
4707         </member>\r
4708         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">\r
4709             <summary>\r
4710             Gets a value indicating whether there will be a check for additional content after deserializing an object.\r
4711             </summary>\r
4712             <value>\r
4713                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r
4714             </value>\r
4715         </member>\r
4716         <member name="T:Newtonsoft.Json.JsonValidatingReader">\r
4717             <summary>\r
4718             <para>\r
4719             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.\r
4720             </para>\r
4721             <note type="caution">\r
4722             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
4723             </note>\r
4724             </summary>\r
4725         </member>\r
4726         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">\r
4727             <summary>\r
4728             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that\r
4729             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
4730             </summary>\r
4731             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>\r
4732         </member>\r
4733         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">\r
4734             <summary>\r
4735             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4736             </summary>\r
4737             <returns>A <see cref="T:System.Nullable`1"/>.</returns>\r
4738         </member>\r
4739         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">\r
4740             <summary>\r
4741             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
4742             </summary>\r
4743             <returns>\r
4744             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.\r
4745             </returns>\r
4746         </member>\r
4747         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">\r
4748             <summary>\r
4749             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4750             </summary>\r
4751             <returns>A <see cref="T:System.Nullable`1"/>.</returns>\r
4752         </member>\r
4753         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">\r
4754             <summary>\r
4755             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
4756             </summary>\r
4757             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4758         </member>\r
4759         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">\r
4760             <summary>\r
4761             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
4762             </summary>\r
4763             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
4764         </member>\r
4765         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">\r
4766             <summary>\r
4767             Reads the next JSON token from the stream.\r
4768             </summary>\r
4769             <returns>\r
4770             true if the next token was read successfully; false if there are no more tokens to read.\r
4771             </returns>\r
4772         </member>\r
4773         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">\r
4774             <summary>\r
4775             Sets an event handler for receiving schema validation errors.\r
4776             </summary>\r
4777         </member>\r
4778         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">\r
4779             <summary>\r
4780             Gets the text value of the current JSON token.\r
4781             </summary>\r
4782             <value></value>\r
4783         </member>\r
4784         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">\r
4785             <summary>\r
4786             Gets the depth of the current token in the JSON document.\r
4787             </summary>\r
4788             <value>The depth of the current token in the JSON document.</value>\r
4789         </member>\r
4790         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">\r
4791             <summary>\r
4792             Gets the path of the current JSON token. \r
4793             </summary>\r
4794         </member>\r
4795         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">\r
4796             <summary>\r
4797             Gets the quotation mark character used to enclose the value of a string.\r
4798             </summary>\r
4799             <value></value>\r
4800         </member>\r
4801         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">\r
4802             <summary>\r
4803             Gets the type of the current JSON token.\r
4804             </summary>\r
4805             <value></value>\r
4806         </member>\r
4807         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">\r
4808             <summary>\r
4809             Gets the Common Language Runtime (CLR) type for the current JSON token.\r
4810             </summary>\r
4811             <value></value>\r
4812         </member>\r
4813         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">\r
4814             <summary>\r
4815             Gets or sets the schema.\r
4816             </summary>\r
4817             <value>The schema.</value>\r
4818         </member>\r
4819         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">\r
4820             <summary>\r
4821             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.\r
4822             </summary>\r
4823             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>\r
4824         </member>\r
4825         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">\r
4826             <summary>\r
4827             Compares tokens to determine whether they are equal.\r
4828             </summary>\r
4829         </member>\r
4830         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">\r
4831             <summary>\r
4832             Determines whether the specified objects are equal.\r
4833             </summary>\r
4834             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
4835             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>\r
4836             <returns>\r
4837             true if the specified objects are equal; otherwise, false.\r
4838             </returns>\r
4839         </member>\r
4840         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">\r
4841             <summary>\r
4842             Returns a hash code for the specified object.\r
4843             </summary>\r
4844             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>\r
4845             <returns>A hash code for the specified object.</returns>\r
4846             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>\r
4847         </member>\r
4848         <member name="T:Newtonsoft.Json.MemberSerialization">\r
4849             <summary>\r
4850             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4851             </summary>\r
4852         </member>\r
4853         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">\r
4854             <summary>\r
4855             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
4856             This is the default member serialization mode.\r
4857             </summary>\r
4858         </member>\r
4859         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">\r
4860             <summary>\r
4861             Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="!:DataMemberAttribute"/> are serialized.\r
4862             This member serialization mode can also be set by marking the class with <see cref="!:DataContractAttribute"/>.\r
4863             </summary>\r
4864         </member>\r
4865         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">\r
4866             <summary>\r
4867             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
4868             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>\r
4869             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.\r
4870             </summary>\r
4871         </member>\r
4872         <member name="T:Newtonsoft.Json.ObjectCreationHandling">\r
4873             <summary>\r
4874             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
4875             </summary>\r
4876         </member>\r
4877         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">\r
4878             <summary>\r
4879             Reuse existing objects, create new objects when needed.\r
4880             </summary>\r
4881         </member>\r
4882         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">\r
4883             <summary>\r
4884             Only reuse existing objects.\r
4885             </summary>\r
4886         </member>\r
4887         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">\r
4888             <summary>\r
4889             Always create new objects.\r
4890             </summary>\r
4891         </member>\r
4892         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">\r
4893             <summary>\r
4894             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r
4895             </summary>\r
4896         </member>\r
4897         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4898             <summary>\r
4899             Writes the JSON representation of the object.\r
4900             </summary>\r
4901             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4902             <param name="value">The value.</param>\r
4903             <param name="serializer">The calling serializer.</param>\r
4904         </member>\r
4905         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4906             <summary>\r
4907             Reads the JSON representation of the object.\r
4908             </summary>\r
4909             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4910             <param name="objectType">Type of the object.</param>\r
4911             <param name="existingValue">The existing value of object being read.</param>\r
4912             <param name="serializer">The calling serializer.</param>\r
4913             <returns>The object value.</returns>\r
4914         </member>\r
4915         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">\r
4916             <summary>\r
4917             Gets or sets the date time styles used when converting a date to and from JSON.\r
4918             </summary>\r
4919             <value>The date time styles used when converting a date to and from JSON.</value>\r
4920         </member>\r
4921         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">\r
4922             <summary>\r
4923             Gets or sets the date time format used when converting a date to and from JSON.\r
4924             </summary>\r
4925             <value>The date time format used when converting a date to and from JSON.</value>\r
4926         </member>\r
4927         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">\r
4928             <summary>\r
4929             Gets or sets the culture used when converting a date to and from JSON.\r
4930             </summary>\r
4931             <value>The culture used when converting a date to and from JSON.</value>\r
4932         </member>\r
4933         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">\r
4934             <summary>\r
4935             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r
4936             </summary>\r
4937         </member>\r
4938         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4939             <summary>\r
4940             Writes the JSON representation of the object.\r
4941             </summary>\r
4942             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4943             <param name="value">The value.</param>\r
4944             <param name="serializer">The calling serializer.</param>\r
4945         </member>\r
4946         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4947             <summary>\r
4948             Reads the JSON representation of the object.\r
4949             </summary>\r
4950             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4951             <param name="objectType">Type of the object.</param>\r
4952             <param name="existingValue">The existing property value of the JSON that is being converted.</param>\r
4953             <param name="serializer">The calling serializer.</param>\r
4954             <returns>The object value.</returns>\r
4955         </member>\r
4956         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">\r
4957             <summary>\r
4958             Converts XML to and from JSON.\r
4959             </summary>\r
4960         </member>\r
4961         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4962             <summary>\r
4963             Writes the JSON representation of the object.\r
4964             </summary>\r
4965             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>\r
4966             <param name="serializer">The calling serializer.</param>\r
4967             <param name="value">The value.</param>\r
4968         </member>\r
4969         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">\r
4970             <summary>\r
4971             Reads the JSON representation of the object.\r
4972             </summary>\r
4973             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>\r
4974             <param name="objectType">Type of the object.</param>\r
4975             <param name="existingValue">The existing value of object being read.</param>\r
4976             <param name="serializer">The calling serializer.</param>\r
4977             <returns>The object value.</returns>\r
4978         </member>\r
4979         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">\r
4980             <summary>\r
4981             Checks if the attributeName is a namespace attribute.\r
4982             </summary>\r
4983             <param name="attributeName">Attribute name to test.</param>\r
4984             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>\r
4985             <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r
4986         </member>\r
4987         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">\r
4988             <summary>\r
4989             Determines whether this instance can convert the specified value type.\r
4990             </summary>\r
4991             <param name="valueType">Type of the value.</param>\r
4992             <returns>\r
4993                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r
4994             </returns>\r
4995         </member>\r
4996         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">\r
4997             <summary>\r
4998             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
4999             </summary>\r
5000             <value>The name of the deserialize root element.</value>\r
5001         </member>\r
5002         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">\r
5003             <summary>\r
5004             Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r
5005             This attribute helps preserve arrays when converting the written XML back to JSON.\r
5006             </summary>\r
5007             <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r
5008         </member>\r
5009         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">\r
5010             <summary>\r
5011             Gets or sets a value indicating whether to write the root JSON object.\r
5012             </summary>\r
5013             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r
5014         </member>\r
5015         <member name="T:Newtonsoft.Json.JsonTextReader">\r
5016             <summary>\r
5017             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r
5018             </summary>\r
5019         </member>\r
5020         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">\r
5021             <summary>\r
5022             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.\r
5023             </summary>\r
5024             <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>\r
5025         </member>\r
5026         <member name="M:Newtonsoft.Json.JsonTextReader.Read">\r
5027             <summary>\r
5028             Reads the next JSON token from the stream.\r
5029             </summary>\r
5030             <returns>\r
5031             true if the next token was read successfully; false if there are no more tokens to read.\r
5032             </returns>\r
5033         </member>\r
5034         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">\r
5035             <summary>\r
5036             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
5037             </summary>\r
5038             <returns>\r
5039             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
5040             </returns>\r
5041         </member>\r
5042         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">\r
5043             <summary>\r
5044             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
5045             </summary>\r
5046             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
5047         </member>\r
5048         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">\r
5049             <summary>\r
5050             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
5051             </summary>\r
5052             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
5053         </member>\r
5054         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">\r
5055             <summary>\r
5056             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
5057             </summary>\r
5058             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
5059         </member>\r
5060         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">\r
5061             <summary>\r
5062             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
5063             </summary>\r
5064             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
5065         </member>\r
5066         <member name="M:Newtonsoft.Json.JsonTextReader.Close">\r
5067             <summary>\r
5068             Changes the state to closed. \r
5069             </summary>\r
5070         </member>\r
5071         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">\r
5072             <summary>\r
5073             Gets a value indicating whether the class can return line information.\r
5074             </summary>\r
5075             <returns>\r
5076                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r
5077             </returns>\r
5078         </member>\r
5079         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">\r
5080             <summary>\r
5081             Gets the current line number.\r
5082             </summary>\r
5083             <value>\r
5084             The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r
5085             </value>\r
5086         </member>\r
5087         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">\r
5088             <summary>\r
5089             Gets the current line position.\r
5090             </summary>\r
5091             <value>\r
5092             The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r
5093             </value>\r
5094         </member>\r
5095         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">\r
5096             <summary>\r
5097             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.\r
5098             </summary>\r
5099         </member>\r
5100         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">\r
5101             <summary>\r
5102             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.\r
5103             </summary>\r
5104         </member>\r
5105         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">\r
5106             <summary>\r
5107             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.\r
5108             </summary>\r
5109             <param name="propertyName">Name of the property.</param>\r
5110         </member>\r
5111         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">\r
5112             <summary>\r
5113             Gets or sets the converter used when serializing the property's collection items.\r
5114             </summary>\r
5115             <value>The collection's items converter.</value>\r
5116         </member>\r
5117         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">\r
5118             <summary>\r
5119             The parameter list to use when constructing the JsonConverter described by ItemConverterType.\r
5120             If null, the default constructor is used.\r
5121             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,\r
5122             order, and type of these parameters.\r
5123             </summary>\r
5124             <example>\r
5125             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]\r
5126             </example>\r
5127         </member>\r
5128         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">\r
5129             <summary>\r
5130             Gets or sets the null value handling used when serializing this property.\r
5131             </summary>\r
5132             <value>The null value handling.</value>\r
5133         </member>\r
5134         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">\r
5135             <summary>\r
5136             Gets or sets the default value handling used when serializing this property.\r
5137             </summary>\r
5138             <value>The default value handling.</value>\r
5139         </member>\r
5140         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">\r
5141             <summary>\r
5142             Gets or sets the reference loop handling used when serializing this property.\r
5143             </summary>\r
5144             <value>The reference loop handling.</value>\r
5145         </member>\r
5146         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">\r
5147             <summary>\r
5148             Gets or sets the object creation handling used when deserializing this property.\r
5149             </summary>\r
5150             <value>The object creation handling.</value>\r
5151         </member>\r
5152         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">\r
5153             <summary>\r
5154             Gets or sets the type name handling used when serializing this property.\r
5155             </summary>\r
5156             <value>The type name handling.</value>\r
5157         </member>\r
5158         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">\r
5159             <summary>\r
5160             Gets or sets whether this property's value is serialized as a reference.\r
5161             </summary>\r
5162             <value>Whether this property's value is serialized as a reference.</value>\r
5163         </member>\r
5164         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">\r
5165             <summary>\r
5166             Gets or sets the order of serialization and deserialization of a member.\r
5167             </summary>\r
5168             <value>The numeric order of serialization or deserialization.</value>\r
5169         </member>\r
5170         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">\r
5171             <summary>\r
5172             Gets or sets a value indicating whether this property is required.\r
5173             </summary>\r
5174             <value>\r
5175                 A value indicating whether this property is required.\r
5176             </value>\r
5177         </member>\r
5178         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">\r
5179             <summary>\r
5180             Gets or sets the name of the property.\r
5181             </summary>\r
5182             <value>The name of the property.</value>\r
5183         </member>\r
5184         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">\r
5185             <summary>\r
5186             Gets or sets the the reference loop handling used when serializing the property's collection items.\r
5187             </summary>\r
5188             <value>The collection's items reference loop handling.</value>\r
5189         </member>\r
5190         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">\r
5191             <summary>\r
5192             Gets or sets the the type name handling used when serializing the property's collection items.\r
5193             </summary>\r
5194             <value>The collection's items type name handling.</value>\r
5195         </member>\r
5196         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">\r
5197             <summary>\r
5198             Gets or sets whether this property's collection items are serialized as a reference.\r
5199             </summary>\r
5200             <value>Whether this property's collection items are serialized as a reference.</value>\r
5201         </member>\r
5202         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">\r
5203             <summary>\r
5204             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.\r
5205             </summary>\r
5206         </member>\r
5207         <member name="T:Newtonsoft.Json.JsonTextWriter">\r
5208             <summary>\r
5209             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
5210             </summary>\r
5211         </member>\r
5212         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">\r
5213             <summary>\r
5214             Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. \r
5215             </summary>\r
5216             <param name="textWriter">The <c>TextWriter</c> to write to.</param>\r
5217         </member>\r
5218         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">\r
5219             <summary>\r
5220             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
5221             </summary>\r
5222         </member>\r
5223         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">\r
5224             <summary>\r
5225             Closes this stream and the underlying stream.\r
5226             </summary>\r
5227         </member>\r
5228         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">\r
5229             <summary>\r
5230             Writes the beginning of a JSON object.\r
5231             </summary>\r
5232         </member>\r
5233         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">\r
5234             <summary>\r
5235             Writes the beginning of a JSON array.\r
5236             </summary>\r
5237         </member>\r
5238         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">\r
5239             <summary>\r
5240             Writes the start of a constructor with the given name.\r
5241             </summary>\r
5242             <param name="name">The name of the constructor.</param>\r
5243         </member>\r
5244         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
5245             <summary>\r
5246             Writes the specified end token.\r
5247             </summary>\r
5248             <param name="token">The end token to write.</param>\r
5249         </member>\r
5250         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">\r
5251             <summary>\r
5252             Writes the property name of a name/value pair on a JSON object.\r
5253             </summary>\r
5254             <param name="name">The name of the property.</param>\r
5255         </member>\r
5256         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">\r
5257             <summary>\r
5258             Writes the property name of a name/value pair on a JSON object.\r
5259             </summary>\r
5260             <param name="name">The name of the property.</param>\r
5261             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>\r
5262         </member>\r
5263         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">\r
5264             <summary>\r
5265             Writes indent characters.\r
5266             </summary>\r
5267         </member>\r
5268         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">\r
5269             <summary>\r
5270             Writes the JSON value delimiter.\r
5271             </summary>\r
5272         </member>\r
5273         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">\r
5274             <summary>\r
5275             Writes an indent space.\r
5276             </summary>\r
5277         </member>\r
5278         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">\r
5279             <summary>\r
5280             Writes a <see cref="T:System.Object"/> value.\r
5281             An error will raised if the value cannot be written as a single JSON token.\r
5282             </summary>\r
5283             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
5284         </member>\r
5285         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">\r
5286             <summary>\r
5287             Writes a null value.\r
5288             </summary>\r
5289         </member>\r
5290         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">\r
5291             <summary>\r
5292             Writes an undefined value.\r
5293             </summary>\r
5294         </member>\r
5295         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">\r
5296             <summary>\r
5297             Writes raw JSON.\r
5298             </summary>\r
5299             <param name="json">The raw JSON to write.</param>\r
5300         </member>\r
5301         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">\r
5302             <summary>\r
5303             Writes a <see cref="T:System.String"/> value.\r
5304             </summary>\r
5305             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
5306         </member>\r
5307         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">\r
5308             <summary>\r
5309             Writes a <see cref="T:System.Int32"/> value.\r
5310             </summary>\r
5311             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
5312         </member>\r
5313         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">\r
5314             <summary>\r
5315             Writes a <see cref="T:System.UInt32"/> value.\r
5316             </summary>\r
5317             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
5318         </member>\r
5319         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">\r
5320             <summary>\r
5321             Writes a <see cref="T:System.Int64"/> value.\r
5322             </summary>\r
5323             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
5324         </member>\r
5325         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">\r
5326             <summary>\r
5327             Writes a <see cref="T:System.UInt64"/> value.\r
5328             </summary>\r
5329             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
5330         </member>\r
5331         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">\r
5332             <summary>\r
5333             Writes a <see cref="T:System.Single"/> value.\r
5334             </summary>\r
5335             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
5336         </member>\r
5337         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">\r
5338             <summary>\r
5339             Writes a <see cref="T:System.Nullable`1"/> value.\r
5340             </summary>\r
5341             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
5342         </member>\r
5343         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">\r
5344             <summary>\r
5345             Writes a <see cref="T:System.Double"/> value.\r
5346             </summary>\r
5347             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
5348         </member>\r
5349         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">\r
5350             <summary>\r
5351             Writes a <see cref="T:System.Nullable`1"/> value.\r
5352             </summary>\r
5353             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>\r
5354         </member>\r
5355         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">\r
5356             <summary>\r
5357             Writes a <see cref="T:System.Boolean"/> value.\r
5358             </summary>\r
5359             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
5360         </member>\r
5361         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">\r
5362             <summary>\r
5363             Writes a <see cref="T:System.Int16"/> value.\r
5364             </summary>\r
5365             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
5366         </member>\r
5367         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">\r
5368             <summary>\r
5369             Writes a <see cref="T:System.UInt16"/> value.\r
5370             </summary>\r
5371             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
5372         </member>\r
5373         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">\r
5374             <summary>\r
5375             Writes a <see cref="T:System.Char"/> value.\r
5376             </summary>\r
5377             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
5378         </member>\r
5379         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">\r
5380             <summary>\r
5381             Writes a <see cref="T:System.Byte"/> value.\r
5382             </summary>\r
5383             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
5384         </member>\r
5385         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">\r
5386             <summary>\r
5387             Writes a <see cref="T:System.SByte"/> value.\r
5388             </summary>\r
5389             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
5390         </member>\r
5391         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">\r
5392             <summary>\r
5393             Writes a <see cref="T:System.Decimal"/> value.\r
5394             </summary>\r
5395             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
5396         </member>\r
5397         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">\r
5398             <summary>\r
5399             Writes a <see cref="T:System.DateTime"/> value.\r
5400             </summary>\r
5401             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
5402         </member>\r
5403         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">\r
5404             <summary>\r
5405             Writes a <see cref="T:System.Byte"/>[] value.\r
5406             </summary>\r
5407             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
5408         </member>\r
5409         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">\r
5410             <summary>\r
5411             Writes a <see cref="T:System.Guid"/> value.\r
5412             </summary>\r
5413             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
5414         </member>\r
5415         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">\r
5416             <summary>\r
5417             Writes a <see cref="T:System.TimeSpan"/> value.\r
5418             </summary>\r
5419             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
5420         </member>\r
5421         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">\r
5422             <summary>\r
5423             Writes a <see cref="T:System.Uri"/> value.\r
5424             </summary>\r
5425             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
5426         </member>\r
5427         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">\r
5428             <summary>\r
5429             Writes out a comment <code>/*...*/</code> containing the specified text. \r
5430             </summary>\r
5431             <param name="text">Text to place inside the comment.</param>\r
5432         </member>\r
5433         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">\r
5434             <summary>\r
5435             Writes out the given white space.\r
5436             </summary>\r
5437             <param name="ws">The string of white space characters.</param>\r
5438         </member>\r
5439         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">\r
5440             <summary>\r
5441             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
5442             </summary>\r
5443         </member>\r
5444         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">\r
5445             <summary>\r
5446             Gets or sets which character to use to quote attribute values.\r
5447             </summary>\r
5448         </member>\r
5449         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">\r
5450             <summary>\r
5451             Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.\r
5452             </summary>\r
5453         </member>\r
5454         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">\r
5455             <summary>\r
5456             Gets or sets a value indicating whether object names will be surrounded with quotes.\r
5457             </summary>\r
5458         </member>\r
5459         <member name="T:Newtonsoft.Json.JsonWriterException">\r
5460             <summary>\r
5461             The exception thrown when an error occurs while reading JSON text.\r
5462             </summary>\r
5463         </member>\r
5464         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">\r
5465             <summary>\r
5466             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.\r
5467             </summary>\r
5468         </member>\r
5469         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">\r
5470             <summary>\r
5471             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class\r
5472             with a specified error message.\r
5473             </summary>\r
5474             <param name="message">The error message that explains the reason for the exception.</param>\r
5475         </member>\r
5476         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">\r
5477             <summary>\r
5478             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class\r
5479             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
5480             </summary>\r
5481             <param name="message">The error message that explains the reason for the exception.</param>\r
5482             <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
5483         </member>\r
5484         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
5485             <summary>\r
5486             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.\r
5487             </summary>\r
5488             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
5489             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
5490             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
5491             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
5492         </member>\r
5493         <member name="P:Newtonsoft.Json.JsonWriterException.Path">\r
5494             <summary>\r
5495             Gets the path to the JSON where the error occurred.\r
5496             </summary>\r
5497             <value>The path to the JSON where the error occurred.</value>\r
5498         </member>\r
5499         <member name="T:Newtonsoft.Json.JsonReaderException">\r
5500             <summary>\r
5501             The exception thrown when an error occurs while reading JSON text.\r
5502             </summary>\r
5503         </member>\r
5504         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">\r
5505             <summary>\r
5506             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.\r
5507             </summary>\r
5508         </member>\r
5509         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">\r
5510             <summary>\r
5511             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class\r
5512             with a specified error message.\r
5513             </summary>\r
5514             <param name="message">The error message that explains the reason for the exception.</param>\r
5515         </member>\r
5516         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">\r
5517             <summary>\r
5518             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class\r
5519             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
5520             </summary>\r
5521             <param name="message">The error message that explains the reason for the exception.</param>\r
5522             <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
5523         </member>\r
5524         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
5525             <summary>\r
5526             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.\r
5527             </summary>\r
5528             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
5529             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
5530             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
5531             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
5532         </member>\r
5533         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">\r
5534             <summary>\r
5535             Gets the line number indicating where the error occurred.\r
5536             </summary>\r
5537             <value>The line number indicating where the error occurred.</value>\r
5538         </member>\r
5539         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">\r
5540             <summary>\r
5541             Gets the line position indicating where the error occurred.\r
5542             </summary>\r
5543             <value>The line position indicating where the error occurred.</value>\r
5544         </member>\r
5545         <member name="P:Newtonsoft.Json.JsonReaderException.Path">\r
5546             <summary>\r
5547             Gets the path to the JSON where the error occurred.\r
5548             </summary>\r
5549             <value>The path to the JSON where the error occurred.</value>\r
5550         </member>\r
5551         <member name="T:Newtonsoft.Json.JsonConverterCollection">\r
5552             <summary>\r
5553             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5554             </summary>\r
5555         </member>\r
5556         <member name="T:Newtonsoft.Json.JsonConvert">\r
5557             <summary>\r
5558             Provides methods for converting between common language runtime types and JSON types.\r
5559             </summary>\r
5560             <example>\r
5561               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />\r
5562             </example>\r
5563         </member>\r
5564         <member name="F:Newtonsoft.Json.JsonConvert.True">\r
5565             <summary>\r
5566             Represents JavaScript's boolean value true as a string. This field is read-only.\r
5567             </summary>\r
5568         </member>\r
5569         <member name="F:Newtonsoft.Json.JsonConvert.False">\r
5570             <summary>\r
5571             Represents JavaScript's boolean value false as a string. This field is read-only.\r
5572             </summary>\r
5573         </member>\r
5574         <member name="F:Newtonsoft.Json.JsonConvert.Null">\r
5575             <summary>\r
5576             Represents JavaScript's null as a string. This field is read-only.\r
5577             </summary>\r
5578         </member>\r
5579         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">\r
5580             <summary>\r
5581             Represents JavaScript's undefined as a string. This field is read-only.\r
5582             </summary>\r
5583         </member>\r
5584         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">\r
5585             <summary>\r
5586             Represents JavaScript's positive infinity as a string. This field is read-only.\r
5587             </summary>\r
5588         </member>\r
5589         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">\r
5590             <summary>\r
5591             Represents JavaScript's negative infinity as a string. This field is read-only.\r
5592             </summary>\r
5593         </member>\r
5594         <member name="F:Newtonsoft.Json.JsonConvert.NaN">\r
5595             <summary>\r
5596             Represents JavaScript's NaN as a string. This field is read-only.\r
5597             </summary>\r
5598         </member>\r
5599         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">\r
5600             <summary>\r
5601             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.\r
5602             </summary>\r
5603             <param name="value">The value to convert.</param>\r
5604             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>\r
5605         </member>\r
5606         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">\r
5607             <summary>\r
5608             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.\r
5609             </summary>\r
5610             <param name="value">The value to convert.</param>\r
5611             <param name="format">The format the date will be converted to.</param>\r
5612             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>\r
5613             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>\r
5614         </member>\r
5615         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">\r
5616             <summary>\r
5617             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.\r
5618             </summary>\r
5619             <param name="value">The value to convert.</param>\r
5620             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>\r
5621         </member>\r
5622         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">\r
5623             <summary>\r
5624             Converts the <see cref="T:System.Char"/> to its JSON string representation.\r
5625             </summary>\r
5626             <param name="value">The value to convert.</param>\r
5627             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>\r
5628         </member>\r
5629         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">\r
5630             <summary>\r
5631             Converts the <see cref="T:System.Enum"/> to its JSON string representation.\r
5632             </summary>\r
5633             <param name="value">The value to convert.</param>\r
5634             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>\r
5635         </member>\r
5636         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">\r
5637             <summary>\r
5638             Converts the <see cref="T:System.Int32"/> to its JSON string representation.\r
5639             </summary>\r
5640             <param name="value">The value to convert.</param>\r
5641             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>\r
5642         </member>\r
5643         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">\r
5644             <summary>\r
5645             Converts the <see cref="T:System.Int16"/> to its JSON string representation.\r
5646             </summary>\r
5647             <param name="value">The value to convert.</param>\r
5648             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>\r
5649         </member>\r
5650         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">\r
5651             <summary>\r
5652             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.\r
5653             </summary>\r
5654             <param name="value">The value to convert.</param>\r
5655             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>\r
5656         </member>\r
5657         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">\r
5658             <summary>\r
5659             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.\r
5660             </summary>\r
5661             <param name="value">The value to convert.</param>\r
5662             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>\r
5663         </member>\r
5664         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">\r
5665             <summary>\r
5666             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.\r
5667             </summary>\r
5668             <param name="value">The value to convert.</param>\r
5669             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>\r
5670         </member>\r
5671         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">\r
5672             <summary>\r
5673             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.\r
5674             </summary>\r
5675             <param name="value">The value to convert.</param>\r
5676             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>\r
5677         </member>\r
5678         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">\r
5679             <summary>\r
5680             Converts the <see cref="T:System.Single"/> to its JSON string representation.\r
5681             </summary>\r
5682             <param name="value">The value to convert.</param>\r
5683             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>\r
5684         </member>\r
5685         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">\r
5686             <summary>\r
5687             Converts the <see cref="T:System.Double"/> to its JSON string representation.\r
5688             </summary>\r
5689             <param name="value">The value to convert.</param>\r
5690             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>\r
5691         </member>\r
5692         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">\r
5693             <summary>\r
5694             Converts the <see cref="T:System.Byte"/> to its JSON string representation.\r
5695             </summary>\r
5696             <param name="value">The value to convert.</param>\r
5697             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>\r
5698         </member>\r
5699         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">\r
5700             <summary>\r
5701             Converts the <see cref="T:System.SByte"/> to its JSON string representation.\r
5702             </summary>\r
5703             <param name="value">The value to convert.</param>\r
5704             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>\r
5705         </member>\r
5706         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">\r
5707             <summary>\r
5708             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.\r
5709             </summary>\r
5710             <param name="value">The value to convert.</param>\r
5711             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>\r
5712         </member>\r
5713         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">\r
5714             <summary>\r
5715             Converts the <see cref="T:System.Guid"/> to its JSON string representation.\r
5716             </summary>\r
5717             <param name="value">The value to convert.</param>\r
5718             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>\r
5719         </member>\r
5720         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">\r
5721             <summary>\r
5722             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.\r
5723             </summary>\r
5724             <param name="value">The value to convert.</param>\r
5725             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>\r
5726         </member>\r
5727         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">\r
5728             <summary>\r
5729             Converts the <see cref="T:System.Uri"/> to its JSON string representation.\r
5730             </summary>\r
5731             <param name="value">The value to convert.</param>\r
5732             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>\r
5733         </member>\r
5734         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">\r
5735             <summary>\r
5736             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
5737             </summary>\r
5738             <param name="value">The value to convert.</param>\r
5739             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
5740         </member>\r
5741         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">\r
5742             <summary>\r
5743             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
5744             </summary>\r
5745             <param name="value">The value to convert.</param>\r
5746             <param name="delimiter">The string delimiter character.</param>\r
5747             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
5748         </member>\r
5749         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">\r
5750             <summary>\r
5751             Converts the <see cref="T:System.String"/> to its JSON string representation.\r
5752             </summary>\r
5753             <param name="value">The value to convert.</param>\r
5754             <param name="delimiter">The string delimiter character.</param>\r
5755             <param name="stringEscapeHandling">The string escape handling.</param>\r
5756             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>\r
5757         </member>\r
5758         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">\r
5759             <summary>\r
5760             Converts the <see cref="T:System.Object"/> to its JSON string representation.\r
5761             </summary>\r
5762             <param name="value">The value to convert.</param>\r
5763             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>\r
5764         </member>\r
5765         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">\r
5766             <summary>\r
5767             Serializes the specified object to a JSON string.\r
5768             </summary>\r
5769             <param name="value">The object to serialize.</param>\r
5770             <returns>A JSON string representation of the object.</returns>\r
5771         </member>\r
5772         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">\r
5773             <summary>\r
5774             Serializes the specified object to a JSON string using formatting.\r
5775             </summary>\r
5776             <param name="value">The object to serialize.</param>\r
5777             <param name="formatting">Indicates how the output is formatted.</param>\r
5778             <returns>\r
5779             A JSON string representation of the object.\r
5780             </returns>\r
5781         </member>\r
5782         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">\r
5783             <summary>\r
5784             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5785             </summary>\r
5786             <param name="value">The object to serialize.</param>\r
5787             <param name="converters">A collection converters used while serializing.</param>\r
5788             <returns>A JSON string representation of the object.</returns>\r
5789         </member>\r
5790         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">\r
5791             <summary>\r
5792             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5793             </summary>\r
5794             <param name="value">The object to serialize.</param>\r
5795             <param name="formatting">Indicates how the output is formatted.</param>\r
5796             <param name="converters">A collection converters used while serializing.</param>\r
5797             <returns>A JSON string representation of the object.</returns>\r
5798         </member>\r
5799         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">\r
5800             <summary>\r
5801             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5802             </summary>\r
5803             <param name="value">The object to serialize.</param>\r
5804             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5805             If this is null, default serialization settings will be used.</param>\r
5806             <returns>\r
5807             A JSON string representation of the object.\r
5808             </returns>\r
5809         </member>\r
5810         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">\r
5811             <summary>\r
5812             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5813             </summary>\r
5814             <param name="value">The object to serialize.</param>\r
5815             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5816             If this is null, default serialization settings will be used.</param>\r
5817             <param name="type">\r
5818             The type of the value being serialized.\r
5819             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
5820             Specifing the type is optional.\r
5821             </param>\r
5822             <returns>\r
5823             A JSON string representation of the object.\r
5824             </returns>\r
5825         </member>\r
5826         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">\r
5827             <summary>\r
5828             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5829             </summary>\r
5830             <param name="value">The object to serialize.</param>\r
5831             <param name="formatting">Indicates how the output is formatted.</param>\r
5832             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5833             If this is null, default serialization settings will be used.</param>\r
5834             <returns>\r
5835             A JSON string representation of the object.\r
5836             </returns>\r
5837         </member>\r
5838         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">\r
5839             <summary>\r
5840             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5841             </summary>\r
5842             <param name="value">The object to serialize.</param>\r
5843             <param name="formatting">Indicates how the output is formatted.</param>\r
5844             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.\r
5845             If this is null, default serialization settings will be used.</param>\r
5846             <param name="type">\r
5847             The type of the value being serialized.\r
5848             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
5849             Specifing the type is optional.\r
5850             </param>\r
5851             <returns>\r
5852             A JSON string representation of the object.\r
5853             </returns>\r
5854         </member>\r
5855         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">\r
5856             <summary>\r
5857             Deserializes the JSON to a .NET object.\r
5858             </summary>\r
5859             <param name="value">The JSON to deserialize.</param>\r
5860             <returns>The deserialized object from the JSON string.</returns>\r
5861         </member>\r
5862         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">\r
5863             <summary>\r
5864             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5865             </summary>\r
5866             <param name="value">The JSON to deserialize.</param>\r
5867             <param name="settings">\r
5868             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5869             If this is null, default serialization settings will be used.\r
5870             </param>\r
5871             <returns>The deserialized object from the JSON string.</returns>\r
5872         </member>\r
5873         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">\r
5874             <summary>\r
5875             Deserializes the JSON to the specified .NET type.\r
5876             </summary>\r
5877             <param name="value">The JSON to deserialize.</param>\r
5878             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
5879             <returns>The deserialized object from the JSON string.</returns>\r
5880         </member>\r
5881         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">\r
5882             <summary>\r
5883             Deserializes the JSON to the specified .NET type.\r
5884             </summary>\r
5885             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5886             <param name="value">The JSON to deserialize.</param>\r
5887             <returns>The deserialized object from the JSON string.</returns>\r
5888         </member>\r
5889         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">\r
5890             <summary>\r
5891             Deserializes the JSON to the given anonymous type.\r
5892             </summary>\r
5893             <typeparam name="T">\r
5894             The anonymous type to deserialize to. This can't be specified\r
5895             traditionally and must be infered from the anonymous type passed\r
5896             as a parameter.\r
5897             </typeparam>\r
5898             <param name="value">The JSON to deserialize.</param>\r
5899             <param name="anonymousTypeObject">The anonymous type object.</param>\r
5900             <returns>The deserialized anonymous type from the JSON string.</returns>\r
5901         </member>\r
5902         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">\r
5903             <summary>\r
5904             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5905             </summary>\r
5906             <typeparam name="T">\r
5907             The anonymous type to deserialize to. This can't be specified\r
5908             traditionally and must be infered from the anonymous type passed\r
5909             as a parameter.\r
5910             </typeparam>\r
5911             <param name="value">The JSON to deserialize.</param>\r
5912             <param name="anonymousTypeObject">The anonymous type object.</param>\r
5913             <param name="settings">\r
5914             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5915             If this is null, default serialization settings will be used.\r
5916             </param>\r
5917             <returns>The deserialized anonymous type from the JSON string.</returns>\r
5918         </member>\r
5919         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">\r
5920             <summary>\r
5921             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5922             </summary>\r
5923             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5924             <param name="value">The JSON to deserialize.</param>\r
5925             <param name="converters">Converters to use while deserializing.</param>\r
5926             <returns>The deserialized object from the JSON string.</returns>\r
5927         </member>\r
5928         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">\r
5929             <summary>\r
5930             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5931             </summary>\r
5932             <typeparam name="T">The type of the object to deserialize to.</typeparam>\r
5933             <param name="value">The object to deserialize.</param>\r
5934             <param name="settings">\r
5935             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5936             If this is null, default serialization settings will be used.\r
5937             </param>\r
5938             <returns>The deserialized object from the JSON string.</returns>\r
5939         </member>\r
5940         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">\r
5941             <summary>\r
5942             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.\r
5943             </summary>\r
5944             <param name="value">The JSON to deserialize.</param>\r
5945             <param name="type">The type of the object to deserialize.</param>\r
5946             <param name="converters">Converters to use while deserializing.</param>\r
5947             <returns>The deserialized object from the JSON string.</returns>\r
5948         </member>\r
5949         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">\r
5950             <summary>\r
5951             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5952             </summary>\r
5953             <param name="value">The JSON to deserialize.</param>\r
5954             <param name="type">The type of the object to deserialize to.</param>\r
5955             <param name="settings">\r
5956             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5957             If this is null, default serialization settings will be used.\r
5958             </param>\r
5959             <returns>The deserialized object from the JSON string.</returns>\r
5960         </member>\r
5961         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">\r
5962             <summary>\r
5963             Populates the object with values from the JSON string.\r
5964             </summary>\r
5965             <param name="value">The JSON to populate values from.</param>\r
5966             <param name="target">The target object to populate values onto.</param>\r
5967         </member>\r
5968         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">\r
5969             <summary>\r
5970             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
5971             </summary>\r
5972             <param name="value">The JSON to populate values from.</param>\r
5973             <param name="target">The target object to populate values onto.</param>\r
5974             <param name="settings">\r
5975             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.\r
5976             If this is null, default serialization settings will be used.\r
5977             </param>\r
5978         </member>\r
5979         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">\r
5980             <summary>\r
5981             Serializes the XML node to a JSON string.\r
5982             </summary>\r
5983             <param name="node">The node to serialize.</param>\r
5984             <returns>A JSON string of the XmlNode.</returns>\r
5985         </member>\r
5986         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">\r
5987             <summary>\r
5988             Serializes the XML node to a JSON string using formatting.\r
5989             </summary>\r
5990             <param name="node">The node to serialize.</param>\r
5991             <param name="formatting">Indicates how the output is formatted.</param>\r
5992             <returns>A JSON string of the XmlNode.</returns>\r
5993         </member>\r
5994         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">\r
5995             <summary>\r
5996             Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.\r
5997             </summary>\r
5998             <param name="node">The node to serialize.</param>\r
5999             <param name="formatting">Indicates how the output is formatted.</param>\r
6000             <param name="omitRootObject">Omits writing the root object.</param>\r
6001             <returns>A JSON string of the XmlNode.</returns>\r
6002         </member>\r
6003         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">\r
6004             <summary>\r
6005             Deserializes the XmlNode from a JSON string.\r
6006             </summary>\r
6007             <param name="value">The JSON string.</param>\r
6008             <returns>The deserialized XmlNode</returns>\r
6009         </member>\r
6010         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">\r
6011             <summary>\r
6012             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.\r
6013             </summary>\r
6014             <param name="value">The JSON string.</param>\r
6015             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
6016             <returns>The deserialized XmlNode</returns>\r
6017         </member>\r
6018         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">\r
6019             <summary>\r
6020             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>\r
6021             and writes a .NET array attribute for collections.\r
6022             </summary>\r
6023             <param name="value">The JSON string.</param>\r
6024             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>\r
6025             <param name="writeArrayAttribute">\r
6026             A flag to indicate whether to write the Json.NET array attribute.\r
6027             This attribute helps preserve arrays when converting the written XML back to JSON.\r
6028             </param>\r
6029             <returns>The deserialized XmlNode</returns>\r
6030         </member>\r
6031         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">\r
6032             <summary>\r
6033             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
6034             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,\r
6035             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
6036             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with\r
6037             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.\r
6038             </summary>\r
6039         </member>\r
6040         <member name="T:Newtonsoft.Json.JsonSerializationException">\r
6041             <summary>\r
6042             The exception thrown when an error occurs during JSON serialization or deserialization.\r
6043             </summary>\r
6044         </member>\r
6045         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">\r
6046             <summary>\r
6047             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.\r
6048             </summary>\r
6049         </member>\r
6050         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">\r
6051             <summary>\r
6052             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class\r
6053             with a specified error message.\r
6054             </summary>\r
6055             <param name="message">The error message that explains the reason for the exception.</param>\r
6056         </member>\r
6057         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">\r
6058             <summary>\r
6059             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class\r
6060             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
6061             </summary>\r
6062             <param name="message">The error message that explains the reason for the exception.</param>\r
6063             <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
6064         </member>\r
6065         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
6066             <summary>\r
6067             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.\r
6068             </summary>\r
6069             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
6070             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
6071             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
6072             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
6073         </member>\r
6074         <member name="T:Newtonsoft.Json.JsonSerializer">\r
6075             <summary>\r
6076             Serializes and deserializes objects into and from the JSON format.\r
6077             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.\r
6078             </summary>\r
6079         </member>\r
6080         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">\r
6081             <summary>\r
6082             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.\r
6083             </summary>\r
6084         </member>\r
6085         <member name="M:Newtonsoft.Json.JsonSerializer.Create">\r
6086             <summary>\r
6087             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
6088             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
6089             </summary>\r
6090             <returns>\r
6091             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
6092             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
6093             </returns>\r
6094         </member>\r
6095         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">\r
6096             <summary>\r
6097             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
6098             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
6099             </summary>\r
6100             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>\r
6101             <returns>\r
6102             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
6103             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.\r
6104             </returns>\r
6105         </member>\r
6106         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">\r
6107             <summary>\r
6108             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
6109             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
6110             </summary>\r
6111             <returns>\r
6112             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.\r
6113             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
6114             </returns>\r
6115         </member>\r
6116         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">\r
6117             <summary>\r
6118             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
6119             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
6120             </summary>\r
6121             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>\r
6122             <returns>\r
6123             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.\r
6124             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.\r
6125             </returns>\r
6126         </member>\r
6127         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">\r
6128             <summary>\r
6129             Populates the JSON values onto the target object.\r
6130             </summary>\r
6131             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>\r
6132             <param name="target">The target object to populate values onto.</param>\r
6133         </member>\r
6134         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">\r
6135             <summary>\r
6136             Populates the JSON values onto the target object.\r
6137             </summary>\r
6138             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>\r
6139             <param name="target">The target object to populate values onto.</param>\r
6140         </member>\r
6141         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">\r
6142             <summary>\r
6143             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
6144             </summary>\r
6145             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>\r
6146             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>\r
6147         </member>\r
6148         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">\r
6149             <summary>\r
6150             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>\r
6151             into an instance of the specified type.\r
6152             </summary>\r
6153             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>\r
6154             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
6155             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>\r
6156         </member>\r
6157         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">\r
6158             <summary>\r
6159             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>\r
6160             into an instance of the specified type.\r
6161             </summary>\r
6162             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>\r
6163             <typeparam name="T">The type of the object to deserialize.</typeparam>\r
6164             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>\r
6165         </member>\r
6166         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">\r
6167             <summary>\r
6168             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>\r
6169             into an instance of the specified type.\r
6170             </summary>\r
6171             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>\r
6172             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>\r
6173             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>\r
6174         </member>\r
6175         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">\r
6176             <summary>\r
6177             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
6178             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
6179             </summary>\r
6180             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>\r
6181             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
6182         </member>\r
6183         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">\r
6184             <summary>\r
6185             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
6186             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
6187             </summary>\r
6188             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>\r
6189             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
6190             <param name="objectType">\r
6191             The type of the value being serialized.\r
6192             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
6193             Specifing the type is optional.\r
6194             </param>\r
6195         </member>\r
6196         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">\r
6197             <summary>\r
6198             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
6199             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. \r
6200             </summary>\r
6201             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>\r
6202             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
6203             <param name="objectType">\r
6204             The type of the value being serialized.\r
6205             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
6206             Specifing the type is optional.\r
6207             </param>\r
6208         </member>\r
6209         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">\r
6210             <summary>\r
6211             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure\r
6212             to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. \r
6213             </summary>\r
6214             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>\r
6215             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>\r
6216         </member>\r
6217         <member name="E:Newtonsoft.Json.JsonSerializer.Error">\r
6218             <summary>\r
6219             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.\r
6220             </summary>\r
6221         </member>\r
6222         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">\r
6223             <summary>\r
6224             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.\r
6225             </summary>\r
6226         </member>\r
6227         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">\r
6228             <summary>\r
6229             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.\r
6230             </summary>\r
6231         </member>\r
6232         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">\r
6233             <summary>\r
6234             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.\r
6235             </summary>\r
6236             <value>The trace writer.</value>\r
6237         </member>\r
6238         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">\r
6239             <summary>\r
6240             Gets or sets the equality comparer used by the serializer when comparing references.\r
6241             </summary>\r
6242             <value>The equality comparer.</value>\r
6243         </member>\r
6244         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">\r
6245             <summary>\r
6246             Gets or sets how type name writing and reading is handled by the serializer.\r
6247             </summary>\r
6248         </member>\r
6249         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">\r
6250             <summary>\r
6251             Gets or sets how a type name assembly is written and resolved by the serializer.\r
6252             </summary>\r
6253             <value>The type name assembly format.</value>\r
6254         </member>\r
6255         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">\r
6256             <summary>\r
6257             Gets or sets how object references are preserved by the serializer.\r
6258             </summary>\r
6259         </member>\r
6260         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">\r
6261             <summary>\r
6262             Get or set how reference loops (e.g. a class referencing itself) is handled.\r
6263             </summary>\r
6264         </member>\r
6265         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">\r
6266             <summary>\r
6267             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
6268             </summary>\r
6269         </member>\r
6270         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">\r
6271             <summary>\r
6272             Get or set how null values are handled during serialization and deserialization.\r
6273             </summary>\r
6274         </member>\r
6275         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">\r
6276             <summary>\r
6277             Get or set how null default are handled during serialization and deserialization.\r
6278             </summary>\r
6279         </member>\r
6280         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">\r
6281             <summary>\r
6282             Gets or sets how objects are created during deserialization.\r
6283             </summary>\r
6284             <value>The object creation handling.</value>\r
6285         </member>\r
6286         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">\r
6287             <summary>\r
6288             Gets or sets how constructors are used during deserialization.\r
6289             </summary>\r
6290             <value>The constructor handling.</value>\r
6291         </member>\r
6292         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">\r
6293             <summary>\r
6294             Gets or sets how metadata properties are used during deserialization.\r
6295             </summary>\r
6296             <value>The metadata properties handling.</value>\r
6297         </member>\r
6298         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">\r
6299             <summary>\r
6300             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.\r
6301             </summary>\r
6302             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>\r
6303         </member>\r
6304         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">\r
6305             <summary>\r
6306             Gets or sets the contract resolver used by the serializer when\r
6307             serializing .NET objects to JSON and vice versa.\r
6308             </summary>\r
6309         </member>\r
6310         <member name="P:Newtonsoft.Json.JsonSerializer.Context">\r
6311             <summary>\r
6312             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.\r
6313             </summary>\r
6314             <value>The context.</value>\r
6315         </member>\r
6316         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">\r
6317             <summary>\r
6318             Indicates how JSON text output is formatted.\r
6319             </summary>\r
6320         </member>\r
6321         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">\r
6322             <summary>\r
6323             Get or set how dates are written to JSON text.\r
6324             </summary>\r
6325         </member>\r
6326         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">\r
6327             <summary>\r
6328             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.\r
6329             </summary>\r
6330         </member>\r
6331         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">\r
6332             <summary>\r
6333             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.\r
6334             </summary>\r
6335         </member>\r
6336         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">\r
6337             <summary>\r
6338             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.\r
6339             </summary>\r
6340         </member>\r
6341         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">\r
6342             <summary>\r
6343             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,\r
6344             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,\r
6345             are written as JSON text.\r
6346             </summary>\r
6347         </member>\r
6348         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">\r
6349             <summary>\r
6350             Get or set how strings are escaped when writing JSON text.\r
6351             </summary>\r
6352         </member>\r
6353         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">\r
6354             <summary>\r
6355             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
6356             </summary>\r
6357         </member>\r
6358         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">\r
6359             <summary>\r
6360             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.\r
6361             </summary>\r
6362         </member>\r
6363         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">\r
6364             <summary>\r
6365             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.\r
6366             </summary>\r
6367         </member>\r
6368         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">\r
6369             <summary>\r
6370             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r
6371             </summary>\r
6372             <value>\r
6373                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r
6374             </value>\r
6375         </member>\r
6376         <member name="T:Newtonsoft.Json.Linq.Extensions">\r
6377             <summary>\r
6378             Contains the LINQ to JSON extension methods.\r
6379             </summary>\r
6380         </member>\r
6381         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">\r
6382             <summary>\r
6383             Returns a collection of tokens that contains the ancestors of every token in the source collection.\r
6384             </summary>\r
6385             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>\r
6386             <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
6387             <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
6388         </member>\r
6389         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">\r
6390             <summary>\r
6391             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.\r
6392             </summary>\r
6393             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>\r
6394             <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
6395             <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
6396         </member>\r
6397         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">\r
6398             <summary>\r
6399             Returns a collection of tokens that contains the descendants of every token in the source collection.\r
6400             </summary>\r
6401             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>\r
6402             <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
6403             <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
6404         </member>\r
6405         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">\r
6406             <summary>\r
6407             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.\r
6408             </summary>\r
6409             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>\r
6410             <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
6411             <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
6412         </member>\r
6413         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">\r
6414             <summary>\r
6415             Returns a collection of child properties of every object in the source collection.\r
6416             </summary>\r
6417             <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
6418             <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
6419         </member>\r
6420         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">\r
6421             <summary>\r
6422             Returns a collection of child values of every object in the source collection with the given key.\r
6423             </summary>\r
6424             <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
6425             <param name="key">The token key.</param>\r
6426             <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
6427         </member>\r
6428         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
6429             <summary>\r
6430             Returns a collection of child values of every object in the source collection.\r
6431             </summary>\r
6432             <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
6433             <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
6434         </member>\r
6435         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">\r
6436             <summary>\r
6437             Returns a collection of converted child values of every object in the source collection with the given key.\r
6438             </summary>\r
6439             <typeparam name="U">The type to convert the values to.</typeparam>\r
6440             <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
6441             <param name="key">The token key.</param>\r
6442             <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
6443         </member>\r
6444         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
6445             <summary>\r
6446             Returns a collection of converted child values of every object in the source collection.\r
6447             </summary>\r
6448             <typeparam name="U">The type to convert the values to.</typeparam>\r
6449             <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
6450             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>\r
6451         </member>\r
6452         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
6453             <summary>\r
6454             Converts the value.\r
6455             </summary>\r
6456             <typeparam name="U">The type to convert the value to.</typeparam>\r
6457             <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
6458             <returns>A converted value.</returns>\r
6459         </member>\r
6460         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">\r
6461             <summary>\r
6462             Converts the value.\r
6463             </summary>\r
6464             <typeparam name="T">The source collection type.</typeparam>\r
6465             <typeparam name="U">The type to convert the value to.</typeparam>\r
6466             <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
6467             <returns>A converted value.</returns>\r
6468         </member>\r
6469         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">\r
6470             <summary>\r
6471             Returns a collection of child tokens of every array in the source collection.\r
6472             </summary>\r
6473             <typeparam name="T">The source collection type.</typeparam>\r
6474             <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
6475             <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
6476         </member>\r
6477         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">\r
6478             <summary>\r
6479             Returns a collection of converted child tokens of every array in the source collection.\r
6480             </summary>\r
6481             <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
6482             <typeparam name="U">The type to convert the values to.</typeparam>\r
6483             <typeparam name="T">The source collection type.</typeparam>\r
6484             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>\r
6485         </member>\r
6486         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">\r
6487             <summary>\r
6488             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.\r
6489             </summary>\r
6490             <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
6491             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>\r
6492         </member>\r
6493         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">\r
6494             <summary>\r
6495             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.\r
6496             </summary>\r
6497             <typeparam name="T">The source collection type.</typeparam>\r
6498             <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
6499             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>\r
6500         </member>\r
6501         <member name="T:Newtonsoft.Json.Linq.JConstructor">\r
6502             <summary>\r
6503             Represents a JSON constructor.\r
6504             </summary>\r
6505         </member>\r
6506         <member name="T:Newtonsoft.Json.Linq.JContainer">\r
6507             <summary>\r
6508             Represents a token that can contain other tokens.\r
6509             </summary>\r
6510         </member>\r
6511         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">\r
6512             <summary>\r
6513             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.\r
6514             </summary>\r
6515             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>\r
6516         </member>\r
6517         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">\r
6518             <summary>\r
6519             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.\r
6520             </summary>\r
6521             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>\r
6522         </member>\r
6523         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">\r
6524             <summary>\r
6525             Returns a collection of the child tokens of this token, in document order.\r
6526             </summary>\r
6527             <returns>\r
6528             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
6529             </returns>\r
6530         </member>\r
6531         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">\r
6532             <summary>\r
6533             Returns a collection of the child values of this token, in document order.\r
6534             </summary>\r
6535             <typeparam name="T">The type to convert the values to.</typeparam>\r
6536             <returns>\r
6537             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
6538             </returns>\r
6539         </member>\r
6540         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">\r
6541             <summary>\r
6542             Returns a collection of the descendant tokens for this token in document order.\r
6543             </summary>\r
6544             <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
6545         </member>\r
6546         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">\r
6547             <summary>\r
6548             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.\r
6549             </summary>\r
6550             <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
6551         </member>\r
6552         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">\r
6553             <summary>\r
6554             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6555             </summary>\r
6556             <param name="content">The content to be added.</param>\r
6557         </member>\r
6558         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">\r
6559             <summary>\r
6560             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6561             </summary>\r
6562             <param name="content">The content to be added.</param>\r
6563         </member>\r
6564         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">\r
6565             <summary>\r
6566             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
6567             </summary>\r
6568             <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>\r
6569         </member>\r
6570         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">\r
6571             <summary>\r
6572             Replaces the children nodes of this token with the specified content.\r
6573             </summary>\r
6574             <param name="content">The content.</param>\r
6575         </member>\r
6576         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">\r
6577             <summary>\r
6578             Removes the child nodes from this token.\r
6579             </summary>\r
6580         </member>\r
6581         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">\r
6582             <summary>\r
6583             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6584             </summary>\r
6585             <param name="content">The content to be merged.</param>\r
6586         </member>\r
6587         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">\r
6588             <summary>\r
6589             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.\r
6590             </summary>\r
6591             <param name="content">The content to be merged.</param>\r
6592             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>\r
6593         </member>\r
6594         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">\r
6595             <summary>\r
6596             Occurs when the list changes or an item in the list changes.\r
6597             </summary>\r
6598         </member>\r
6599         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">\r
6600             <summary>\r
6601             Occurs before an item is added to the collection.\r
6602             </summary>\r
6603         </member>\r
6604         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">\r
6605             <summary>\r
6606             Gets the container's children tokens.\r
6607             </summary>\r
6608             <value>The container's children tokens.</value>\r
6609         </member>\r
6610         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">\r
6611             <summary>\r
6612             Gets a value indicating whether this token has child tokens.\r
6613             </summary>\r
6614             <value>\r
6615                 <c>true</c> if this token has child values; otherwise, <c>false</c>.\r
6616             </value>\r
6617         </member>\r
6618         <member name="P:Newtonsoft.Json.Linq.JContainer.First">\r
6619             <summary>\r
6620             Get the first child token of this token.\r
6621             </summary>\r
6622             <value>\r
6623             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6624             </value>\r
6625         </member>\r
6626         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">\r
6627             <summary>\r
6628             Get the last child token of this token.\r
6629             </summary>\r
6630             <value>\r
6631             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6632             </value>\r
6633         </member>\r
6634         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">\r
6635             <summary>\r
6636             Gets the count of child JSON tokens.\r
6637             </summary>\r
6638             <value>The count of child JSON tokens</value>\r
6639         </member>\r
6640         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">\r
6641             <summary>\r
6642             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.\r
6643             </summary>\r
6644         </member>\r
6645         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">\r
6646             <summary>\r
6647             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
6648             </summary>\r
6649             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>\r
6650         </member>\r
6651         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">\r
6652             <summary>\r
6653             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.\r
6654             </summary>\r
6655             <param name="name">The constructor name.</param>\r
6656             <param name="content">The contents of the constructor.</param>\r
6657         </member>\r
6658         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">\r
6659             <summary>\r
6660             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.\r
6661             </summary>\r
6662             <param name="name">The constructor name.</param>\r
6663             <param name="content">The contents of the constructor.</param>\r
6664         </member>\r
6665         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">\r
6666             <summary>\r
6667             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.\r
6668             </summary>\r
6669             <param name="name">The constructor name.</param>\r
6670         </member>\r
6671         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
6672             <summary>\r
6673             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
6674             </summary>\r
6675             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
6676             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
6677         </member>\r
6678         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">\r
6679             <summary>\r
6680             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
6681             </summary>\r
6682             <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
6683             <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
6684         </member>\r
6685         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">\r
6686             <summary>\r
6687             Gets the container's children tokens.\r
6688             </summary>\r
6689             <value>The container's children tokens.</value>\r
6690         </member>\r
6691         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">\r
6692             <summary>\r
6693             Gets or sets the name of this constructor.\r
6694             </summary>\r
6695             <value>The constructor name.</value>\r
6696         </member>\r
6697         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">\r
6698             <summary>\r
6699             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
6700             </summary>\r
6701             <value>The type.</value>\r
6702         </member>\r
6703         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">\r
6704             <summary>\r
6705             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
6706             </summary>\r
6707             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
6708         </member>\r
6709         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">\r
6710             <summary>\r
6711             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
6712             </summary>\r
6713             <typeparam name="T">The type of token</typeparam>\r
6714         </member>\r
6715         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">\r
6716             <summary>\r
6717             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.\r
6718             </summary>\r
6719         </member>\r
6720         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">\r
6721             <summary>\r
6722             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.\r
6723             </summary>\r
6724             <param name="enumerable">The enumerable.</param>\r
6725         </member>\r
6726         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">\r
6727             <summary>\r
6728             Returns an enumerator that iterates through the collection.\r
6729             </summary>\r
6730             <returns>\r
6731             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.\r
6732             </returns>\r
6733         </member>\r
6734         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">\r
6735             <summary>\r
6736             Returns an enumerator that iterates through a collection.\r
6737             </summary>\r
6738             <returns>\r
6739             An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.\r
6740             </returns>\r
6741         </member>\r
6742         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">\r
6743             <summary>\r
6744             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.\r
6745             </summary>\r
6746             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>\r
6747             <returns>\r
6748                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.\r
6749             </returns>\r
6750         </member>\r
6751         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">\r
6752             <summary>\r
6753             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.\r
6754             </summary>\r
6755             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>\r
6756             <returns>\r
6757                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.\r
6758             </returns>\r
6759         </member>\r
6760         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">\r
6761             <summary>\r
6762             Returns a hash code for this instance.\r
6763             </summary>\r
6764             <returns>\r
6765             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r
6766             </returns>\r
6767         </member>\r
6768         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">\r
6769             <summary>\r
6770             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.\r
6771             </summary>\r
6772             <value></value>\r
6773         </member>\r
6774         <member name="T:Newtonsoft.Json.Linq.JObject">\r
6775             <summary>\r
6776             Represents a JSON object.\r
6777             </summary>\r
6778             <example>\r
6779               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />\r
6780             </example>\r
6781         </member>\r
6782         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">\r
6783             <summary>\r
6784             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.\r
6785             </summary>\r
6786         </member>\r
6787         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">\r
6788             <summary>\r
6789             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
6790             </summary>\r
6791             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>\r
6792         </member>\r
6793         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">\r
6794             <summary>\r
6795             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.\r
6796             </summary>\r
6797             <param name="content">The contents of the object.</param>\r
6798         </member>\r
6799         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">\r
6800             <summary>\r
6801             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.\r
6802             </summary>\r
6803             <param name="content">The contents of the object.</param>\r
6804         </member>\r
6805         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">\r
6806             <summary>\r
6807             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.\r
6808             </summary>\r
6809             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>\r
6810         </member>\r
6811         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">\r
6812             <summary>\r
6813             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.\r
6814             </summary>\r
6815             <param name="name">The property name.</param>\r
6816             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>\r
6817         </member>\r
6818         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">\r
6819             <summary>\r
6820             Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.\r
6821             </summary>\r
6822             <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>\r
6823         </member>\r
6824         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">\r
6825             <summary>\r
6826             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
6827             </summary>\r
6828             <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
6829             <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
6830         </member>\r
6831         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">\r
6832             <summary>\r
6833             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.\r
6834             </summary>\r
6835             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
6836             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>\r
6837             <example>\r
6838               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/>\r
6839             </example>\r
6840         </member>\r
6841         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">\r
6842             <summary>\r
6843             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.\r
6844             </summary>\r
6845             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>\r
6846             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>\r
6847         </member>\r
6848         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
6849             <summary>\r
6850             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.\r
6851             </summary>\r
6852             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>\r
6853             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>\r
6854             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>\r
6855         </member>\r
6856         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
6857             <summary>\r
6858             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
6859             </summary>\r
6860             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
6861             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
6862         </member>\r
6863         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">\r
6864             <summary>\r
6865             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6866             </summary>\r
6867             <param name="propertyName">Name of the property.</param>\r
6868             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>\r
6869         </member>\r
6870         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">\r
6871             <summary>\r
6872             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6873             The exact property name will be searched for first and if no matching property is found then\r
6874             the <see cref="T:System.StringComparison"/> will be used to match a property.\r
6875             </summary>\r
6876             <param name="propertyName">Name of the property.</param>\r
6877             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>\r
6878             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>\r
6879         </member>\r
6880         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">\r
6881             <summary>\r
6882             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
6883             The exact property name will be searched for first and if no matching property is found then\r
6884             the <see cref="T:System.StringComparison"/> will be used to match a property.\r
6885             </summary>\r
6886             <param name="propertyName">Name of the property.</param>\r
6887             <param name="value">The value.</param>\r
6888             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>\r
6889             <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r
6890         </member>\r
6891         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">\r
6892             <summary>\r
6893             Adds the specified property name.\r
6894             </summary>\r
6895             <param name="propertyName">Name of the property.</param>\r
6896             <param name="value">The value.</param>\r
6897         </member>\r
6898         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">\r
6899             <summary>\r
6900             Removes the property with the specified name.\r
6901             </summary>\r
6902             <param name="propertyName">Name of the property.</param>\r
6903             <returns>true if item was successfully removed; otherwise, false.</returns>\r
6904         </member>\r
6905         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">\r
6906             <summary>\r
6907             Tries the get value.\r
6908             </summary>\r
6909             <param name="propertyName">Name of the property.</param>\r
6910             <param name="value">The value.</param>\r
6911             <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r
6912         </member>\r
6913         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">\r
6914             <summary>\r
6915             Returns an enumerator that iterates through the collection.\r
6916             </summary>\r
6917             <returns>\r
6918             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.\r
6919             </returns>\r
6920         </member>\r
6921         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">\r
6922             <summary>\r
6923             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.\r
6924             </summary>\r
6925             <param name="propertyName">Name of the property.</param>\r
6926         </member>\r
6927         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">\r
6928             <summary>\r
6929             Returns the properties for this instance of a component.\r
6930             </summary>\r
6931             <returns>\r
6932             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.\r
6933             </returns>\r
6934         </member>\r
6935         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">\r
6936             <summary>\r
6937             Returns the properties for this instance of a component using the attribute array as a filter.\r
6938             </summary>\r
6939             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>\r
6940             <returns>\r
6941             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.\r
6942             </returns>\r
6943         </member>\r
6944         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">\r
6945             <summary>\r
6946             Returns a collection of custom attributes for this instance of a component.\r
6947             </summary>\r
6948             <returns>\r
6949             An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.\r
6950             </returns>\r
6951         </member>\r
6952         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">\r
6953             <summary>\r
6954             Returns the class name of this instance of a component.\r
6955             </summary>\r
6956             <returns>\r
6957             The class name of the object, or null if the class does not have a name.\r
6958             </returns>\r
6959         </member>\r
6960         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">\r
6961             <summary>\r
6962             Returns the name of this instance of a component.\r
6963             </summary>\r
6964             <returns>\r
6965             The name of the object, or null if the object does not have a name.\r
6966             </returns>\r
6967         </member>\r
6968         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">\r
6969             <summary>\r
6970             Returns a type converter for this instance of a component.\r
6971             </summary>\r
6972             <returns>\r
6973             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
6974             </returns>\r
6975         </member>\r
6976         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">\r
6977             <summary>\r
6978             Returns the default event for this instance of a component.\r
6979             </summary>\r
6980             <returns>\r
6981             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
6982             </returns>\r
6983         </member>\r
6984         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">\r
6985             <summary>\r
6986             Returns the default property for this instance of a component.\r
6987             </summary>\r
6988             <returns>\r
6989             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
6990             </returns>\r
6991         </member>\r
6992         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">\r
6993             <summary>\r
6994             Returns an editor of the specified type for this instance of a component.\r
6995             </summary>\r
6996             <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>\r
6997             <returns>\r
6998             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
6999             </returns>\r
7000         </member>\r
7001         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">\r
7002             <summary>\r
7003             Returns the events for this instance of a component using the specified attribute array as a filter.\r
7004             </summary>\r
7005             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>\r
7006             <returns>\r
7007             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.\r
7008             </returns>\r
7009         </member>\r
7010         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">\r
7011             <summary>\r
7012             Returns the events for this instance of a component.\r
7013             </summary>\r
7014             <returns>\r
7015             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.\r
7016             </returns>\r
7017         </member>\r
7018         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">\r
7019             <summary>\r
7020             Returns an object that contains the property described by the specified property descriptor.\r
7021             </summary>\r
7022             <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>\r
7023             <returns>\r
7024             An <see cref="T:System.Object"/> that represents the owner of the specified property.\r
7025             </returns>\r
7026         </member>\r
7027         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">\r
7028             <summary>\r
7029             Gets the container's children tokens.\r
7030             </summary>\r
7031             <value>The container's children tokens.</value>\r
7032         </member>\r
7033         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">\r
7034             <summary>\r
7035             Occurs when a property value changes.\r
7036             </summary>\r
7037         </member>\r
7038         <member name="P:Newtonsoft.Json.Linq.JObject.Type">\r
7039             <summary>\r
7040             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
7041             </summary>\r
7042             <value>The type.</value>\r
7043         </member>\r
7044         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">\r
7045             <summary>\r
7046             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
7047             </summary>\r
7048             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
7049         </member>\r
7050         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">\r
7051             <summary>\r
7052             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.\r
7053             </summary>\r
7054             <value></value>\r
7055         </member>\r
7056         <member name="T:Newtonsoft.Json.Linq.JArray">\r
7057             <summary>\r
7058             Represents a JSON array.\r
7059             </summary>\r
7060             <example>\r
7061               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />\r
7062             </example>\r
7063         </member>\r
7064         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">\r
7065             <summary>\r
7066             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.\r
7067             </summary>\r
7068         </member>\r
7069         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">\r
7070             <summary>\r
7071             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
7072             </summary>\r
7073             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>\r
7074         </member>\r
7075         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">\r
7076             <summary>\r
7077             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.\r
7078             </summary>\r
7079             <param name="content">The contents of the array.</param>\r
7080         </member>\r
7081         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">\r
7082             <summary>\r
7083             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.\r
7084             </summary>\r
7085             <param name="content">The contents of the array.</param>\r
7086         </member>\r
7087         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">\r
7088             <summary>\r
7089             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
7090             </summary>\r
7091             <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
7092             <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
7093         </member>\r
7094         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">\r
7095             <summary>\r
7096             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.\r
7097             </summary>\r
7098             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
7099             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>\r
7100             <example>\r
7101               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>\r
7102             </example>\r
7103         </member>\r
7104         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">\r
7105             <summary>\r
7106             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.\r
7107             </summary>\r
7108             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>\r
7109             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>\r
7110         </member>\r
7111         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">\r
7112             <summary>\r
7113             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.\r
7114             </summary>\r
7115             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>\r
7116             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>\r
7117             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>\r
7118         </member>\r
7119         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
7120             <summary>\r
7121             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
7122             </summary>\r
7123             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
7124             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
7125         </member>\r
7126         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">\r
7127             <summary>\r
7128             Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.\r
7129             </summary>\r
7130             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>\r
7131             <returns>\r
7132             The index of <paramref name="item"/> if found in the list; otherwise, -1.\r
7133             </returns>\r
7134         </member>\r
7135         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">\r
7136             <summary>\r
7137             Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.\r
7138             </summary>\r
7139             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>\r
7140             <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>\r
7141             <exception cref="T:System.ArgumentOutOfRangeException">\r
7142                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>\r
7143             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>\r
7144         </member>\r
7145         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">\r
7146             <summary>\r
7147             Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.\r
7148             </summary>\r
7149             <param name="index">The zero-based index of the item to remove.</param>\r
7150             <exception cref="T:System.ArgumentOutOfRangeException">\r
7151                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>\r
7152             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>\r
7153         </member>\r
7154         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">\r
7155             <summary>\r
7156             Returns an enumerator that iterates through the collection.\r
7157             </summary>\r
7158             <returns>\r
7159             A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.\r
7160             </returns>\r
7161         </member>\r
7162         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">\r
7163             <summary>\r
7164             Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
7165             </summary>\r
7166             <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
7167             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>\r
7168         </member>\r
7169         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">\r
7170             <summary>\r
7171             Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
7172             </summary>\r
7173             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>\r
7174         </member>\r
7175         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">\r
7176             <summary>\r
7177             Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.\r
7178             </summary>\r
7179             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
7180             <returns>\r
7181             true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.\r
7182             </returns>\r
7183         </member>\r
7184         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">\r
7185             <summary>\r
7186             Copies to.\r
7187             </summary>\r
7188             <param name="array">The array.</param>\r
7189             <param name="arrayIndex">Index of the array.</param>\r
7190         </member>\r
7191         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">\r
7192             <summary>\r
7193             Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.\r
7194             </summary>\r
7195             <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>\r
7196             <returns>\r
7197             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
7198             </returns>\r
7199             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>\r
7200         </member>\r
7201         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">\r
7202             <summary>\r
7203             Gets the container's children tokens.\r
7204             </summary>\r
7205             <value>The container's children tokens.</value>\r
7206         </member>\r
7207         <member name="P:Newtonsoft.Json.Linq.JArray.Type">\r
7208             <summary>\r
7209             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
7210             </summary>\r
7211             <value>The type.</value>\r
7212         </member>\r
7213         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">\r
7214             <summary>\r
7215             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.\r
7216             </summary>\r
7217             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>\r
7218         </member>\r
7219         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">\r
7220             <summary>\r
7221             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.\r
7222             </summary>\r
7223             <value></value>\r
7224         </member>\r
7225         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">\r
7226             <summary>\r
7227             Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.\r
7228             </summary>\r
7229             <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>\r
7230         </member>\r
7231         <member name="T:Newtonsoft.Json.Linq.JTokenReader">\r
7232             <summary>\r
7233             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.\r
7234             </summary>\r
7235         </member>\r
7236         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">\r
7237             <summary>\r
7238             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.\r
7239             </summary>\r
7240             <param name="token">The token to read from.</param>\r
7241         </member>\r
7242         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">\r
7243             <summary>\r
7244             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].\r
7245             </summary>\r
7246             <returns>\r
7247             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
7248             </returns>\r
7249         </member>\r
7250         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">\r
7251             <summary>\r
7252             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
7253             </summary>\r
7254             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
7255         </member>\r
7256         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">\r
7257             <summary>\r
7258             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
7259             </summary>\r
7260             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>\r
7261         </member>\r
7262         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">\r
7263             <summary>\r
7264             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.\r
7265             </summary>\r
7266             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
7267         </member>\r
7268         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">\r
7269             <summary>\r
7270             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.\r
7271             </summary>\r
7272             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>\r
7273         </member>\r
7274         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">\r
7275             <summary>\r
7276             Reads the next JSON token from the stream.\r
7277             </summary>\r
7278             <returns>\r
7279             true if the next token was read successfully; false if there are no more tokens to read.\r
7280             </returns>\r
7281         </member>\r
7282         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">\r
7283             <summary>\r
7284             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.\r
7285             </summary>\r
7286         </member>\r
7287         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">\r
7288             <summary>\r
7289             Gets the path of the current JSON token. \r
7290             </summary>\r
7291         </member>\r
7292         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">\r
7293             <summary>\r
7294             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.\r
7295             </summary>\r
7296         </member>\r
7297         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">\r
7298             <summary>\r
7299             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
7300             </summary>\r
7301             <param name="container">The container being written to.</param>\r
7302         </member>\r
7303         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">\r
7304             <summary>\r
7305             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.\r
7306             </summary>\r
7307         </member>\r
7308         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">\r
7309             <summary>\r
7310             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r
7311             </summary>\r
7312         </member>\r
7313         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">\r
7314             <summary>\r
7315             Closes this stream and the underlying stream.\r
7316             </summary>\r
7317         </member>\r
7318         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">\r
7319             <summary>\r
7320             Writes the beginning of a JSON object.\r
7321             </summary>\r
7322         </member>\r
7323         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">\r
7324             <summary>\r
7325             Writes the beginning of a JSON array.\r
7326             </summary>\r
7327         </member>\r
7328         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">\r
7329             <summary>\r
7330             Writes the start of a constructor with the given name.\r
7331             </summary>\r
7332             <param name="name">The name of the constructor.</param>\r
7333         </member>\r
7334         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">\r
7335             <summary>\r
7336             Writes the end.\r
7337             </summary>\r
7338             <param name="token">The token.</param>\r
7339         </member>\r
7340         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">\r
7341             <summary>\r
7342             Writes the property name of a name/value pair on a JSON object.\r
7343             </summary>\r
7344             <param name="name">The name of the property.</param>\r
7345         </member>\r
7346         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">\r
7347             <summary>\r
7348             Writes a <see cref="T:System.Object"/> value.\r
7349             An error will raised if the value cannot be written as a single JSON token.\r
7350             </summary>\r
7351             <param name="value">The <see cref="T:System.Object"/> value to write.</param>\r
7352         </member>\r
7353         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">\r
7354             <summary>\r
7355             Writes a null value.\r
7356             </summary>\r
7357         </member>\r
7358         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">\r
7359             <summary>\r
7360             Writes an undefined value.\r
7361             </summary>\r
7362         </member>\r
7363         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">\r
7364             <summary>\r
7365             Writes raw JSON.\r
7366             </summary>\r
7367             <param name="json">The raw JSON to write.</param>\r
7368         </member>\r
7369         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">\r
7370             <summary>\r
7371             Writes out a comment <code>/*...*/</code> containing the specified text.\r
7372             </summary>\r
7373             <param name="text">Text to place inside the comment.</param>\r
7374         </member>\r
7375         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">\r
7376             <summary>\r
7377             Writes a <see cref="T:System.String"/> value.\r
7378             </summary>\r
7379             <param name="value">The <see cref="T:System.String"/> value to write.</param>\r
7380         </member>\r
7381         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">\r
7382             <summary>\r
7383             Writes a <see cref="T:System.Int32"/> value.\r
7384             </summary>\r
7385             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>\r
7386         </member>\r
7387         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">\r
7388             <summary>\r
7389             Writes a <see cref="T:System.UInt32"/> value.\r
7390             </summary>\r
7391             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>\r
7392         </member>\r
7393         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">\r
7394             <summary>\r
7395             Writes a <see cref="T:System.Int64"/> value.\r
7396             </summary>\r
7397             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>\r
7398         </member>\r
7399         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">\r
7400             <summary>\r
7401             Writes a <see cref="T:System.UInt64"/> value.\r
7402             </summary>\r
7403             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>\r
7404         </member>\r
7405         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">\r
7406             <summary>\r
7407             Writes a <see cref="T:System.Single"/> value.\r
7408             </summary>\r
7409             <param name="value">The <see cref="T:System.Single"/> value to write.</param>\r
7410         </member>\r
7411         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">\r
7412             <summary>\r
7413             Writes a <see cref="T:System.Double"/> value.\r
7414             </summary>\r
7415             <param name="value">The <see cref="T:System.Double"/> value to write.</param>\r
7416         </member>\r
7417         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">\r
7418             <summary>\r
7419             Writes a <see cref="T:System.Boolean"/> value.\r
7420             </summary>\r
7421             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>\r
7422         </member>\r
7423         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">\r
7424             <summary>\r
7425             Writes a <see cref="T:System.Int16"/> value.\r
7426             </summary>\r
7427             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>\r
7428         </member>\r
7429         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">\r
7430             <summary>\r
7431             Writes a <see cref="T:System.UInt16"/> value.\r
7432             </summary>\r
7433             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>\r
7434         </member>\r
7435         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">\r
7436             <summary>\r
7437             Writes a <see cref="T:System.Char"/> value.\r
7438             </summary>\r
7439             <param name="value">The <see cref="T:System.Char"/> value to write.</param>\r
7440         </member>\r
7441         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">\r
7442             <summary>\r
7443             Writes a <see cref="T:System.Byte"/> value.\r
7444             </summary>\r
7445             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>\r
7446         </member>\r
7447         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">\r
7448             <summary>\r
7449             Writes a <see cref="T:System.SByte"/> value.\r
7450             </summary>\r
7451             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>\r
7452         </member>\r
7453         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">\r
7454             <summary>\r
7455             Writes a <see cref="T:System.Decimal"/> value.\r
7456             </summary>\r
7457             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>\r
7458         </member>\r
7459         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">\r
7460             <summary>\r
7461             Writes a <see cref="T:System.DateTime"/> value.\r
7462             </summary>\r
7463             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>\r
7464         </member>\r
7465         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">\r
7466             <summary>\r
7467             Writes a <see cref="T:System.Byte"/>[] value.\r
7468             </summary>\r
7469             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>\r
7470         </member>\r
7471         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">\r
7472             <summary>\r
7473             Writes a <see cref="T:System.TimeSpan"/> value.\r
7474             </summary>\r
7475             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>\r
7476         </member>\r
7477         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">\r
7478             <summary>\r
7479             Writes a <see cref="T:System.Guid"/> value.\r
7480             </summary>\r
7481             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>\r
7482         </member>\r
7483         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">\r
7484             <summary>\r
7485             Writes a <see cref="T:System.Uri"/> value.\r
7486             </summary>\r
7487             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>\r
7488         </member>\r
7489         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">\r
7490             <summary>\r
7491             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.\r
7492             </summary>\r
7493         </member>\r
7494         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">\r
7495             <summary>\r
7496             Gets the token being writen.\r
7497             </summary>\r
7498             <value>The token being writen.</value>\r
7499         </member>\r
7500         <member name="T:Newtonsoft.Json.Linq.JProperty">\r
7501             <summary>\r
7502             Represents a JSON property.\r
7503             </summary>\r
7504         </member>\r
7505         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">\r
7506             <summary>\r
7507             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
7508             </summary>\r
7509             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>\r
7510         </member>\r
7511         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">\r
7512             <summary>\r
7513             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.\r
7514             </summary>\r
7515             <param name="name">The property name.</param>\r
7516             <param name="content">The property content.</param>\r
7517         </member>\r
7518         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">\r
7519             <summary>\r
7520             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.\r
7521             </summary>\r
7522             <param name="name">The property name.</param>\r
7523             <param name="content">The property content.</param>\r
7524         </member>\r
7525         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">\r
7526             <summary>\r
7527             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
7528             </summary>\r
7529             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
7530             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>\r
7531         </member>\r
7532         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">\r
7533             <summary>\r
7534             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. \r
7535             </summary>\r
7536             <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
7537             <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
7538         </member>\r
7539         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">\r
7540             <summary>\r
7541             Gets the container's children tokens.\r
7542             </summary>\r
7543             <value>The container's children tokens.</value>\r
7544         </member>\r
7545         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">\r
7546             <summary>\r
7547             Gets the property name.\r
7548             </summary>\r
7549             <value>The property name.</value>\r
7550         </member>\r
7551         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">\r
7552             <summary>\r
7553             Gets or sets the property value.\r
7554             </summary>\r
7555             <value>The property value.</value>\r
7556         </member>\r
7557         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">\r
7558             <summary>\r
7559             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
7560             </summary>\r
7561             <value>The type.</value>\r
7562         </member>\r
7563         <member name="T:Newtonsoft.Json.Linq.JTokenType">\r
7564             <summary>\r
7565             Specifies the type of token.\r
7566             </summary>\r
7567         </member>\r
7568         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">\r
7569             <summary>\r
7570             No token type has been set.\r
7571             </summary>\r
7572         </member>\r
7573         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">\r
7574             <summary>\r
7575             A JSON object.\r
7576             </summary>\r
7577         </member>\r
7578         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">\r
7579             <summary>\r
7580             A JSON array.\r
7581             </summary>\r
7582         </member>\r
7583         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">\r
7584             <summary>\r
7585             A JSON constructor.\r
7586             </summary>\r
7587         </member>\r
7588         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">\r
7589             <summary>\r
7590             A JSON object property.\r
7591             </summary>\r
7592         </member>\r
7593         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">\r
7594             <summary>\r
7595             A comment.\r
7596             </summary>\r
7597         </member>\r
7598         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">\r
7599             <summary>\r
7600             An integer value.\r
7601             </summary>\r
7602         </member>\r
7603         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">\r
7604             <summary>\r
7605             A float value.\r
7606             </summary>\r
7607         </member>\r
7608         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">\r
7609             <summary>\r
7610             A string value.\r
7611             </summary>\r
7612         </member>\r
7613         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">\r
7614             <summary>\r
7615             A boolean value.\r
7616             </summary>\r
7617         </member>\r
7618         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">\r
7619             <summary>\r
7620             A null value.\r
7621             </summary>\r
7622         </member>\r
7623         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">\r
7624             <summary>\r
7625             An undefined value.\r
7626             </summary>\r
7627         </member>\r
7628         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">\r
7629             <summary>\r
7630             A date value.\r
7631             </summary>\r
7632         </member>\r
7633         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">\r
7634             <summary>\r
7635             A raw JSON value.\r
7636             </summary>\r
7637         </member>\r
7638         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">\r
7639             <summary>\r
7640             A collection of bytes value.\r
7641             </summary>\r
7642         </member>\r
7643         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">\r
7644             <summary>\r
7645             A Guid value.\r
7646             </summary>\r
7647         </member>\r
7648         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">\r
7649             <summary>\r
7650             A Uri value.\r
7651             </summary>\r
7652         </member>\r
7653         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">\r
7654             <summary>\r
7655             A TimeSpan value.\r
7656             </summary>\r
7657         </member>\r
7658         <member name="T:Newtonsoft.Json.Schema.Extensions">\r
7659             <summary>\r
7660             <para>\r
7661             Contains the JSON schema extension methods.\r
7662             </para>\r
7663             <note type="caution">\r
7664             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
7665             </note>\r
7666             </summary>\r
7667         </member>\r
7668         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">\r
7669             <summary>\r
7670             <para>\r
7671             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.\r
7672             </para>\r
7673             <note type="caution">\r
7674             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
7675             </note>\r
7676             </summary>\r
7677             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
7678             <param name="schema">The schema to test with.</param>\r
7679             <returns>\r
7680                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.\r
7681             </returns>\r
7682         </member>\r
7683         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">\r
7684             <summary>\r
7685             <para>\r
7686             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.\r
7687             </para>\r
7688             <note type="caution">\r
7689             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
7690             </note>\r
7691             </summary>\r
7692             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
7693             <param name="schema">The schema to test with.</param>\r
7694             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>\r
7695             <returns>\r
7696                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.\r
7697             </returns>\r
7698         </member>\r
7699         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">\r
7700             <summary>\r
7701             <para>\r
7702             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
7703             </para>\r
7704             <note type="caution">\r
7705             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
7706             </note>\r
7707             </summary>\r
7708             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
7709             <param name="schema">The schema to test with.</param>\r
7710         </member>\r
7711         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">\r
7712             <summary>\r
7713             <para>\r
7714             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.\r
7715             </para>\r
7716             <note type="caution">\r
7717             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
7718             </note>\r
7719             </summary>\r
7720             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>\r
7721             <param name="schema">The schema to test with.</param>\r
7722             <param name="validationEventHandler">The validation event handler.</param>\r
7723         </member>\r
7724         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">\r
7725             <summary>\r
7726             <para>\r
7727             Returns detailed information about the schema exception.\r
7728             </para>\r
7729             <note type="caution">\r
7730             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
7731             </note>\r
7732             </summary>\r
7733         </member>\r
7734         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">\r
7735             <summary>\r
7736             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.\r
7737             </summary>\r
7738         </member>\r
7739         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">\r
7740             <summary>\r
7741             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class\r
7742             with a specified error message.\r
7743             </summary>\r
7744             <param name="message">The error message that explains the reason for the exception.</param>\r
7745         </member>\r
7746         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">\r
7747             <summary>\r
7748             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class\r
7749             with a specified error message and a reference to the inner exception that is the cause of this exception.\r
7750             </summary>\r
7751             <param name="message">The error message that explains the reason for the exception.</param>\r
7752             <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
7753         </member>\r
7754         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">\r
7755             <summary>\r
7756             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.\r
7757             </summary>\r
7758             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>\r
7759             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>\r
7760             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>\r
7761             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>\r
7762         </member>\r
7763         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">\r
7764             <summary>\r
7765             Gets the line number indicating where the error occurred.\r
7766             </summary>\r
7767             <value>The line number indicating where the error occurred.</value>\r
7768         </member>\r
7769         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">\r
7770             <summary>\r
7771             Gets the line position indicating where the error occurred.\r
7772             </summary>\r
7773             <value>The line position indicating where the error occurred.</value>\r
7774         </member>\r
7775         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">\r
7776             <summary>\r
7777             Gets the path to the JSON where the error occurred.\r
7778             </summary>\r
7779             <value>The path to the JSON where the error occurred.</value>\r
7780         </member>\r
7781         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">\r
7782             <summary>\r
7783             <para>\r
7784             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.\r
7785             </para>\r
7786             <note type="caution">\r
7787             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
7788             </note>\r
7789             </summary>\r
7790         </member>\r
7791         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">\r
7792             <summary>\r
7793             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.\r
7794             </summary>\r
7795         </member>\r
7796         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">\r
7797             <summary>\r
7798             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.\r
7799             </summary>\r
7800             <param name="reference">The id.</param>\r
7801             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>\r
7802         </member>\r
7803         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">\r
7804             <summary>\r
7805             Gets or sets the loaded schemas.\r
7806             </summary>\r
7807             <value>The loaded schemas.</value>\r
7808         </member>\r
7809         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">\r
7810             <summary>\r
7811             <para>\r
7812             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.\r
7813             </para>\r
7814             <note type="caution">\r
7815             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
7816             </note>\r
7817             </summary>\r
7818         </member>\r
7819         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">\r
7820             <summary>\r
7821             Do not infer a schema Id.\r
7822             </summary>\r
7823         </member>\r
7824         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">\r
7825             <summary>\r
7826             Use the .NET type name as the schema Id.\r
7827             </summary>\r
7828         </member>\r
7829         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">\r
7830             <summary>\r
7831             Use the assembly qualified .NET type name as the schema Id.\r
7832             </summary>\r
7833         </member>\r
7834         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">\r
7835             <summary>\r
7836             <para>\r
7837             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.\r
7838             </para>\r
7839             <note type="caution">\r
7840             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
7841             </note>\r
7842             </summary>\r
7843         </member>\r
7844         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">\r
7845             <summary>\r
7846             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.\r
7847             </summary>\r
7848             <value>The JsonSchemaException associated with the validation error.</value>\r
7849         </member>\r
7850         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">\r
7851             <summary>\r
7852             Gets the path of the JSON location where the validation error occurred.\r
7853             </summary>\r
7854             <value>The path of the JSON location where the validation error occurred.</value>\r
7855         </member>\r
7856         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">\r
7857             <summary>\r
7858             Gets the text description corresponding to the validation error.\r
7859             </summary>\r
7860             <value>The text description.</value>\r
7861         </member>\r
7862         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">\r
7863             <summary>\r
7864             <para>\r
7865             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.\r
7866             </para>\r
7867             <note type="caution">\r
7868             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
7869             </note>\r
7870             </summary>\r
7871         </member>\r
7872         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">\r
7873             <summary>\r
7874             Resolves member mappings for a type, camel casing property names.\r
7875             </summary>\r
7876         </member>\r
7877         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">\r
7878             <summary>\r
7879             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
7880             </summary>\r
7881         </member>\r
7882         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">\r
7883             <summary>\r
7884             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
7885             </summary>\r
7886             <example>\r
7887               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/>\r
7888               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/>\r
7889             </example>\r
7890         </member>\r
7891         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">\r
7892             <summary>\r
7893             Resolves the contract for a given type.\r
7894             </summary>\r
7895             <param name="type">The type to resolve a contract for.</param>\r
7896             <returns>The contract for a given type.</returns>\r
7897         </member>\r
7898         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">\r
7899             <summary>\r
7900             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.\r
7901             </summary>\r
7902         </member>\r
7903         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">\r
7904             <summary>\r
7905             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.\r
7906             </summary>\r
7907             <param name="shareCache">\r
7908             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
7909             Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only\r
7910             happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different\r
7911             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
7912             </param>\r
7913         </member>\r
7914         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">\r
7915             <summary>\r
7916             Resolves the contract for a given type.\r
7917             </summary>\r
7918             <param name="type">The type to resolve a contract for.</param>\r
7919             <returns>The contract for a given type.</returns>\r
7920         </member>\r
7921         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">\r
7922             <summary>\r
7923             Gets the serializable members for the type.\r
7924             </summary>\r
7925             <param name="objectType">The type to get serializable members for.</param>\r
7926             <returns>The serializable members for the type.</returns>\r
7927         </member>\r
7928         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">\r
7929             <summary>\r
7930             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.\r
7931             </summary>\r
7932             <param name="objectType">Type of the object.</param>\r
7933             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>\r
7934         </member>\r
7935         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">\r
7936             <summary>\r
7937             Creates the constructor parameters.\r
7938             </summary>\r
7939             <param name="constructor">The constructor to create properties for.</param>\r
7940             <param name="memberProperties">The type's member properties.</param>\r
7941             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>\r
7942         </member>\r
7943         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">\r
7944             <summary>\r
7945             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.\r
7946             </summary>\r
7947             <param name="matchingMemberProperty">The matching member property.</param>\r
7948             <param name="parameterInfo">The constructor parameter.</param>\r
7949             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>\r
7950         </member>\r
7951         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">\r
7952             <summary>\r
7953             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.\r
7954             </summary>\r
7955             <param name="objectType">Type of the object.</param>\r
7956             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns>\r
7957         </member>\r
7958         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">\r
7959             <summary>\r
7960             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.\r
7961             </summary>\r
7962             <param name="objectType">Type of the object.</param>\r
7963             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>\r
7964         </member>\r
7965         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">\r
7966             <summary>\r
7967             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.\r
7968             </summary>\r
7969             <param name="objectType">Type of the object.</param>\r
7970             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>\r
7971         </member>\r
7972         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">\r
7973             <summary>\r
7974             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.\r
7975             </summary>\r
7976             <param name="objectType">Type of the object.</param>\r
7977             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>\r
7978         </member>\r
7979         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">\r
7980             <summary>\r
7981             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.\r
7982             </summary>\r
7983             <param name="objectType">Type of the object.</param>\r
7984             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>\r
7985         </member>\r
7986         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">\r
7987             <summary>\r
7988             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.\r
7989             </summary>\r
7990             <param name="objectType">Type of the object.</param>\r
7991             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>\r
7992         </member>\r
7993         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">\r
7994             <summary>\r
7995             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.\r
7996             </summary>\r
7997             <param name="objectType">Type of the object.</param>\r
7998             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>\r
7999         </member>\r
8000         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">\r
8001             <summary>\r
8002             Determines which contract type is created for the given type.\r
8003             </summary>\r
8004             <param name="objectType">Type of the object.</param>\r
8005             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>\r
8006         </member>\r
8007         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">\r
8008             <summary>\r
8009             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.\r
8010             </summary>\r
8011             <param name="type">The type to create properties for.</param>\r
8012             /// <param name="memberSerialization">The member serialization mode for the type.</param>\r
8013             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>\r
8014         </member>\r
8015         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">\r
8016             <summary>\r
8017             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.\r
8018             </summary>\r
8019             <param name="member">The member.</param>\r
8020             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>\r
8021         </member>\r
8022         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">\r
8023             <summary>\r
8024             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.\r
8025             </summary>\r
8026             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>\r
8027             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>\r
8028             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>\r
8029         </member>\r
8030         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">\r
8031             <summary>\r
8032             Resolves the name of the property.\r
8033             </summary>\r
8034             <param name="propertyName">Name of the property.</param>\r
8035             <returns>Resolved name of the property.</returns>\r
8036         </member>\r
8037         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">\r
8038             <summary>\r
8039             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
8040             </summary>\r
8041             <param name="dictionaryKey">Key of the dictionary.</param>\r
8042             <returns>Resolved key of the dictionary.</returns>\r
8043         </member>\r
8044         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">\r
8045             <summary>\r
8046             Gets the resolved name of the property.\r
8047             </summary>\r
8048             <param name="propertyName">Name of the property.</param>\r
8049             <returns>Name of the property.</returns>\r
8050         </member>\r
8051         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">\r
8052             <summary>\r
8053             Gets a value indicating whether members are being get and set using dynamic code generation.\r
8054             This value is determined by the runtime permissions available.\r
8055             </summary>\r
8056             <value>\r
8057                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r
8058             </value>\r
8059         </member>\r
8060         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">\r
8061             <summary>\r
8062             Gets or sets the default members search flags.\r
8063             </summary>\r
8064             <value>The default members search flags.</value>\r
8065         </member>\r
8066         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">\r
8067             <summary>\r
8068             Gets or sets a value indicating whether compiler generated members should be serialized.\r
8069             </summary>\r
8070             <value>\r
8071                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r
8072             </value>\r
8073         </member>\r
8074         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">\r
8075             <summary>\r
8076             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.\r
8077             </summary>\r
8078             <value>\r
8079                 <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
8080             </value>\r
8081         </member>\r
8082         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">\r
8083             <summary>\r
8084             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.\r
8085             </summary>\r
8086             <value>\r
8087                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r
8088             </value>\r
8089         </member>\r
8090         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">\r
8091             <summary>\r
8092             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.\r
8093             </summary>\r
8094         </member>\r
8095         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">\r
8096             <summary>\r
8097             Resolves the name of the property.\r
8098             </summary>\r
8099             <param name="propertyName">Name of the property.</param>\r
8100             <returns>The property name camel cased.</returns>\r
8101         </member>\r
8102         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">\r
8103             <summary>\r
8104             The default serialization binder used when resolving and loading classes from type names.\r
8105             </summary>\r
8106         </member>\r
8107         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">\r
8108             <summary>\r
8109             When overridden in a derived class, controls the binding of a serialized object to a type.\r
8110             </summary>\r
8111             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>\r
8112             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>\r
8113             <returns>\r
8114             The type of the object the formatter creates a new instance of.\r
8115             </returns>\r
8116         </member>\r
8117         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">\r
8118             <summary>\r
8119             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.\r
8120             </summary>\r
8121         </member>\r
8122         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">\r
8123             <summary>\r
8124             Provides methods to get and set values.\r
8125             </summary>\r
8126         </member>\r
8127         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">\r
8128             <summary>\r
8129             Sets the value.\r
8130             </summary>\r
8131             <param name="target">The target to set the value on.</param>\r
8132             <param name="value">The value to set on the target.</param>\r
8133         </member>\r
8134         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">\r
8135             <summary>\r
8136             Gets the value.\r
8137             </summary>\r
8138             <param name="target">The target to get the value from.</param>\r
8139             <returns>The value.</returns>\r
8140         </member>\r
8141         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">\r
8142             <summary>\r
8143             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.\r
8144             </summary>\r
8145             <param name="memberInfo">The member info.</param>\r
8146         </member>\r
8147         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">\r
8148             <summary>\r
8149             Sets the value.\r
8150             </summary>\r
8151             <param name="target">The target to set the value on.</param>\r
8152             <param name="value">The value to set on the target.</param>\r
8153         </member>\r
8154         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">\r
8155             <summary>\r
8156             Gets the value.\r
8157             </summary>\r
8158             <param name="target">The target to get the value from.</param>\r
8159             <returns>The value.</returns>\r
8160         </member>\r
8161         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">\r
8162             <summary>\r
8163             Provides information surrounding an error.\r
8164             </summary>\r
8165         </member>\r
8166         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">\r
8167             <summary>\r
8168             Gets the error.\r
8169             </summary>\r
8170             <value>The error.</value>\r
8171         </member>\r
8172         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">\r
8173             <summary>\r
8174             Gets the original object that caused the error.\r
8175             </summary>\r
8176             <value>The original object that caused the error.</value>\r
8177         </member>\r
8178         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">\r
8179             <summary>\r
8180             Gets the member that caused the error.\r
8181             </summary>\r
8182             <value>The member that caused the error.</value>\r
8183         </member>\r
8184         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">\r
8185             <summary>\r
8186             Gets the path of the JSON location where the error occurred.\r
8187             </summary>\r
8188             <value>The path of the JSON location where the error occurred.</value>\r
8189         </member>\r
8190         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">\r
8191             <summary>\r
8192             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.\r
8193             </summary>\r
8194             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r
8195         </member>\r
8196         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">\r
8197             <summary>\r
8198             Provides data for the Error event.\r
8199             </summary>\r
8200         </member>\r
8201         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">\r
8202             <summary>\r
8203             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.\r
8204             </summary>\r
8205             <param name="currentObject">The current object.</param>\r
8206             <param name="errorContext">The error context.</param>\r
8207         </member>\r
8208         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">\r
8209             <summary>\r
8210             Gets the current object the error event is being raised against.\r
8211             </summary>\r
8212             <value>The current object the error event is being raised against.</value>\r
8213         </member>\r
8214         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">\r
8215             <summary>\r
8216             Gets the error context.\r
8217             </summary>\r
8218             <value>The error context.</value>\r
8219         </member>\r
8220         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">\r
8221             <summary>\r
8222             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8223             </summary>\r
8224         </member>\r
8225         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">\r
8226             <summary>\r
8227             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.\r
8228             </summary>\r
8229             <param name="underlyingType">The underlying type for the contract.</param>\r
8230         </member>\r
8231         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">\r
8232             <summary>\r
8233             Gets the <see cref="T:System.Type"/> of the collection items.\r
8234             </summary>\r
8235             <value>The <see cref="T:System.Type"/> of the collection items.</value>\r
8236         </member>\r
8237         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">\r
8238             <summary>\r
8239             Gets a value indicating whether the collection type is a multidimensional array.\r
8240             </summary>\r
8241             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r
8242         </member>\r
8243         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">\r
8244             <summary>\r
8245             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.\r
8246             </summary>\r
8247             <param name="o">The object that raised the callback event.</param>\r
8248             <param name="context">The streaming context.</param>\r
8249         </member>\r
8250         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">\r
8251             <summary>\r
8252             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.\r
8253             </summary>\r
8254             <param name="o">The object that raised the callback event.</param>\r
8255             <param name="context">The streaming context.</param>\r
8256             <param name="errorContext">The error context.</param>\r
8257         </member>\r
8258         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">\r
8259             <summary>\r
8260             Sets extension data for an object during deserialization.\r
8261             </summary>\r
8262             <param name="o">The object to set extension data on.</param>\r
8263             <param name="key">The extension data key.</param>\r
8264             <param name="value">The extension data value.</param>\r
8265         </member>\r
8266         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">\r
8267             <summary>\r
8268             Gets extension data for an object during serialization.\r
8269             </summary>\r
8270             <param name="o">The object to set extension data on.</param>\r
8271         </member>\r
8272         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">\r
8273             <summary>\r
8274             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8275             </summary>\r
8276         </member>\r
8277         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">\r
8278             <summary>\r
8279             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.\r
8280             </summary>\r
8281             <param name="underlyingType">The underlying type for the contract.</param>\r
8282         </member>\r
8283         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">\r
8284             <summary>\r
8285             Gets or sets the property name resolver.\r
8286             </summary>\r
8287             <value>The property name resolver.</value>\r
8288         </member>\r
8289         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">\r
8290             <summary>\r
8291             Gets or sets the dictionary key resolver.\r
8292             </summary>\r
8293             <value>The dictionary key resolver.</value>\r
8294         </member>\r
8295         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">\r
8296             <summary>\r
8297             Gets the <see cref="T:System.Type"/> of the dictionary keys.\r
8298             </summary>\r
8299             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>\r
8300         </member>\r
8301         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">\r
8302             <summary>\r
8303             Gets the <see cref="T:System.Type"/> of the dictionary values.\r
8304             </summary>\r
8305             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>\r
8306         </member>\r
8307         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">\r
8308             <summary>\r
8309             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8310             </summary>\r
8311         </member>\r
8312         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">\r
8313             <summary>\r
8314             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.\r
8315             </summary>\r
8316             <param name="underlyingType">The underlying type for the contract.</param>\r
8317         </member>\r
8318         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">\r
8319             <summary>\r
8320             Gets or sets the ISerializable object constructor.\r
8321             </summary>\r
8322             <value>The ISerializable object constructor.</value>\r
8323         </member>\r
8324         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">\r
8325             <summary>\r
8326             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8327             </summary>\r
8328         </member>\r
8329         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">\r
8330             <summary>\r
8331             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.\r
8332             </summary>\r
8333             <param name="underlyingType">The underlying type for the contract.</param>\r
8334         </member>\r
8335         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">\r
8336             <summary>\r
8337             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8338             </summary>\r
8339         </member>\r
8340         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">\r
8341             <summary>\r
8342             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.\r
8343             </summary>\r
8344             <param name="underlyingType">The underlying type for the contract.</param>\r
8345         </member>\r
8346         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">\r
8347             <summary>\r
8348             Maps a JSON property to a .NET member or constructor parameter.\r
8349             </summary>\r
8350         </member>\r
8351         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">\r
8352             <summary>\r
8353             Returns a <see cref="T:System.String"/> that represents this instance.\r
8354             </summary>\r
8355             <returns>\r
8356             A <see cref="T:System.String"/> that represents this instance.\r
8357             </returns>\r
8358         </member>\r
8359         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">\r
8360             <summary>\r
8361             Gets or sets the name of the property.\r
8362             </summary>\r
8363             <value>The name of the property.</value>\r
8364         </member>\r
8365         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">\r
8366             <summary>\r
8367             Gets or sets the type that declared this property.\r
8368             </summary>\r
8369             <value>The type that declared this property.</value>\r
8370         </member>\r
8371         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">\r
8372             <summary>\r
8373             Gets or sets the order of serialization and deserialization of a member.\r
8374             </summary>\r
8375             <value>The numeric order of serialization or deserialization.</value>\r
8376         </member>\r
8377         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">\r
8378             <summary>\r
8379             Gets or sets the name of the underlying member or parameter.\r
8380             </summary>\r
8381             <value>The name of the underlying member or parameter.</value>\r
8382         </member>\r
8383         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">\r
8384             <summary>\r
8385             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
8386             </summary>\r
8387             <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
8388         </member>\r
8389         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">\r
8390             <summary>\r
8391             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.\r
8392             </summary>\r
8393             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>\r
8394         </member>\r
8395         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">\r
8396             <summary>\r
8397             Gets or sets the type of the property.\r
8398             </summary>\r
8399             <value>The type of the property.</value>\r
8400         </member>\r
8401         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">\r
8402             <summary>\r
8403             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.\r
8404             If set this converter takes presidence over the contract converter for the property type.\r
8405             </summary>\r
8406             <value>The converter.</value>\r
8407         </member>\r
8408         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">\r
8409             <summary>\r
8410             Gets or sets the member converter.\r
8411             </summary>\r
8412             <value>The member converter.</value>\r
8413         </member>\r
8414         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">\r
8415             <summary>\r
8416             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.\r
8417             </summary>\r
8418             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r
8419         </member>\r
8420         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">\r
8421             <summary>\r
8422             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.\r
8423             </summary>\r
8424             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r
8425         </member>\r
8426         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">\r
8427             <summary>\r
8428             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.\r
8429             </summary>\r
8430             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r
8431         </member>\r
8432         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">\r
8433             <summary>\r
8434             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.\r
8435             </summary>\r
8436             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r
8437         </member>\r
8438         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">\r
8439             <summary>\r
8440             Gets the default value.\r
8441             </summary>\r
8442             <value>The default value.</value>\r
8443         </member>\r
8444         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">\r
8445             <summary>\r
8446             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.\r
8447             </summary>\r
8448             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>\r
8449         </member>\r
8450         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">\r
8451             <summary>\r
8452             Gets or sets a value indicating whether this property preserves object references.\r
8453             </summary>\r
8454             <value>\r
8455                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.\r
8456             </value>\r
8457         </member>\r
8458         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">\r
8459             <summary>\r
8460             Gets or sets the property null value handling.\r
8461             </summary>\r
8462             <value>The null value handling.</value>\r
8463         </member>\r
8464         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">\r
8465             <summary>\r
8466             Gets or sets the property default value handling.\r
8467             </summary>\r
8468             <value>The default value handling.</value>\r
8469         </member>\r
8470         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">\r
8471             <summary>\r
8472             Gets or sets the property reference loop handling.\r
8473             </summary>\r
8474             <value>The reference loop handling.</value>\r
8475         </member>\r
8476         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">\r
8477             <summary>\r
8478             Gets or sets the property object creation handling.\r
8479             </summary>\r
8480             <value>The object creation handling.</value>\r
8481         </member>\r
8482         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">\r
8483             <summary>\r
8484             Gets or sets or sets the type name handling.\r
8485             </summary>\r
8486             <value>The type name handling.</value>\r
8487         </member>\r
8488         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">\r
8489             <summary>\r
8490             Gets or sets a predicate used to determine whether the property should be serialize.\r
8491             </summary>\r
8492             <value>A predicate used to determine whether the property should be serialize.</value>\r
8493         </member>\r
8494         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">\r
8495             <summary>\r
8496             Gets or sets a predicate used to determine whether the property should be serialized.\r
8497             </summary>\r
8498             <value>A predicate used to determine whether the property should be serialized.</value>\r
8499         </member>\r
8500         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">\r
8501             <summary>\r
8502             Gets or sets an action used to set whether the property has been deserialized.\r
8503             </summary>\r
8504             <value>An action used to set whether the property has been deserialized.</value>\r
8505         </member>\r
8506         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">\r
8507             <summary>\r
8508             Gets or sets the converter used when serializing the property's collection items.\r
8509             </summary>\r
8510             <value>The collection's items converter.</value>\r
8511         </member>\r
8512         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">\r
8513             <summary>\r
8514             Gets or sets whether this property's collection items are serialized as a reference.\r
8515             </summary>\r
8516             <value>Whether this property's collection items are serialized as a reference.</value>\r
8517         </member>\r
8518         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">\r
8519             <summary>\r
8520             Gets or sets the the type name handling used when serializing the property's collection items.\r
8521             </summary>\r
8522             <value>The collection's items type name handling.</value>\r
8523         </member>\r
8524         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">\r
8525             <summary>\r
8526             Gets or sets the the reference loop handling used when serializing the property's collection items.\r
8527             </summary>\r
8528             <value>The collection's items reference loop handling.</value>\r
8529         </member>\r
8530         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">\r
8531             <summary>\r
8532             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.\r
8533             </summary>\r
8534         </member>\r
8535         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">\r
8536             <summary>\r
8537             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.\r
8538             </summary>\r
8539             <param name="type">The type.</param>\r
8540         </member>\r
8541         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">\r
8542             <summary>\r
8543             When implemented in a derived class, extracts the key from the specified element.\r
8544             </summary>\r
8545             <param name="item">The element from which to extract the key.</param>\r
8546             <returns>The key for the specified element.</returns>\r
8547         </member>\r
8548         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">\r
8549             <summary>\r
8550             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.\r
8551             </summary>\r
8552             <param name="property">The property to add to the collection.</param>\r
8553         </member>\r
8554         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">\r
8555             <summary>\r
8556             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.\r
8557             First attempts to get an exact case match of propertyName and then\r
8558             a case insensitive match.\r
8559             </summary>\r
8560             <param name="propertyName">Name of the property.</param>\r
8561             <returns>A matching property if found.</returns>\r
8562         </member>\r
8563         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">\r
8564             <summary>\r
8565             Gets a property by property name.\r
8566             </summary>\r
8567             <param name="propertyName">The name of the property to get.</param>\r
8568             <param name="comparisonType">Type property name string comparison.</param>\r
8569             <returns>A matching property if found.</returns>\r
8570         </member>\r
8571         <member name="T:Newtonsoft.Json.MissingMemberHandling">\r
8572             <summary>\r
8573             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8574             </summary>\r
8575         </member>\r
8576         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">\r
8577             <summary>\r
8578             Ignore a missing member and do not attempt to deserialize it.\r
8579             </summary>\r
8580         </member>\r
8581         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">\r
8582             <summary>\r
8583             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.\r
8584             </summary>\r
8585         </member>\r
8586         <member name="T:Newtonsoft.Json.NullValueHandling">\r
8587             <summary>\r
8588             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8589             </summary>\r
8590             <example>\r
8591               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>\r
8592               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>\r
8593             </example>\r
8594         </member>\r
8595         <member name="F:Newtonsoft.Json.NullValueHandling.Include">\r
8596             <summary>\r
8597             Include null values when serializing and deserializing objects.\r
8598             </summary>\r
8599         </member>\r
8600         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">\r
8601             <summary>\r
8602             Ignore null values when serializing and deserializing objects.\r
8603             </summary>\r
8604         </member>\r
8605         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">\r
8606             <summary>\r
8607             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8608             </summary>\r
8609         </member>\r
8610         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">\r
8611             <summary>\r
8612             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.\r
8613             </summary>\r
8614         </member>\r
8615         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">\r
8616             <summary>\r
8617             Ignore loop references and do not serialize.\r
8618             </summary>\r
8619         </member>\r
8620         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">\r
8621             <summary>\r
8622             Serialize loop references.\r
8623             </summary>\r
8624         </member>\r
8625         <member name="T:Newtonsoft.Json.Schema.JsonSchema">\r
8626             <summary>\r
8627             <para>\r
8628             An in-memory representation of a JSON Schema.\r
8629             </para>\r
8630             <note type="caution">\r
8631             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
8632             </note>\r
8633             </summary>\r
8634         </member>\r
8635         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">\r
8636             <summary>\r
8637             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.\r
8638             </summary>\r
8639         </member>\r
8640         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">\r
8641             <summary>\r
8642             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
8643             </summary>\r
8644             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>\r
8645             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>\r
8646         </member>\r
8647         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
8648             <summary>\r
8649             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.\r
8650             </summary>\r
8651             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>\r
8652             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>\r
8653             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>\r
8654         </member>\r
8655         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">\r
8656             <summary>\r
8657             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.\r
8658             </summary>\r
8659             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>\r
8660             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>\r
8661         </member>\r
8662         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
8663             <summary>\r
8664             Parses the specified json.\r
8665             </summary>\r
8666             <param name="json">The json.</param>\r
8667             <param name="resolver">The resolver.</param>\r
8668             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>\r
8669         </member>\r
8670         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">\r
8671             <summary>\r
8672             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
8673             </summary>\r
8674             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
8675         </member>\r
8676         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
8677             <summary>\r
8678             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.\r
8679             </summary>\r
8680             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>\r
8681             <param name="resolver">The resolver used.</param>\r
8682         </member>\r
8683         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">\r
8684             <summary>\r
8685             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.\r
8686             </summary>\r
8687             <returns>\r
8688             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.\r
8689             </returns>\r
8690         </member>\r
8691         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">\r
8692             <summary>\r
8693             Gets or sets the id.\r
8694             </summary>\r
8695         </member>\r
8696         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">\r
8697             <summary>\r
8698             Gets or sets the title.\r
8699             </summary>\r
8700         </member>\r
8701         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">\r
8702             <summary>\r
8703             Gets or sets whether the object is required.\r
8704             </summary>\r
8705         </member>\r
8706         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">\r
8707             <summary>\r
8708             Gets or sets whether the object is read only.\r
8709             </summary>\r
8710         </member>\r
8711         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">\r
8712             <summary>\r
8713             Gets or sets whether the object is visible to users.\r
8714             </summary>\r
8715         </member>\r
8716         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">\r
8717             <summary>\r
8718             Gets or sets whether the object is transient.\r
8719             </summary>\r
8720         </member>\r
8721         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">\r
8722             <summary>\r
8723             Gets or sets the description of the object.\r
8724             </summary>\r
8725         </member>\r
8726         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">\r
8727             <summary>\r
8728             Gets or sets the types of values allowed by the object.\r
8729             </summary>\r
8730             <value>The type.</value>\r
8731         </member>\r
8732         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">\r
8733             <summary>\r
8734             Gets or sets the pattern.\r
8735             </summary>\r
8736             <value>The pattern.</value>\r
8737         </member>\r
8738         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">\r
8739             <summary>\r
8740             Gets or sets the minimum length.\r
8741             </summary>\r
8742             <value>The minimum length.</value>\r
8743         </member>\r
8744         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">\r
8745             <summary>\r
8746             Gets or sets the maximum length.\r
8747             </summary>\r
8748             <value>The maximum length.</value>\r
8749         </member>\r
8750         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">\r
8751             <summary>\r
8752             Gets or sets a number that the value should be divisble by.\r
8753             </summary>\r
8754             <value>A number that the value should be divisble by.</value>\r
8755         </member>\r
8756         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">\r
8757             <summary>\r
8758             Gets or sets the minimum.\r
8759             </summary>\r
8760             <value>The minimum.</value>\r
8761         </member>\r
8762         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">\r
8763             <summary>\r
8764             Gets or sets the maximum.\r
8765             </summary>\r
8766             <value>The maximum.</value>\r
8767         </member>\r
8768         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">\r
8769             <summary>\r
8770             Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.\r
8771             </summary>\r
8772             <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>\r
8773         </member>\r
8774         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">\r
8775             <summary>\r
8776             Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.\r
8777             </summary>\r
8778             <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>\r
8779         </member>\r
8780         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">\r
8781             <summary>\r
8782             Gets or sets the minimum number of items.\r
8783             </summary>\r
8784             <value>The minimum number of items.</value>\r
8785         </member>\r
8786         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">\r
8787             <summary>\r
8788             Gets or sets the maximum number of items.\r
8789             </summary>\r
8790             <value>The maximum number of items.</value>\r
8791         </member>\r
8792         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">\r
8793             <summary>\r
8794             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.\r
8795             </summary>\r
8796             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>\r
8797         </member>\r
8798         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">\r
8799             <summary>\r
8800             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
8801             </summary>\r
8802             <value>\r
8803                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.\r
8804             </value>\r
8805         </member>\r
8806         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">\r
8807             <summary>\r
8808             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.\r
8809             </summary>\r
8810             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>\r
8811         </member>\r
8812         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">\r
8813             <summary>\r
8814             Gets or sets a value indicating whether additional items are allowed.\r
8815             </summary>\r
8816             <value>\r
8817                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.\r
8818             </value>\r
8819         </member>\r
8820         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">\r
8821             <summary>\r
8822             Gets or sets whether the array items must be unique.\r
8823             </summary>\r
8824         </member>\r
8825         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">\r
8826             <summary>\r
8827             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.\r
8828             </summary>\r
8829             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>\r
8830         </member>\r
8831         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">\r
8832             <summary>\r
8833             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.\r
8834             </summary>\r
8835             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>\r
8836         </member>\r
8837         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">\r
8838             <summary>\r
8839             Gets or sets the pattern properties.\r
8840             </summary>\r
8841             <value>The pattern properties.</value>\r
8842         </member>\r
8843         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">\r
8844             <summary>\r
8845             Gets or sets a value indicating whether additional properties are allowed.\r
8846             </summary>\r
8847             <value>\r
8848                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r
8849             </value>\r
8850         </member>\r
8851         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">\r
8852             <summary>\r
8853             Gets or sets the required property if this property is present.\r
8854             </summary>\r
8855             <value>The required property if this property is present.</value>\r
8856         </member>\r
8857         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">\r
8858             <summary>\r
8859             Gets or sets the a collection of valid enum values allowed.\r
8860             </summary>\r
8861             <value>A collection of valid enum values allowed.</value>\r
8862         </member>\r
8863         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">\r
8864             <summary>\r
8865             Gets or sets disallowed types.\r
8866             </summary>\r
8867             <value>The disallow types.</value>\r
8868         </member>\r
8869         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">\r
8870             <summary>\r
8871             Gets or sets the default value.\r
8872             </summary>\r
8873             <value>The default value.</value>\r
8874         </member>\r
8875         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">\r
8876             <summary>\r
8877             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.\r
8878             </summary>\r
8879             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>\r
8880         </member>\r
8881         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">\r
8882             <summary>\r
8883             Gets or sets the format.\r
8884             </summary>\r
8885             <value>The format.</value>\r
8886         </member>\r
8887         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">\r
8888             <summary>\r
8889             <para>\r
8890             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.\r
8891             </para>\r
8892             <note type="caution">\r
8893             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
8894             </note>\r
8895             </summary>\r
8896         </member>\r
8897         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">\r
8898             <summary>\r
8899             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8900             </summary>\r
8901             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8902             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8903         </member>\r
8904         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">\r
8905             <summary>\r
8906             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8907             </summary>\r
8908             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8909             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>\r
8910             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8911         </member>\r
8912         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">\r
8913             <summary>\r
8914             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8915             </summary>\r
8916             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8917             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>\r
8918             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8919         </member>\r
8920         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">\r
8921             <summary>\r
8922             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.\r
8923             </summary>\r
8924             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>\r
8925             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>\r
8926             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>\r
8927             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>\r
8928         </member>\r
8929         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">\r
8930             <summary>\r
8931             Gets or sets how undefined schemas are handled by the serializer.\r
8932             </summary>\r
8933         </member>\r
8934         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">\r
8935             <summary>\r
8936             Gets or sets the contract resolver.\r
8937             </summary>\r
8938             <value>The contract resolver.</value>\r
8939         </member>\r
8940         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">\r
8941             <summary>\r
8942             <para>\r
8943             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.\r
8944             </para>\r
8945             <note type="caution">\r
8946             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
8947             </note>\r
8948             </summary>\r
8949         </member>\r
8950         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">\r
8951             <summary>\r
8952             No type specified.\r
8953             </summary>\r
8954         </member>\r
8955         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">\r
8956             <summary>\r
8957             String type.\r
8958             </summary>\r
8959         </member>\r
8960         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">\r
8961             <summary>\r
8962             Float type.\r
8963             </summary>\r
8964         </member>\r
8965         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">\r
8966             <summary>\r
8967             Integer type.\r
8968             </summary>\r
8969         </member>\r
8970         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">\r
8971             <summary>\r
8972             Boolean type.\r
8973             </summary>\r
8974         </member>\r
8975         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">\r
8976             <summary>\r
8977             Object type.\r
8978             </summary>\r
8979         </member>\r
8980         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">\r
8981             <summary>\r
8982             Array type.\r
8983             </summary>\r
8984         </member>\r
8985         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">\r
8986             <summary>\r
8987             Null type.\r
8988             </summary>\r
8989         </member>\r
8990         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">\r
8991             <summary>\r
8992             Any type.\r
8993             </summary>\r
8994         </member>\r
8995         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">\r
8996             <summary>\r
8997             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
8998             </summary>\r
8999         </member>\r
9000         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">\r
9001             <summary>\r
9002             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.\r
9003             </summary>\r
9004             <param name="underlyingType">The underlying type for the contract.</param>\r
9005         </member>\r
9006         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">\r
9007             <summary>\r
9008             Gets or sets the object member serialization.\r
9009             </summary>\r
9010             <value>The member object serialization.</value>\r
9011         </member>\r
9012         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">\r
9013             <summary>\r
9014             Gets or sets a value that indicates whether the object's properties are required.\r
9015             </summary>\r
9016             <value>\r
9017                 A value indicating whether the object's properties are required.\r
9018             </value>\r
9019         </member>\r
9020         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">\r
9021             <summary>\r
9022             Gets the object's properties.\r
9023             </summary>\r
9024             <value>The object's properties.</value>\r
9025         </member>\r
9026         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">\r
9027             <summary>\r
9028             Gets the constructor parameters required for any non-default constructor\r
9029             </summary>\r
9030         </member>\r
9031         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">\r
9032             <summary>\r
9033             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
9034             </summary>\r
9035         </member>\r
9036         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">\r
9037             <summary>\r
9038             Gets or sets the override constructor used to create the object.\r
9039             This is set when a constructor is marked up using the\r
9040             JsonConstructor attribute.\r
9041             </summary>\r
9042             <value>The override constructor.</value>\r
9043         </member>\r
9044         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">\r
9045             <summary>\r
9046             Gets or sets the parametrized constructor used to create the object.\r
9047             </summary>\r
9048             <value>The parametrized constructor.</value>\r
9049         </member>\r
9050         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">\r
9051             <summary>\r
9052             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
9053             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.\r
9054             </summary>\r
9055             <value>The function used to create the object.</value>\r
9056         </member>\r
9057         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">\r
9058             <summary>\r
9059             Gets or sets the extension data setter.\r
9060             </summary>\r
9061         </member>\r
9062         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">\r
9063             <summary>\r
9064             Gets or sets the extension data getter.\r
9065             </summary>\r
9066         </member>\r
9067         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">\r
9068             <summary>\r
9069             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
9070             </summary>\r
9071         </member>\r
9072         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">\r
9073             <summary>\r
9074             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.\r
9075             </summary>\r
9076             <param name="underlyingType">The underlying type for the contract.</param>\r
9077         </member>\r
9078         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">\r
9079             <summary>\r
9080             Lookup and create an instance of the JsonConverter type described by the argument.\r
9081             </summary>\r
9082             <param name="converterType">The JsonConverter type to create.</param>\r
9083             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.\r
9084             If null, the default constructor is used.</param>\r
9085         </member>\r
9086         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">\r
9087             <summary>\r
9088             Create a factory function that can be used to create instances of a JsonConverter described by the \r
9089             argument type.  The returned function can then be used to either invoke the converter's default ctor, or any \r
9090             parameterized constructors by way of an object array.\r
9091             </summary>\r
9092         </member>\r
9093         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">\r
9094             <summary>\r
9095             Represents a method that constructs an object.\r
9096             </summary>\r
9097             <typeparam name="T">The object type to create.</typeparam>\r
9098         </member>\r
9099         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">\r
9100             <summary>\r
9101             When applied to a method, specifies that the method is called when an error occurs serializing an object.\r
9102             </summary>\r
9103         </member>\r
9104         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">\r
9105             <summary>\r
9106             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.\r
9107             </summary>\r
9108         </member>\r
9109         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">\r
9110             <summary>\r
9111             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.\r
9112             </summary>\r
9113             <param name="memberInfo">The member info.</param>\r
9114         </member>\r
9115         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">\r
9116             <summary>\r
9117             Sets the value.\r
9118             </summary>\r
9119             <param name="target">The target to set the value on.</param>\r
9120             <param name="value">The value to set on the target.</param>\r
9121         </member>\r
9122         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">\r
9123             <summary>\r
9124             Gets the value.\r
9125             </summary>\r
9126             <param name="target">The target to get the value from.</param>\r
9127             <returns>The value.</returns>\r
9128         </member>\r
9129         <member name="T:Newtonsoft.Json.TypeNameHandling">\r
9130             <summary>\r
9131             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.\r
9132             </summary>\r
9133         </member>\r
9134         <member name="F:Newtonsoft.Json.TypeNameHandling.None">\r
9135             <summary>\r
9136             Do not include the .NET type name when serializing types.\r
9137             </summary>\r
9138         </member>\r
9139         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">\r
9140             <summary>\r
9141             Include the .NET type name when serializing into a JSON object structure.\r
9142             </summary>\r
9143         </member>\r
9144         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">\r
9145             <summary>\r
9146             Include the .NET type name when serializing into a JSON array structure.\r
9147             </summary>\r
9148         </member>\r
9149         <member name="F:Newtonsoft.Json.TypeNameHandling.All">\r
9150             <summary>\r
9151             Always include the .NET type name when serializing.\r
9152             </summary>\r
9153         </member>\r
9154         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">\r
9155             <summary>\r
9156             Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r
9157             </summary>\r
9158         </member>\r
9159         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">\r
9160             <summary>\r
9161             Converts the value to the specified type. If the value is unable to be converted, the\r
9162             value is checked whether it assignable to the specified type.\r
9163             </summary>\r
9164             <param name="initialValue">The value to convert.</param>\r
9165             <param name="culture">The culture to use when converting.</param>\r
9166             <param name="targetType">The type to convert or cast the value to.</param>\r
9167             <returns>\r
9168             The converted type. If conversion was unsuccessful, the initial value\r
9169             is returned if assignable to the target type.\r
9170             </returns>\r
9171         </member>\r
9172         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">\r
9173             <summary>\r
9174             Gets a dictionary of the names and values of an Enum type.\r
9175             </summary>\r
9176             <returns></returns>\r
9177         </member>\r
9178         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">\r
9179             <summary>\r
9180             Gets a dictionary of the names and values of an Enum type.\r
9181             </summary>\r
9182             <param name="enumType">The enum type to get names and values for.</param>\r
9183             <returns></returns>\r
9184         </member>\r
9185         <member name="T:Newtonsoft.Json.JsonToken">\r
9186             <summary>\r
9187             Specifies the type of JSON token.\r
9188             </summary>\r
9189         </member>\r
9190         <member name="F:Newtonsoft.Json.JsonToken.None">\r
9191             <summary>\r
9192             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
9193             </summary>\r
9194         </member>\r
9195         <member name="F:Newtonsoft.Json.JsonToken.StartObject">\r
9196             <summary>\r
9197             An object start token.\r
9198             </summary>\r
9199         </member>\r
9200         <member name="F:Newtonsoft.Json.JsonToken.StartArray">\r
9201             <summary>\r
9202             An array start token.\r
9203             </summary>\r
9204         </member>\r
9205         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">\r
9206             <summary>\r
9207             A constructor start token.\r
9208             </summary>\r
9209         </member>\r
9210         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">\r
9211             <summary>\r
9212             An object property name.\r
9213             </summary>\r
9214         </member>\r
9215         <member name="F:Newtonsoft.Json.JsonToken.Comment">\r
9216             <summary>\r
9217             A comment.\r
9218             </summary>\r
9219         </member>\r
9220         <member name="F:Newtonsoft.Json.JsonToken.Raw">\r
9221             <summary>\r
9222             Raw JSON.\r
9223             </summary>\r
9224         </member>\r
9225         <member name="F:Newtonsoft.Json.JsonToken.Integer">\r
9226             <summary>\r
9227             An integer.\r
9228             </summary>\r
9229         </member>\r
9230         <member name="F:Newtonsoft.Json.JsonToken.Float">\r
9231             <summary>\r
9232             A float.\r
9233             </summary>\r
9234         </member>\r
9235         <member name="F:Newtonsoft.Json.JsonToken.String">\r
9236             <summary>\r
9237             A string.\r
9238             </summary>\r
9239         </member>\r
9240         <member name="F:Newtonsoft.Json.JsonToken.Boolean">\r
9241             <summary>\r
9242             A boolean.\r
9243             </summary>\r
9244         </member>\r
9245         <member name="F:Newtonsoft.Json.JsonToken.Null">\r
9246             <summary>\r
9247             A null token.\r
9248             </summary>\r
9249         </member>\r
9250         <member name="F:Newtonsoft.Json.JsonToken.Undefined">\r
9251             <summary>\r
9252             An undefined token.\r
9253             </summary>\r
9254         </member>\r
9255         <member name="F:Newtonsoft.Json.JsonToken.EndObject">\r
9256             <summary>\r
9257             An object end token.\r
9258             </summary>\r
9259         </member>\r
9260         <member name="F:Newtonsoft.Json.JsonToken.EndArray">\r
9261             <summary>\r
9262             An array end token.\r
9263             </summary>\r
9264         </member>\r
9265         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">\r
9266             <summary>\r
9267             A constructor end token.\r
9268             </summary>\r
9269         </member>\r
9270         <member name="F:Newtonsoft.Json.JsonToken.Date">\r
9271             <summary>\r
9272             A Date.\r
9273             </summary>\r
9274         </member>\r
9275         <member name="F:Newtonsoft.Json.JsonToken.Bytes">\r
9276             <summary>\r
9277             Byte data.\r
9278             </summary>\r
9279         </member>\r
9280         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">\r
9281             <summary>\r
9282             Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r
9283             </summary>\r
9284         </member>\r
9285         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">\r
9286             <summary>\r
9287             Determines whether the collection is null or empty.\r
9288             </summary>\r
9289             <param name="collection">The collection.</param>\r
9290             <returns>\r
9291                 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r
9292             </returns>\r
9293         </member>\r
9294         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">\r
9295             <summary>\r
9296             Adds the elements of the specified collection to the specified generic IList.\r
9297             </summary>\r
9298             <param name="initial">The list to add to.</param>\r
9299             <param name="collection">The collection of elements to add.</param>\r
9300         </member>\r
9301         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">\r
9302             <summary>\r
9303             Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer{TSource}.\r
9304             </summary>\r
9305             <typeparam name="TSource">The type of the elements of source.</typeparam>\r
9306             <param name="list">A sequence in which to locate a value.</param>\r
9307             <param name="value">The object to locate in the sequence</param>\r
9308             <param name="comparer">An equality comparer to compare values.</param>\r
9309             <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r
9310         </member>\r
9311         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">\r
9312             <summary>\r
9313             Gets the type of the typed collection's items.\r
9314             </summary>\r
9315             <param name="type">The type.</param>\r
9316             <returns>The type of the typed collection's items.</returns>\r
9317         </member>\r
9318         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">\r
9319             <summary>\r
9320             Gets the member's underlying type.\r
9321             </summary>\r
9322             <param name="member">The member.</param>\r
9323             <returns>The underlying type of the member.</returns>\r
9324         </member>\r
9325         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">\r
9326             <summary>\r
9327             Determines whether the member is an indexed property.\r
9328             </summary>\r
9329             <param name="member">The member.</param>\r
9330             <returns>\r
9331                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r
9332             </returns>\r
9333         </member>\r
9334         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">\r
9335             <summary>\r
9336             Determines whether the property is an indexed property.\r
9337             </summary>\r
9338             <param name="property">The property.</param>\r
9339             <returns>\r
9340                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r
9341             </returns>\r
9342         </member>\r
9343         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">\r
9344             <summary>\r
9345             Gets the member's value on the object.\r
9346             </summary>\r
9347             <param name="member">The member.</param>\r
9348             <param name="target">The target object.</param>\r
9349             <returns>The member's value on the object.</returns>\r
9350         </member>\r
9351         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">\r
9352             <summary>\r
9353             Sets the member's value on the target object.\r
9354             </summary>\r
9355             <param name="member">The member.</param>\r
9356             <param name="target">The target.</param>\r
9357             <param name="value">The value.</param>\r
9358         </member>\r
9359         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">\r
9360             <summary>\r
9361             Determines whether the specified MemberInfo can be read.\r
9362             </summary>\r
9363             <param name="member">The MemberInfo to determine whether can be read.</param>\r
9364             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r
9365             <returns>\r
9366                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r
9367             </returns>\r
9368         </member>\r
9369         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">\r
9370             <summary>\r
9371             Determines whether the specified MemberInfo can be set.\r
9372             </summary>\r
9373             <param name="member">The MemberInfo to determine whether can be set.</param>\r
9374             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r
9375             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>\r
9376             <returns>\r
9377                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r
9378             </returns>\r
9379         </member>\r
9380         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">\r
9381             <summary>\r
9382             Determines whether the string is all white space. Empty string will return false.\r
9383             </summary>\r
9384             <param name="s">The string to test whether it is all white space.</param>\r
9385             <returns>\r
9386                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.\r
9387             </returns>\r
9388         </member>\r
9389         <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">\r
9390             <summary>\r
9391             Nulls an empty string.\r
9392             </summary>\r
9393             <param name="s">The string.</param>\r
9394             <returns>Null if the string was null, otherwise the string unchanged.</returns>\r
9395         </member>\r
9396         <member name="T:Newtonsoft.Json.WriteState">\r
9397             <summary>\r
9398             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.\r
9399             </summary>\r
9400         </member>\r
9401         <member name="F:Newtonsoft.Json.WriteState.Error">\r
9402             <summary>\r
9403             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.\r
9404             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
9405             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. \r
9406             </summary>\r
9407         </member>\r
9408         <member name="F:Newtonsoft.Json.WriteState.Closed">\r
9409             <summary>\r
9410             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. \r
9411             </summary>\r
9412         </member>\r
9413         <member name="F:Newtonsoft.Json.WriteState.Object">\r
9414             <summary>\r
9415             An object is being written. \r
9416             </summary>\r
9417         </member>\r
9418         <member name="F:Newtonsoft.Json.WriteState.Array">\r
9419             <summary>\r
9420             A array is being written.\r
9421             </summary>\r
9422         </member>\r
9423         <member name="F:Newtonsoft.Json.WriteState.Constructor">\r
9424             <summary>\r
9425             A constructor is being written.\r
9426             </summary>\r
9427         </member>\r
9428         <member name="F:Newtonsoft.Json.WriteState.Property">\r
9429             <summary>\r
9430             A property is being written.\r
9431             </summary>\r
9432         </member>\r
9433         <member name="F:Newtonsoft.Json.WriteState.Start">\r
9434             <summary>\r
9435             A write method has not been called.\r
9436             </summary>\r
9437         </member>\r
9438     </members>\r
9439 </doc>\r