Implement update check on startup
[ArchiSteamFarm.git] / packages / Newtonsoft.Json.8.0.1-beta1 / lib / net20 / Newtonsoft.Json.xml
blob39bd3e609765e5b3069318f30af949ecf71f176c
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Newtonsoft.Json</name>
5     </assembly>
6     <members>
7         <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8             <summary>
9             Represents a BSON Oid (object id).
10             </summary>
11         </member>
12         <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
13             <summary>
14             Gets or sets the value of the Oid.
15             </summary>
16             <value>The value of the Oid.</value>
17         </member>
18         <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
19             <summary>
20             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
21             </summary>
22             <param name="value">The Oid value.</param>
23         </member>
24         <member name="T:Newtonsoft.Json.Bson.BsonReader">
25             <summary>
26             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
27             </summary>
28         </member>
29         <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
30             <summary>
31             Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
32             </summary>
33             <value>
34                 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
35             </value>
36         </member>
37         <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
38             <summary>
39             Gets or sets a value indicating whether the root object will be read as a JSON array.
40             </summary>
41             <value>
42                 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
43             </value>
44         </member>
45         <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
46             <summary>
47             Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
48             </summary>
49             <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
50         </member>
51         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
52             <summary>
53             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
54             </summary>
55             <param name="stream">The stream.</param>
56         </member>
57         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
58             <summary>
59             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
60             </summary>
61             <param name="reader">The reader.</param>
62         </member>
63         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
64             <summary>
65             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
66             </summary>
67             <param name="stream">The stream.</param>
68             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
69             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
70         </member>
71         <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
72             <summary>
73             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
74             </summary>
75             <param name="reader">The reader.</param>
76             <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
77             <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
78         </member>
79         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
80             <summary>
81             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
82             </summary>
83             <returns>
84             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.
85             </returns>
86         </member>
87         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
88             <summary>
89             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
90             </summary>
91             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
92         </member>
93         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
94             <summary>
95             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
96             </summary>
97             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
98         </member>
99         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
100             <summary>
101             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
102             </summary>
103             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
104         </member>
105         <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
106             <summary>
107             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
108             </summary>
109             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
110         </member>
111         <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
112             <summary>
113             Reads the next JSON token from the stream.
114             </summary>
115             <returns>
116             true if the next token was read successfully; false if there are no more tokens to read.
117             </returns>
118         </member>
119         <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
120             <summary>
121             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
122             </summary>
123         </member>
124         <member name="T:Newtonsoft.Json.Bson.BsonWriter">
125             <summary>
126             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
127             </summary>
128         </member>
129         <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
130             <summary>
131             Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
132             When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
133             </summary>
134             <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
135         </member>
136         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
137             <summary>
138             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
139             </summary>
140             <param name="stream">The stream.</param>
141         </member>
142         <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
143             <summary>
144             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
145             </summary>
146             <param name="writer">The writer.</param>
147         </member>
148         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
149             <summary>
150             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
151             </summary>
152         </member>
153         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
154             <summary>
155             Writes the end.
156             </summary>
157             <param name="token">The token.</param>
158         </member>
159         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
160             <summary>
161             Writes out a comment <code>/*...*/</code> containing the specified text.
162             </summary>
163             <param name="text">Text to place inside the comment.</param>
164         </member>
165         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
166             <summary>
167             Writes the start of a constructor with the given name.
168             </summary>
169             <param name="name">The name of the constructor.</param>
170         </member>
171         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
172             <summary>
173             Writes raw JSON.
174             </summary>
175             <param name="json">The raw JSON to write.</param>
176         </member>
177         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
178             <summary>
179             Writes raw JSON where a value is expected and updates the writer's state.
180             </summary>
181             <param name="json">The raw JSON to write.</param>
182         </member>
183         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
184             <summary>
185             Writes the beginning of a JSON array.
186             </summary>
187         </member>
188         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
189             <summary>
190             Writes the beginning of a JSON object.
191             </summary>
192         </member>
193         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
194             <summary>
195             Writes the property name of a name/value pair on a JSON object.
196             </summary>
197             <param name="name">The name of the property.</param>
198         </member>
199         <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
200             <summary>
201             Closes this stream and the underlying stream.
202             </summary>
203         </member>
204         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
205             <summary>
206             Writes a <see cref="T:System.Object"/> value.
207             An error will raised if the value cannot be written as a single JSON token.
208             </summary>
209             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
210         </member>
211         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
212             <summary>
213             Writes a null value.
214             </summary>
215         </member>
216         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
217             <summary>
218             Writes an undefined value.
219             </summary>
220         </member>
221         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
222             <summary>
223             Writes a <see cref="T:System.String"/> value.
224             </summary>
225             <param name="value">The <see cref="T:System.String"/> value to write.</param>
226         </member>
227         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
228             <summary>
229             Writes a <see cref="T:System.Int32"/> value.
230             </summary>
231             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
232         </member>
233         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
234             <summary>
235             Writes a <see cref="T:System.UInt32"/> value.
236             </summary>
237             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
238         </member>
239         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
240             <summary>
241             Writes a <see cref="T:System.Int64"/> value.
242             </summary>
243             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
244         </member>
245         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
246             <summary>
247             Writes a <see cref="T:System.UInt64"/> value.
248             </summary>
249             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
250         </member>
251         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
252             <summary>
253             Writes a <see cref="T:System.Single"/> value.
254             </summary>
255             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
256         </member>
257         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
258             <summary>
259             Writes a <see cref="T:System.Double"/> value.
260             </summary>
261             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
262         </member>
263         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
264             <summary>
265             Writes a <see cref="T:System.Boolean"/> value.
266             </summary>
267             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
268         </member>
269         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
270             <summary>
271             Writes a <see cref="T:System.Int16"/> value.
272             </summary>
273             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
274         </member>
275         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
276             <summary>
277             Writes a <see cref="T:System.UInt16"/> value.
278             </summary>
279             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
280         </member>
281         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
282             <summary>
283             Writes a <see cref="T:System.Char"/> value.
284             </summary>
285             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
286         </member>
287         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
288             <summary>
289             Writes a <see cref="T:System.Byte"/> value.
290             </summary>
291             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
292         </member>
293         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
294             <summary>
295             Writes a <see cref="T:System.SByte"/> value.
296             </summary>
297             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
298         </member>
299         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
300             <summary>
301             Writes a <see cref="T:System.Decimal"/> value.
302             </summary>
303             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
304         </member>
305         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
306             <summary>
307             Writes a <see cref="T:System.DateTime"/> value.
308             </summary>
309             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
310         </member>
311         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
312             <summary>
313             Writes a <see cref="T:System.Byte"/>[] value.
314             </summary>
315             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
316         </member>
317         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
318             <summary>
319             Writes a <see cref="T:System.Guid"/> value.
320             </summary>
321             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
322         </member>
323         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
324             <summary>
325             Writes a <see cref="T:System.TimeSpan"/> value.
326             </summary>
327             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
328         </member>
329         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
330             <summary>
331             Writes a <see cref="T:System.Uri"/> value.
332             </summary>
333             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
334         </member>
335         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
336             <summary>
337             Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
338             </summary>
339             <param name="value">The Object ID value to write.</param>
340         </member>
341         <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
342             <summary>
343             Writes a BSON regex.
344             </summary>
345             <param name="pattern">The regex pattern.</param>
346             <param name="options">The regex options.</param>
347         </member>
348         <member name="T:Newtonsoft.Json.ConstructorHandling">
349             <summary>
350             Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
351             </summary>
352         </member>
353         <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
354             <summary>
355             First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
356             </summary>
357         </member>
358         <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
359             <summary>
360             Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
361             </summary>
362         </member>
363         <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
364             <summary>
365             Converts a binary value to and from a base 64 string value.
366             </summary>
367         </member>
368         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
369             <summary>
370             Writes the JSON representation of the object.
371             </summary>
372             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
373             <param name="value">The value.</param>
374             <param name="serializer">The calling serializer.</param>
375         </member>
376         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
377             <summary>
378             Reads the JSON representation of the object.
379             </summary>
380             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
381             <param name="objectType">Type of the object.</param>
382             <param name="existingValue">The existing value of object being read.</param>
383             <param name="serializer">The calling serializer.</param>
384             <returns>The object value.</returns>
385         </member>
386         <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
387             <summary>
388             Determines whether this instance can convert the specified object type.
389             </summary>
390             <param name="objectType">Type of the object.</param>
391             <returns>
392                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
393             </returns>
394         </member>
395         <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
396             <summary>
397             Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
398             </summary>
399         </member>
400         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
401             <summary>
402             Writes the JSON representation of the object.
403             </summary>
404             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
405             <param name="value">The value.</param>
406             <param name="serializer">The calling serializer.</param>
407         </member>
408         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
409             <summary>
410             Reads the JSON representation of the object.
411             </summary>
412             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
413             <param name="objectType">Type of the object.</param>
414             <param name="existingValue">The existing value of object being read.</param>
415             <param name="serializer">The calling serializer.</param>
416             <returns>The object value.</returns>
417         </member>
418         <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
419             <summary>
420             Determines whether this instance can convert the specified object type.
421             </summary>
422             <param name="objectType">Type of the object.</param>
423             <returns>
424                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
425             </returns>
426         </member>
427         <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
428             <summary>
429             Create a custom object
430             </summary>
431             <typeparam name="T">The object type to convert.</typeparam>
432         </member>
433         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
434             <summary>
435             Writes the JSON representation of the object.
436             </summary>
437             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
438             <param name="value">The value.</param>
439             <param name="serializer">The calling serializer.</param>
440         </member>
441         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
442             <summary>
443             Reads the JSON representation of the object.
444             </summary>
445             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
446             <param name="objectType">Type of the object.</param>
447             <param name="existingValue">The existing value of object being read.</param>
448             <param name="serializer">The calling serializer.</param>
449             <returns>The object value.</returns>
450         </member>
451         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
452             <summary>
453             Creates an object which will then be populated by the serializer.
454             </summary>
455             <param name="objectType">Type of the object.</param>
456             <returns>The created object.</returns>
457         </member>
458         <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
459             <summary>
460             Determines whether this instance can convert the specified object type.
461             </summary>
462             <param name="objectType">Type of the object.</param>
463             <returns>
464                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
465             </returns>
466         </member>
467         <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
468             <summary>
469             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
470             </summary>
471             <value>
472                 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
473             </value>
474         </member>
475         <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
476             <summary>
477             Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
478             </summary>
479         </member>
480         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
481             <summary>
482             Writes the JSON representation of the object.
483             </summary>
484             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
485             <param name="value">The value.</param>
486             <param name="serializer">The calling serializer.</param>
487         </member>
488         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
489             <summary>
490             Reads the JSON representation of the object.
491             </summary>
492             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
493             <param name="objectType">Type of the object.</param>
494             <param name="existingValue">The existing value of object being read.</param>
495             <param name="serializer">The calling serializer.</param>
496             <returns>The object value.</returns>
497         </member>
498         <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
499             <summary>
500             Determines whether this instance can convert the specified value type.
501             </summary>
502             <param name="valueType">Type of the value.</param>
503             <returns>
504                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
505             </returns>
506         </member>
507         <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
508             <summary>
509             Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
510             </summary>
511         </member>
512         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
513             <summary>
514             Writes the JSON representation of the object.
515             </summary>
516             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
517             <param name="value">The value.</param>
518             <param name="serializer">The calling serializer.</param>
519         </member>
520         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
521             <summary>
522             Reads the JSON representation of the object.
523             </summary>
524             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
525             <param name="objectType">Type of the object.</param>
526             <param name="existingValue">The existing value of object being read.</param>
527             <param name="serializer">The calling serializer.</param>
528             <returns>The object value.</returns>
529         </member>
530         <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
531             <summary>
532             Determines whether this instance can convert the specified value type.
533             </summary>
534             <param name="valueType">Type of the value.</param>
535             <returns>
536                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
537             </returns>
538         </member>
539         <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
540             <summary>
541             Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
542             </summary>
543         </member>
544         <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
545             <summary>
546             Determines whether this instance can convert the specified object type.
547             </summary>
548             <param name="objectType">Type of the object.</param>
549             <returns>
550                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
551             </returns>
552         </member>
553         <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
554             <summary>
555             Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
556             </summary>
557         </member>
558         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
559             <summary>
560             Writes the JSON representation of the object.
561             </summary>
562             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
563             <param name="value">The value.</param>
564             <param name="serializer">The calling serializer.</param>
565         </member>
566         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
567             <summary>
568             Reads the JSON representation of the object.
569             </summary>
570             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
571             <param name="objectType">Type of the object.</param>
572             <param name="existingValue">The existing value of object being read.</param>
573             <param name="serializer">The calling serializer.</param>
574             <returns>The object value.</returns>
575         </member>
576         <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
577             <summary>
578             Determines whether this instance can convert the specified object type.
579             </summary>
580             <param name="objectType">Type of the object.</param>
581             <returns>
582                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
583             </returns>
584         </member>
585         <member name="T:Newtonsoft.Json.Converters.RegexConverter">
586             <summary>
587             Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
588             </summary>
589         </member>
590         <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
591             <summary>
592             Writes the JSON representation of the object.
593             </summary>
594             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
595             <param name="value">The value.</param>
596             <param name="serializer">The calling serializer.</param>
597         </member>
598         <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
599             <summary>
600             Reads the JSON representation of the object.
601             </summary>
602             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
603             <param name="objectType">Type of the object.</param>
604             <param name="existingValue">The existing value of object being read.</param>
605             <param name="serializer">The calling serializer.</param>
606             <returns>The object value.</returns>
607         </member>
608         <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
609             <summary>
610             Determines whether this instance can convert the specified object type.
611             </summary>
612             <param name="objectType">Type of the object.</param>
613             <returns>
614                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
615             </returns>
616         </member>
617         <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
618             <summary>
619             Converts an <see cref="T:System.Enum"/> to and from its name string value.
620             </summary>
621         </member>
622         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
623             <summary>
624             Gets or sets a value indicating whether the written enum text should be camel case.
625             </summary>
626             <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
627         </member>
628         <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
629             <summary>
630             Gets or sets a value indicating whether integer values are allowed.
631             </summary>
632             <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
633         </member>
634         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
635             <summary>
636             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
637             </summary>
638         </member>
639         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
640             <summary>
641             Writes the JSON representation of the object.
642             </summary>
643             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
644             <param name="value">The value.</param>
645             <param name="serializer">The calling serializer.</param>
646         </member>
647         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
648             <summary>
649             Reads the JSON representation of the object.
650             </summary>
651             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
652             <param name="objectType">Type of the object.</param>
653             <param name="existingValue">The existing value of object being read.</param>
654             <param name="serializer">The calling serializer.</param>
655             <returns>The object value.</returns>
656         </member>
657         <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
658             <summary>
659             Determines whether this instance can convert the specified object type.
660             </summary>
661             <param name="objectType">Type of the object.</param>
662             <returns>
663             <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
664             </returns>
665         </member>
666         <member name="T:Newtonsoft.Json.Converters.VersionConverter">
667             <summary>
668             Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
669             </summary>
670         </member>
671         <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
672             <summary>
673             Writes the JSON representation of the object.
674             </summary>
675             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
676             <param name="value">The value.</param>
677             <param name="serializer">The calling serializer.</param>
678         </member>
679         <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
680             <summary>
681             Reads the JSON representation of the object.
682             </summary>
683             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
684             <param name="objectType">Type of the object.</param>
685             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
686             <param name="serializer">The calling serializer.</param>
687             <returns>The object value.</returns>
688         </member>
689         <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
690             <summary>
691             Determines whether this instance can convert the specified object type.
692             </summary>
693             <param name="objectType">Type of the object.</param>
694             <returns>
695                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
696             </returns>
697         </member>
698         <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
699             <summary>
700             Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
701             </summary>
702         </member>
703         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
704             <summary>
705             Gets or sets the date time styles used when converting a date to and from JSON.
706             </summary>
707             <value>The date time styles used when converting a date to and from JSON.</value>
708         </member>
709         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
710             <summary>
711             Gets or sets the date time format used when converting a date to and from JSON.
712             </summary>
713             <value>The date time format used when converting a date to and from JSON.</value>
714         </member>
715         <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
716             <summary>
717             Gets or sets the culture used when converting a date to and from JSON.
718             </summary>
719             <value>The culture used when converting a date to and from JSON.</value>
720         </member>
721         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
722             <summary>
723             Writes the JSON representation of the object.
724             </summary>
725             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
726             <param name="value">The value.</param>
727             <param name="serializer">The calling serializer.</param>
728         </member>
729         <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
730             <summary>
731             Reads the JSON representation of the object.
732             </summary>
733             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
734             <param name="objectType">Type of the object.</param>
735             <param name="existingValue">The existing value of object being read.</param>
736             <param name="serializer">The calling serializer.</param>
737             <returns>The object value.</returns>
738         </member>
739         <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
740             <summary>
741             Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
742             </summary>
743         </member>
744         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
745             <summary>
746             Writes the JSON representation of the object.
747             </summary>
748             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
749             <param name="value">The value.</param>
750             <param name="serializer">The calling serializer.</param>
751         </member>
752         <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
753             <summary>
754             Reads the JSON representation of the object.
755             </summary>
756             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
757             <param name="objectType">Type of the object.</param>
758             <param name="existingValue">The existing property value of the JSON that is being converted.</param>
759             <param name="serializer">The calling serializer.</param>
760             <returns>The object value.</returns>
761         </member>
762         <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
763             <summary>
764             Converts XML to and from JSON.
765             </summary>
766         </member>
767         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
768             <summary>
769             Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
770             </summary>
771             <value>The name of the deserialize root element.</value>
772         </member>
773         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
774             <summary>
775             Gets or sets a flag to indicate whether to write the Json.NET array attribute.
776             This attribute helps preserve arrays when converting the written XML back to JSON.
777             </summary>
778             <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
779         </member>
780         <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
781             <summary>
782             Gets or sets a value indicating whether to write the root JSON object.
783             </summary>
784             <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
785         </member>
786         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
787             <summary>
788             Writes the JSON representation of the object.
789             </summary>
790             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
791             <param name="serializer">The calling serializer.</param>
792             <param name="value">The value.</param>
793         </member>
794         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
795             <summary>
796             Reads the JSON representation of the object.
797             </summary>
798             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
799             <param name="objectType">Type of the object.</param>
800             <param name="existingValue">The existing value of object being read.</param>
801             <param name="serializer">The calling serializer.</param>
802             <returns>The object value.</returns>
803         </member>
804         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
805             <summary>
806             Checks if the attributeName is a namespace attribute.
807             </summary>
808             <param name="attributeName">Attribute name to test.</param>
809             <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
810             <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
811         </member>
812         <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
813             <summary>
814             Determines whether this instance can convert the specified value type.
815             </summary>
816             <param name="valueType">Type of the value.</param>
817             <returns>
818                 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
819             </returns>
820         </member>
821         <member name="T:Newtonsoft.Json.DateFormatHandling">
822             <summary>
823             Specifies how dates are formatted when writing JSON text.
824             </summary>
825         </member>
826         <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
827             <summary>
828             Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
829             </summary>
830         </member>
831         <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
832             <summary>
833             Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
834             </summary>
835         </member>
836         <member name="T:Newtonsoft.Json.DateParseHandling">
837             <summary>
838             Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
839             </summary>
840         </member>
841         <member name="F:Newtonsoft.Json.DateParseHandling.None">
842             <summary>
843             Date formatted strings are not parsed to a date type and are read as strings.
844             </summary>
845         </member>
846         <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
847             <summary>
848             Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
849             </summary>
850         </member>
851         <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
852             <summary>
853             Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
854             </summary>
855         </member>
856         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
857             <summary>
858             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.
859             </summary>
860         </member>
861         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
862             <summary>
863             Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
864             </summary>
865         </member>
866         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
867             <summary>
868             Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
869             If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
870             </summary>
871         </member>
872         <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
873             <summary>
874             Time zone information should be preserved when converting.
875             </summary>
876         </member>
877         <member name="T:Newtonsoft.Json.FloatFormatHandling">
878             <summary>
879             Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
880             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
881             </summary>
882         </member>
883         <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
884             <summary>
885             Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
886             </summary>
887         </member>
888         <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
889             <summary>
890             Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
891             Note that this will produce non-valid JSON.
892             </summary>
893         </member>
894         <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
895             <summary>
896             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.
897             </summary>
898         </member>
899         <member name="T:Newtonsoft.Json.FloatParseHandling">
900             <summary>
901             Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
902             </summary>
903         </member>
904         <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
905             <summary>
906             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
907             </summary>
908         </member>
909         <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
910             <summary>
911             Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
912             </summary>
913         </member>
914         <member name="T:Newtonsoft.Json.Formatting">
915             <summary>
916             Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
917             </summary>
918         </member>
919         <member name="F:Newtonsoft.Json.Formatting.None">
920             <summary>
921             No special formatting is applied. This is the default.
922             </summary>
923         </member>
924         <member name="F:Newtonsoft.Json.Formatting.Indented">
925             <summary>
926             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.
927             </summary>
928         </member>
929         <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
930             <summary>
931             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
932             </summary>
933         </member>
934         <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
935             <summary>
936             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
937             </summary>
938         </member>
939         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
940             <summary>
941             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
942             </summary>
943         </member>
944         <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
945             <summary>
946             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
947             </summary>
948             <param name="id">The container Id.</param>
949         </member>
950         <member name="T:Newtonsoft.Json.JsonException">
951             <summary>
952             The exception thrown when an error occurs during JSON serialization or deserialization.
953             </summary>
954         </member>
955         <member name="M:Newtonsoft.Json.JsonException.#ctor">
956             <summary>
957             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
958             </summary>
959         </member>
960         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
961             <summary>
962             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
963             with a specified error message.
964             </summary>
965             <param name="message">The error message that explains the reason for the exception.</param>
966         </member>
967         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
968             <summary>
969             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
970             with a specified error message and a reference to the inner exception that is the cause of this exception.
971             </summary>
972             <param name="message">The error message that explains the reason for the exception.</param>
973             <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>
974         </member>
975         <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
976             <summary>
977             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
978             </summary>
979             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
980             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
981             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
982             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
983         </member>
984         <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
985             <summary>
986             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
987             and write values during serialization.
988             </summary>
989         </member>
990         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
991             <summary>
992             Gets or sets a value that indicates whether to write extension data when serializing the object.
993             </summary>
994             <value>
995                 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
996             </value>
997         </member>
998         <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
999             <summary>
1000             Gets or sets a value that indicates whether to read extension data when deserializing the object.
1001             </summary>
1002             <value>
1003                 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1004             </value>
1005         </member>
1006         <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1007             <summary>
1008             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
1009             </summary>
1010         </member>
1011         <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
1012             <summary>
1013             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and require the member has a value.
1014             </summary>
1015         </member>
1016         <member name="T:Newtonsoft.Json.Linq.CommentHandling">
1017             <summary>
1018             Specifies how JSON comments are handled when loading JSON.
1019             </summary>
1020         </member>
1021         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
1022             <summary>
1023             Ignore comments.
1024             </summary>
1025         </member>
1026         <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
1027             <summary>
1028             Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
1029             </summary>
1030         </member>
1031         <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
1032             <summary>
1033             Specifies the settings used when loading JSON.
1034             </summary>
1035         </member>
1036         <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
1037             <summary>
1038             Gets or sets how JSON comments are handled when loading JSON.
1039             </summary>
1040             <value>The JSON comment handling.</value>
1041         </member>
1042         <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1043             <summary>
1044             Specifies the settings used when merging JSON.
1045             </summary>
1046         </member>
1047         <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1048             <summary>
1049             Gets or sets the method used when merging JSON arrays.
1050             </summary>
1051             <value>The method used when merging JSON arrays.</value>
1052         </member>
1053         <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1054             <summary>
1055             Specifies how JSON arrays are merged together.
1056             </summary>
1057         </member>
1058         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
1059             <summary>Concatenate arrays.</summary>
1060         </member>
1061         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1062             <summary>Union arrays, skipping items that already exist.</summary>
1063         </member>
1064         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1065             <summary>Replace all array items.</summary>
1066         </member>
1067         <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1068             <summary>Merge array items together, matched by index.</summary>
1069         </member>
1070         <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1071             <summary>
1072             Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1073             </summary>
1074         </member>
1075         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
1076             <summary>
1077             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1078             </summary>
1079             <param name="name">The name.</param>
1080         </member>
1081         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1082             <summary>
1083             When overridden in a derived class, returns whether resetting an object changes its value.
1084             </summary>
1085             <returns>
1086             true if resetting the component changes its value; otherwise, false.
1087             </returns>
1088             <param name="component">The component to test for reset capability. 
1089                             </param>
1090         </member>
1091         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1092             <summary>
1093             When overridden in a derived class, gets the current value of the property on a component.
1094             </summary>
1095             <returns>
1096             The value of a property for a given component.
1097             </returns>
1098             <param name="component">The component with the property for which to retrieve the value. 
1099                             </param>
1100         </member>
1101         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1102             <summary>
1103             When overridden in a derived class, resets the value for this property of the component to the default value.
1104             </summary>
1105             <param name="component">The component with the property value that is to be reset to the default value. 
1106                             </param>
1107         </member>
1108         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1109             <summary>
1110             When overridden in a derived class, sets the value of the component to a different value.
1111             </summary>
1112             <param name="component">The component with the property value that is to be set. 
1113                             </param><param name="value">The new value. 
1114                             </param>
1115         </member>
1116         <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1117             <summary>
1118             When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1119             </summary>
1120             <returns>
1121             true if the property should be persisted; otherwise, false.
1122             </returns>
1123             <param name="component">The component with the property to be examined for persistence. 
1124                             </param>
1125         </member>
1126         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1127             <summary>
1128             When overridden in a derived class, gets the type of the component this property is bound to.
1129             </summary>
1130             <returns>
1131             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.
1132             </returns>
1133         </member>
1134         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1135             <summary>
1136             When overridden in a derived class, gets a value indicating whether this property is read-only.
1137             </summary>
1138             <returns>
1139             true if the property is read-only; otherwise, false.
1140             </returns>
1141         </member>
1142         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1143             <summary>
1144             When overridden in a derived class, gets the type of the property.
1145             </summary>
1146             <returns>
1147             A <see cref="T:System.Type"/> that represents the type of the property.
1148             </returns>
1149         </member>
1150         <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1151             <summary>
1152             Gets the hash code for the name of the member.
1153             </summary>
1154             <value></value>
1155             <returns>
1156             The hash code for the name of the member.
1157             </returns>
1158         </member>
1159         <member name="T:Newtonsoft.Json.Linq.JRaw">
1160             <summary>
1161             Represents a raw JSON string.
1162             </summary>
1163         </member>
1164         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
1165             <summary>
1166             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
1167             </summary>
1168             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
1169         </member>
1170         <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
1171             <summary>
1172             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
1173             </summary>
1174             <param name="rawJson">The raw json.</param>
1175         </member>
1176         <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
1177             <summary>
1178             Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
1179             </summary>
1180             <param name="reader">The reader.</param>
1181             <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
1182         </member>
1183         <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1184             <summary>
1185             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1186             </summary>
1187             <typeparam name="T">The type of token</typeparam>
1188         </member>
1189         <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1190             <summary>
1191             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1192             </summary>
1193             <value></value>
1194         </member>
1195         <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
1196             <summary>
1197             Compares tokens to determine whether they are equal.
1198             </summary>
1199         </member>
1200         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1201             <summary>
1202             Determines whether the specified objects are equal.
1203             </summary>
1204             <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1205             <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1206             <returns>
1207             true if the specified objects are equal; otherwise, false.
1208             </returns>
1209         </member>
1210         <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
1211             <summary>
1212             Returns a hash code for the specified object.
1213             </summary>
1214             <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
1215             <returns>A hash code for the specified object.</returns>
1216             <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
1217         </member>
1218         <member name="T:Newtonsoft.Json.Linq.Extensions">
1219             <summary>
1220             Contains the LINQ to JSON extension methods.
1221             </summary>
1222         </member>
1223         <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
1224             <summary>
1225             Returns a collection of tokens that contains the ancestors of every token in the source collection.
1226             </summary>
1227             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1228             <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>
1229             <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>
1230         </member>
1231         <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1232             <summary>
1233             Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
1234             </summary>
1235             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
1236             <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>
1237             <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>
1238         </member>
1239         <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
1240             <summary>
1241             Returns a collection of tokens that contains the descendants of every token in the source collection.
1242             </summary>
1243             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1244             <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>
1245             <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>
1246         </member>
1247         <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
1248             <summary>
1249             Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
1250             </summary>
1251             <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
1252             <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>
1253             <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>
1254         </member>
1255         <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
1256             <summary>
1257             Returns a collection of child properties of every object in the source collection.
1258             </summary>
1259             <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>
1260             <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>
1261         </member>
1262         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1263             <summary>
1264             Returns a collection of child values of every object in the source collection with the given key.
1265             </summary>
1266             <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>
1267             <param name="key">The token key.</param>
1268             <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>
1269         </member>
1270         <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1271             <summary>
1272             Returns a collection of child values of every object in the source collection.
1273             </summary>
1274             <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>
1275             <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>
1276         </member>
1277         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
1278             <summary>
1279             Returns a collection of converted child values of every object in the source collection with the given key.
1280             </summary>
1281             <typeparam name="U">The type to convert the values to.</typeparam>
1282             <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>
1283             <param name="key">The token key.</param>
1284             <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>
1285         </member>
1286         <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1287             <summary>
1288             Returns a collection of converted child values of every object in the source collection.
1289             </summary>
1290             <typeparam name="U">The type to convert the values to.</typeparam>
1291             <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>
1292             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1293         </member>
1294         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1295             <summary>
1296             Converts the value.
1297             </summary>
1298             <typeparam name="U">The type to convert the value to.</typeparam>
1299             <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>
1300             <returns>A converted value.</returns>
1301         </member>
1302         <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
1303             <summary>
1304             Converts the value.
1305             </summary>
1306             <typeparam name="T">The source collection type.</typeparam>
1307             <typeparam name="U">The type to convert the value to.</typeparam>
1308             <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>
1309             <returns>A converted value.</returns>
1310         </member>
1311         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
1312             <summary>
1313             Returns a collection of child tokens of every array in the source collection.
1314             </summary>
1315             <typeparam name="T">The source collection type.</typeparam>
1316             <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>
1317             <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>
1318         </member>
1319         <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
1320             <summary>
1321             Returns a collection of converted child tokens of every array in the source collection.
1322             </summary>
1323             <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>
1324             <typeparam name="U">The type to convert the values to.</typeparam>
1325             <typeparam name="T">The source collection type.</typeparam>
1326             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
1327         </member>
1328         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
1329             <summary>
1330             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1331             </summary>
1332             <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>
1333             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1334         </member>
1335         <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
1336             <summary>
1337             Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
1338             </summary>
1339             <typeparam name="T">The source collection type.</typeparam>
1340             <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>
1341             <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
1342         </member>
1343         <member name="T:Newtonsoft.Json.Linq.JConstructor">
1344             <summary>
1345             Represents a JSON constructor.
1346             </summary>
1347         </member>
1348         <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
1349             <summary>
1350             Gets the container's children tokens.
1351             </summary>
1352             <value>The container's children tokens.</value>
1353         </member>
1354         <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
1355             <summary>
1356             Gets or sets the name of this constructor.
1357             </summary>
1358             <value>The constructor name.</value>
1359         </member>
1360         <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
1361             <summary>
1362             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1363             </summary>
1364             <value>The type.</value>
1365         </member>
1366         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
1367             <summary>
1368             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
1369             </summary>
1370         </member>
1371         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
1372             <summary>
1373             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
1374             </summary>
1375             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
1376         </member>
1377         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
1378             <summary>
1379             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1380             </summary>
1381             <param name="name">The constructor name.</param>
1382             <param name="content">The contents of the constructor.</param>
1383         </member>
1384         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
1385             <summary>
1386             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
1387             </summary>
1388             <param name="name">The constructor name.</param>
1389             <param name="content">The contents of the constructor.</param>
1390         </member>
1391         <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
1392             <summary>
1393             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
1394             </summary>
1395             <param name="name">The constructor name.</param>
1396         </member>
1397         <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1398             <summary>
1399             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1400             </summary>
1401             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1402             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1403         </member>
1404         <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
1405             <summary>
1406             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1407             </summary>
1408             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1409         </member>
1410         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
1411             <summary>
1412             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1413             </summary>
1414             <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>
1415             <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>
1416         </member>
1417         <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1418             <summary>
1419             Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1420             </summary>
1421             <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>
1422             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1423             If this is null, default load settings will be used.</param>
1424             <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>
1425         </member>
1426         <member name="T:Newtonsoft.Json.Linq.JContainer">
1427             <summary>
1428             Represents a token that can contain other tokens.
1429             </summary>
1430         </member>
1431         <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
1432             <summary>
1433             Occurs when the list changes or an item in the list changes.
1434             </summary>
1435         </member>
1436         <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
1437             <summary>
1438             Occurs before an item is added to the collection.
1439             </summary>
1440         </member>
1441         <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
1442             <summary>
1443             Gets the container's children tokens.
1444             </summary>
1445             <value>The container's children tokens.</value>
1446         </member>
1447         <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
1448             <summary>
1449             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
1450             </summary>
1451             <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
1452         </member>
1453         <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
1454             <summary>
1455             Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
1456             </summary>
1457             <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
1458         </member>
1459         <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
1460             <summary>
1461             Gets a value indicating whether this token has child tokens.
1462             </summary>
1463             <value>
1464                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
1465             </value>
1466         </member>
1467         <member name="P:Newtonsoft.Json.Linq.JContainer.First">
1468             <summary>
1469             Get the first child token of this token.
1470             </summary>
1471             <value>
1472             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1473             </value>
1474         </member>
1475         <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
1476             <summary>
1477             Get the last child token of this token.
1478             </summary>
1479             <value>
1480             A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1481             </value>
1482         </member>
1483         <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
1484             <summary>
1485             Returns a collection of the child tokens of this token, in document order.
1486             </summary>
1487             <returns>
1488             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.
1489             </returns>
1490         </member>
1491         <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
1492             <summary>
1493             Returns a collection of the child values of this token, in document order.
1494             </summary>
1495             <typeparam name="T">The type to convert the values to.</typeparam>
1496             <returns>
1497             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.
1498             </returns>
1499         </member>
1500         <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
1501             <summary>
1502             Returns a collection of the descendant tokens for this token in document order.
1503             </summary>
1504             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
1505         </member>
1506         <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
1507             <summary>
1508             Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
1509             </summary>
1510             <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>
1511         </member>
1512         <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
1513             <summary>
1514             Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1515             </summary>
1516             <param name="content">The content to be added.</param>
1517         </member>
1518         <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
1519             <summary>
1520             Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1521             </summary>
1522             <param name="content">The content to be added.</param>
1523         </member>
1524         <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
1525             <summary>
1526             Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1527             </summary>
1528             <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
1529         </member>
1530         <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
1531             <summary>
1532             Replaces the children nodes of this token with the specified content.
1533             </summary>
1534             <param name="content">The content.</param>
1535         </member>
1536         <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
1537             <summary>
1538             Removes the child nodes from this token.
1539             </summary>
1540         </member>
1541         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
1542             <summary>
1543             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1544             </summary>
1545             <param name="content">The content to be merged.</param>
1546         </member>
1547         <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
1548             <summary>
1549             Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
1550             </summary>
1551             <param name="content">The content to be merged.</param>
1552             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
1553         </member>
1554         <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
1555             <summary>
1556             Gets the count of child JSON tokens.
1557             </summary>
1558             <value>The count of child JSON tokens</value>
1559         </member>
1560         <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
1561             <summary>
1562             Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1563             </summary>
1564             <typeparam name="T">The type of token</typeparam>
1565         </member>
1566         <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
1567             <summary>
1568             An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1569             </summary>
1570         </member>
1571         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
1572             <summary>
1573             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
1574             </summary>
1575             <param name="enumerable">The enumerable.</param>
1576         </member>
1577         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
1578             <summary>
1579             Returns an enumerator that iterates through the collection.
1580             </summary>
1581             <returns>
1582             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1583             </returns>
1584         </member>
1585         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
1586             <summary>
1587             Returns an enumerator that iterates through a collection.
1588             </summary>
1589             <returns>
1590             An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
1591             </returns>
1592         </member>
1593         <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
1594             <summary>
1595             Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1596             </summary>
1597             <value></value>
1598         </member>
1599         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
1600             <summary>
1601             Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
1602             </summary>
1603             <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
1604             <returns>
1605                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
1606             </returns>
1607         </member>
1608         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
1609             <summary>
1610             Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
1611             </summary>
1612             <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
1613             <returns>
1614                 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
1615             </returns>
1616         </member>
1617         <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
1618             <summary>
1619             Returns a hash code for this instance.
1620             </summary>
1621             <returns>
1622             A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 
1623             </returns>
1624         </member>
1625         <member name="T:Newtonsoft.Json.Linq.JObject">
1626             <summary>
1627             Represents a JSON object.
1628             </summary>
1629             <example>
1630               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1631             </example>
1632         </member>
1633         <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
1634             <summary>
1635             Gets the container's children tokens.
1636             </summary>
1637             <value>The container's children tokens.</value>
1638         </member>
1639         <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
1640             <summary>
1641             Occurs when a property value changes.
1642             </summary>
1643         </member>
1644         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
1645             <summary>
1646             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
1647             </summary>
1648         </member>
1649         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
1650             <summary>
1651             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
1652             </summary>
1653             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
1654         </member>
1655         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
1656             <summary>
1657             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1658             </summary>
1659             <param name="content">The contents of the object.</param>
1660         </member>
1661         <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
1662             <summary>
1663             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
1664             </summary>
1665             <param name="content">The contents of the object.</param>
1666         </member>
1667         <member name="P:Newtonsoft.Json.Linq.JObject.Type">
1668             <summary>
1669             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1670             </summary>
1671             <value>The type.</value>
1672         </member>
1673         <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
1674             <summary>
1675             Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
1676             </summary>
1677             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
1678         </member>
1679         <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
1680             <summary>
1681             Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
1682             </summary>
1683             <param name="name">The property name.</param>
1684             <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
1685         </member>
1686         <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
1687             <summary>
1688             Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
1689             </summary>
1690             <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
1691         </member>
1692         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
1693             <summary>
1694             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
1695             </summary>
1696             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
1697         </member>
1698         <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
1699             <summary>
1700             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1701             </summary>
1702             <value></value>
1703         </member>
1704         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
1705             <summary>
1706             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1707             </summary>
1708             <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>
1709             <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>
1710         </member>
1711         <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1712             <summary>
1713             Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1714             </summary>
1715             <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>
1716             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1717             If this is null, default load settings will be used.</param>
1718             <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>
1719         </member>
1720         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
1721             <summary>
1722             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1723             </summary>
1724             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1725             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1726             <example>
1727               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1728             </example>
1729         </member>
1730         <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
1731             <summary>
1732             Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
1733             </summary>
1734             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1735             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1736             If this is null, default load settings will be used.</param>
1737             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
1738             <example>
1739               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
1740             </example>
1741         </member>
1742         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
1743             <summary>
1744             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1745             </summary>
1746             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1747             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1748         </member>
1749         <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
1750             <summary>
1751             Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
1752             </summary>
1753             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
1754             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
1755             <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
1756         </member>
1757         <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1758             <summary>
1759             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1760             </summary>
1761             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1762             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1763         </member>
1764         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
1765             <summary>
1766             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1767             </summary>
1768             <param name="propertyName">Name of the property.</param>
1769             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1770         </member>
1771         <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
1772             <summary>
1773             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1774             The exact property name will be searched for first and if no matching property is found then
1775             the <see cref="T:System.StringComparison"/> will be used to match a property.
1776             </summary>
1777             <param name="propertyName">Name of the property.</param>
1778             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1779             <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
1780         </member>
1781         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
1782             <summary>
1783             Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
1784             The exact property name will be searched for first and if no matching property is found then
1785             the <see cref="T:System.StringComparison"/> will be used to match a property.
1786             </summary>
1787             <param name="propertyName">Name of the property.</param>
1788             <param name="value">The value.</param>
1789             <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
1790             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1791         </member>
1792         <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
1793             <summary>
1794             Adds the specified property name.
1795             </summary>
1796             <param name="propertyName">Name of the property.</param>
1797             <param name="value">The value.</param>
1798         </member>
1799         <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
1800             <summary>
1801             Removes the property with the specified name.
1802             </summary>
1803             <param name="propertyName">Name of the property.</param>
1804             <returns>true if item was successfully removed; otherwise, false.</returns>
1805         </member>
1806         <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
1807             <summary>
1808             Tries the get value.
1809             </summary>
1810             <param name="propertyName">Name of the property.</param>
1811             <param name="value">The value.</param>
1812             <returns>true if a value was successfully retrieved; otherwise, false.</returns>
1813         </member>
1814         <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
1815             <summary>
1816             Returns an enumerator that iterates through the collection.
1817             </summary>
1818             <returns>
1819             A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
1820             </returns>
1821         </member>
1822         <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
1823             <summary>
1824             Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
1825             </summary>
1826             <param name="propertyName">Name of the property.</param>
1827         </member>
1828         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
1829             <summary>
1830             Returns the properties for this instance of a component.
1831             </summary>
1832             <returns>
1833             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
1834             </returns>
1835         </member>
1836         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
1837             <summary>
1838             Returns the properties for this instance of a component using the attribute array as a filter.
1839             </summary>
1840             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
1841             <returns>
1842             A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
1843             </returns>
1844         </member>
1845         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
1846             <summary>
1847             Returns a collection of custom attributes for this instance of a component.
1848             </summary>
1849             <returns>
1850             An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
1851             </returns>
1852         </member>
1853         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
1854             <summary>
1855             Returns the class name of this instance of a component.
1856             </summary>
1857             <returns>
1858             The class name of the object, or null if the class does not have a name.
1859             </returns>
1860         </member>
1861         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
1862             <summary>
1863             Returns the name of this instance of a component.
1864             </summary>
1865             <returns>
1866             The name of the object, or null if the object does not have a name.
1867             </returns>
1868         </member>
1869         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
1870             <summary>
1871             Returns a type converter for this instance of a component.
1872             </summary>
1873             <returns>
1874             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.
1875             </returns>
1876         </member>
1877         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
1878             <summary>
1879             Returns the default event for this instance of a component.
1880             </summary>
1881             <returns>
1882             An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
1883             </returns>
1884         </member>
1885         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
1886             <summary>
1887             Returns the default property for this instance of a component.
1888             </summary>
1889             <returns>
1890             A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
1891             </returns>
1892         </member>
1893         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
1894             <summary>
1895             Returns an editor of the specified type for this instance of a component.
1896             </summary>
1897             <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
1898             <returns>
1899             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.
1900             </returns>
1901         </member>
1902         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
1903             <summary>
1904             Returns the events for this instance of a component using the specified attribute array as a filter.
1905             </summary>
1906             <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
1907             <returns>
1908             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
1909             </returns>
1910         </member>
1911         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
1912             <summary>
1913             Returns the events for this instance of a component.
1914             </summary>
1915             <returns>
1916             An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
1917             </returns>
1918         </member>
1919         <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
1920             <summary>
1921             Returns an object that contains the property described by the specified property descriptor.
1922             </summary>
1923             <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
1924             <returns>
1925             An <see cref="T:System.Object"/> that represents the owner of the specified property.
1926             </returns>
1927         </member>
1928         <member name="T:Newtonsoft.Json.Linq.JArray">
1929             <summary>
1930             Represents a JSON array.
1931             </summary>
1932             <example>
1933               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
1934             </example>
1935         </member>
1936         <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
1937             <summary>
1938             Gets the container's children tokens.
1939             </summary>
1940             <value>The container's children tokens.</value>
1941         </member>
1942         <member name="P:Newtonsoft.Json.Linq.JArray.Type">
1943             <summary>
1944             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1945             </summary>
1946             <value>The type.</value>
1947         </member>
1948         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
1949             <summary>
1950             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
1951             </summary>
1952         </member>
1953         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
1954             <summary>
1955             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
1956             </summary>
1957             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
1958         </member>
1959         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
1960             <summary>
1961             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
1962             </summary>
1963             <param name="content">The contents of the array.</param>
1964         </member>
1965         <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
1966             <summary>
1967             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
1968             </summary>
1969             <param name="content">The contents of the array.</param>
1970         </member>
1971         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
1972             <summary>
1973             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1974             </summary>
1975             <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>
1976             <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>
1977         </member>
1978         <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
1979             <summary>
1980             Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
1981             </summary>
1982             <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>
1983             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
1984             If this is null, default load settings will be used.</param>
1985             <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>
1986         </member>
1987         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
1988             <summary>
1989             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
1990             </summary>
1991             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
1992             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
1993             <example>
1994               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
1995             </example>
1996         </member>
1997         <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
1998             <summary>
1999             Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
2000             </summary>
2001             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2002             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
2003             If this is null, default load settings will be used.</param>
2004             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
2005             <example>
2006               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
2007             </example>
2008         </member>
2009         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
2010             <summary>
2011             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2012             </summary>
2013             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2014             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2015         </member>
2016         <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
2017             <summary>
2018             Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
2019             </summary>
2020             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
2021             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
2022             <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
2023         </member>
2024         <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2025             <summary>
2026             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2027             </summary>
2028             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2029             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2030         </member>
2031         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
2032             <summary>
2033             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2034             </summary>
2035             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2036         </member>
2037         <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
2038             <summary>
2039             Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
2040             </summary>
2041             <value></value>
2042         </member>
2043         <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
2044             <summary>
2045             Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
2046             </summary>
2047             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2048             <returns>
2049             The index of <paramref name="item"/> if found in the list; otherwise, -1.
2050             </returns>
2051         </member>
2052         <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
2053             <summary>
2054             Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
2055             </summary>
2056             <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
2057             <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
2058             <exception cref="T:System.ArgumentOutOfRangeException">
2059                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2060             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2061         </member>
2062         <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
2063             <summary>
2064             Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
2065             </summary>
2066             <param name="index">The zero-based index of the item to remove.</param>
2067             <exception cref="T:System.ArgumentOutOfRangeException">
2068                 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
2069             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
2070         </member>
2071         <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
2072             <summary>
2073             Returns an enumerator that iterates through the collection.
2074             </summary>
2075             <returns>
2076             A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection.
2077             </returns>
2078         </member>
2079         <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
2080             <summary>
2081             Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2082             </summary>
2083             <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2084             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2085         </member>
2086         <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
2087             <summary>
2088             Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2089             </summary>
2090             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
2091         </member>
2092         <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
2093             <summary>
2094             Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
2095             </summary>
2096             <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2097             <returns>
2098             true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
2099             </returns>
2100         </member>
2101         <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
2102             <summary>
2103             Copies to.
2104             </summary>
2105             <param name="array">The array.</param>
2106             <param name="arrayIndex">Index of the array.</param>
2107         </member>
2108         <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
2109             <summary>
2110             Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.
2111             </summary>
2112             <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns>
2113         </member>
2114         <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
2115             <summary>
2116             Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
2117             </summary>
2118             <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
2119             <returns>
2120             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"/>.
2121             </returns>
2122             <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
2123         </member>
2124         <member name="T:Newtonsoft.Json.Linq.JTokenReader">
2125             <summary>
2126             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2127             </summary>
2128         </member>
2129         <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
2130             <summary>
2131             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
2132             </summary>
2133         </member>
2134         <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
2135             <summary>
2136             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
2137             </summary>
2138             <param name="token">The token to read from.</param>
2139         </member>
2140         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
2141             <summary>
2142             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
2143             </summary>
2144             <returns>
2145             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.
2146             </returns>
2147         </member>
2148         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
2149             <summary>
2150             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2151             </summary>
2152             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2153         </member>
2154         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
2155             <summary>
2156             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2157             </summary>
2158             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
2159         </member>
2160         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString">
2161             <summary>
2162             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
2163             </summary>
2164             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2165         </member>
2166         <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime">
2167             <summary>
2168             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2169             </summary>
2170             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2171         </member>
2172         <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
2173             <summary>
2174             Reads the next JSON token from the stream.
2175             </summary>
2176             <returns>
2177             true if the next token was read successfully; false if there are no more tokens to read.
2178             </returns>
2179         </member>
2180         <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
2181             <summary>
2182             Gets the path of the current JSON token. 
2183             </summary>
2184         </member>
2185         <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
2186             <summary>
2187             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
2188             </summary>
2189         </member>
2190         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
2191             <summary>
2192             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
2193             </summary>
2194         </member>
2195         <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
2196             <summary>
2197             Gets the token being writen.
2198             </summary>
2199             <value>The token being writen.</value>
2200         </member>
2201         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
2202             <summary>
2203             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"/>.
2204             </summary>
2205             <param name="container">The container being written to.</param>
2206         </member>
2207         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
2208             <summary>
2209             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
2210             </summary>
2211         </member>
2212         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
2213             <summary>
2214             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
2215             </summary>
2216         </member>
2217         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
2218             <summary>
2219             Closes this stream and the underlying stream.
2220             </summary>
2221         </member>
2222         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
2223             <summary>
2224             Writes the beginning of a JSON object.
2225             </summary>
2226         </member>
2227         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
2228             <summary>
2229             Writes the beginning of a JSON array.
2230             </summary>
2231         </member>
2232         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
2233             <summary>
2234             Writes the start of a constructor with the given name.
2235             </summary>
2236             <param name="name">The name of the constructor.</param>
2237         </member>
2238         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
2239             <summary>
2240             Writes the end.
2241             </summary>
2242             <param name="token">The token.</param>
2243         </member>
2244         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
2245             <summary>
2246             Writes the property name of a name/value pair on a JSON object.
2247             </summary>
2248             <param name="name">The name of the property.</param>
2249         </member>
2250         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
2251             <summary>
2252             Writes a <see cref="T:System.Object"/> value.
2253             An error will raised if the value cannot be written as a single JSON token.
2254             </summary>
2255             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
2256         </member>
2257         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
2258             <summary>
2259             Writes a null value.
2260             </summary>
2261         </member>
2262         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
2263             <summary>
2264             Writes an undefined value.
2265             </summary>
2266         </member>
2267         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
2268             <summary>
2269             Writes raw JSON.
2270             </summary>
2271             <param name="json">The raw JSON to write.</param>
2272         </member>
2273         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
2274             <summary>
2275             Writes out a comment <code>/*...*/</code> containing the specified text.
2276             </summary>
2277             <param name="text">Text to place inside the comment.</param>
2278         </member>
2279         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
2280             <summary>
2281             Writes a <see cref="T:System.String"/> value.
2282             </summary>
2283             <param name="value">The <see cref="T:System.String"/> value to write.</param>
2284         </member>
2285         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
2286             <summary>
2287             Writes a <see cref="T:System.Int32"/> value.
2288             </summary>
2289             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
2290         </member>
2291         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
2292             <summary>
2293             Writes a <see cref="T:System.UInt32"/> value.
2294             </summary>
2295             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
2296         </member>
2297         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
2298             <summary>
2299             Writes a <see cref="T:System.Int64"/> value.
2300             </summary>
2301             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
2302         </member>
2303         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
2304             <summary>
2305             Writes a <see cref="T:System.UInt64"/> value.
2306             </summary>
2307             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
2308         </member>
2309         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
2310             <summary>
2311             Writes a <see cref="T:System.Single"/> value.
2312             </summary>
2313             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
2314         </member>
2315         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
2316             <summary>
2317             Writes a <see cref="T:System.Double"/> value.
2318             </summary>
2319             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
2320         </member>
2321         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
2322             <summary>
2323             Writes a <see cref="T:System.Boolean"/> value.
2324             </summary>
2325             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
2326         </member>
2327         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
2328             <summary>
2329             Writes a <see cref="T:System.Int16"/> value.
2330             </summary>
2331             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
2332         </member>
2333         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
2334             <summary>
2335             Writes a <see cref="T:System.UInt16"/> value.
2336             </summary>
2337             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
2338         </member>
2339         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
2340             <summary>
2341             Writes a <see cref="T:System.Char"/> value.
2342             </summary>
2343             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
2344         </member>
2345         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
2346             <summary>
2347             Writes a <see cref="T:System.Byte"/> value.
2348             </summary>
2349             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
2350         </member>
2351         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
2352             <summary>
2353             Writes a <see cref="T:System.SByte"/> value.
2354             </summary>
2355             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
2356         </member>
2357         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
2358             <summary>
2359             Writes a <see cref="T:System.Decimal"/> value.
2360             </summary>
2361             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
2362         </member>
2363         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
2364             <summary>
2365             Writes a <see cref="T:System.DateTime"/> value.
2366             </summary>
2367             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
2368         </member>
2369         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
2370             <summary>
2371             Writes a <see cref="T:System.Byte"/>[] value.
2372             </summary>
2373             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
2374         </member>
2375         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
2376             <summary>
2377             Writes a <see cref="T:System.TimeSpan"/> value.
2378             </summary>
2379             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
2380         </member>
2381         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
2382             <summary>
2383             Writes a <see cref="T:System.Guid"/> value.
2384             </summary>
2385             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
2386         </member>
2387         <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
2388             <summary>
2389             Writes a <see cref="T:System.Uri"/> value.
2390             </summary>
2391             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
2392         </member>
2393         <member name="T:Newtonsoft.Json.Linq.JToken">
2394             <summary>
2395             Represents an abstract JSON token.
2396             </summary>
2397         </member>
2398         <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2399             <summary>
2400             Gets a comparer that can compare two tokens for value equality.
2401             </summary>
2402             <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2403         </member>
2404         <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2405             <summary>
2406             Gets or sets the parent.
2407             </summary>
2408             <value>The parent.</value>
2409         </member>
2410         <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2411             <summary>
2412             Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2413             </summary>
2414             <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2415         </member>
2416         <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2417             <summary>
2418             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2419             </summary>
2420             <value>The type.</value>
2421         </member>
2422         <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2423             <summary>
2424             Gets a value indicating whether this token has child tokens.
2425             </summary>
2426             <value>
2427                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2428             </value>
2429         </member>
2430         <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2431             <summary>
2432             Compares the values of two tokens, including the values of all descendant tokens.
2433             </summary>
2434             <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2435             <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2436             <returns>true if the tokens are equal; otherwise false.</returns>
2437         </member>
2438         <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2439             <summary>
2440             Gets the next sibling token of this node.
2441             </summary>
2442             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2443         </member>
2444         <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2445             <summary>
2446             Gets the previous sibling token of this node.
2447             </summary>
2448             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2449         </member>
2450         <member name="P:Newtonsoft.Json.Linq.JToken.Path">
2451             <summary>
2452             Gets the path of the JSON token. 
2453             </summary>
2454         </member>
2455         <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
2456             <summary>
2457             Adds the specified content immediately after this token.
2458             </summary>
2459             <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
2460         </member>
2461         <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
2462             <summary>
2463             Adds the specified content immediately before this token.
2464             </summary>
2465             <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
2466         </member>
2467         <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
2468             <summary>
2469             Returns a collection of the ancestor tokens of this token.
2470             </summary>
2471             <returns>A collection of the ancestor tokens of this token.</returns>
2472         </member>
2473         <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
2474             <summary>
2475             Returns a collection of tokens that contain this token, and the ancestors of this token.
2476             </summary>
2477             <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
2478         </member>
2479         <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
2480             <summary>
2481             Returns a collection of the sibling tokens after this token, in document order.
2482             </summary>
2483             <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
2484         </member>
2485         <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
2486             <summary>
2487             Returns a collection of the sibling tokens before this token, in document order.
2488             </summary>
2489             <returns>A collection of the sibling tokens before this token, in document order.</returns>
2490         </member>
2491         <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2492             <summary>
2493             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2494             </summary>
2495             <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2496         </member>
2497         <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
2498             <summary>
2499             Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
2500             </summary>
2501             <typeparam name="T">The type to convert the token to.</typeparam>
2502             <param name="key">The token key.</param>
2503             <returns>The converted token value.</returns>
2504         </member>
2505         <member name="P:Newtonsoft.Json.Linq.JToken.First">
2506             <summary>
2507             Get the first child token of this token.
2508             </summary>
2509             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2510         </member>
2511         <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2512             <summary>
2513             Get the last child token of this token.
2514             </summary>
2515             <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2516         </member>
2517         <member name="M:Newtonsoft.Json.Linq.JToken.Children">
2518             <summary>
2519             Returns a collection of the child tokens of this token, in document order.
2520             </summary>
2521             <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>
2522         </member>
2523         <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
2524             <summary>
2525             Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
2526             </summary>
2527             <typeparam name="T">The type to filter the child tokens on.</typeparam>
2528             <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>
2529         </member>
2530         <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
2531             <summary>
2532             Returns a collection of the child values of this token, in document order.
2533             </summary>
2534             <typeparam name="T">The type to convert the values to.</typeparam>
2535             <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>
2536         </member>
2537         <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
2538             <summary>
2539             Removes this token from its parent.
2540             </summary>
2541         </member>
2542         <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
2543             <summary>
2544             Replaces this token with the specified token.
2545             </summary>
2546             <param name="value">The value.</param>
2547         </member>
2548         <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2549             <summary>
2550             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2551             </summary>
2552             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2553             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2554         </member>
2555         <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
2556             <summary>
2557             Returns the indented JSON for this token.
2558             </summary>
2559             <returns>
2560             The indented JSON for this token.
2561             </returns>
2562         </member>
2563         <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2564             <summary>
2565             Returns the JSON for this token using the given formatting and converters.
2566             </summary>
2567             <param name="formatting">Indicates how the output is formatted.</param>
2568             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2569             <returns>The JSON for this token using the given formatting and converters.</returns>
2570         </member>
2571         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
2572             <summary>
2573             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
2574             </summary>
2575             <param name="value">The value.</param>
2576             <returns>The result of the conversion.</returns>
2577         </member>
2578         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
2579             <summary>
2580             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2581             </summary>
2582             <param name="value">The value.</param>
2583             <returns>The result of the conversion.</returns>
2584         </member>
2585         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
2586             <summary>
2587             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
2588             </summary>
2589             <param name="value">The value.</param>
2590             <returns>The result of the conversion.</returns>
2591         </member>
2592         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
2593             <summary>
2594             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2595             </summary>
2596             <param name="value">The value.</param>
2597             <returns>The result of the conversion.</returns>
2598         </member>
2599         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
2600             <summary>
2601             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2602             </summary>
2603             <param name="value">The value.</param>
2604             <returns>The result of the conversion.</returns>
2605         </member>
2606         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
2607             <summary>
2608             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2609             </summary>
2610             <param name="value">The value.</param>
2611             <returns>The result of the conversion.</returns>
2612         </member>
2613         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
2614             <summary>
2615             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2616             </summary>
2617             <param name="value">The value.</param>
2618             <returns>The result of the conversion.</returns>
2619         </member>
2620         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
2621             <summary>
2622             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
2623             </summary>
2624             <param name="value">The value.</param>
2625             <returns>The result of the conversion.</returns>
2626         </member>
2627         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
2628             <summary>
2629             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
2630             </summary>
2631             <param name="value">The value.</param>
2632             <returns>The result of the conversion.</returns>
2633         </member>
2634         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
2635             <summary>
2636             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
2637             </summary>
2638             <param name="value">The value.</param>
2639             <returns>The result of the conversion.</returns>
2640         </member>
2641         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
2642             <summary>
2643             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
2644             </summary>
2645             <param name="value">The value.</param>
2646             <returns>The result of the conversion.</returns>
2647         </member>
2648         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
2649             <summary>
2650             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
2651             </summary>
2652             <param name="value">The value.</param>
2653             <returns>The result of the conversion.</returns>
2654         </member>
2655         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
2656             <summary>
2657             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
2658             </summary>
2659             <param name="value">The value.</param>
2660             <returns>The result of the conversion.</returns>
2661         </member>
2662         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
2663             <summary>
2664             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2665             </summary>
2666             <param name="value">The value.</param>
2667             <returns>The result of the conversion.</returns>
2668         </member>
2669         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
2670             <summary>
2671             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2672             </summary>
2673             <param name="value">The value.</param>
2674             <returns>The result of the conversion.</returns>
2675         </member>
2676         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
2677             <summary>
2678             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2679             </summary>
2680             <param name="value">The value.</param>
2681             <returns>The result of the conversion.</returns>
2682         </member>
2683         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
2684             <summary>
2685             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2686             </summary>
2687             <param name="value">The value.</param>
2688             <returns>The result of the conversion.</returns>
2689         </member>
2690         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
2691             <summary>
2692             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2693             </summary>
2694             <param name="value">The value.</param>
2695             <returns>The result of the conversion.</returns>
2696         </member>
2697         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
2698             <summary>
2699             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
2700             </summary>
2701             <param name="value">The value.</param>
2702             <returns>The result of the conversion.</returns>
2703         </member>
2704         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
2705             <summary>
2706             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2707             </summary>
2708             <param name="value">The value.</param>
2709             <returns>The result of the conversion.</returns>
2710         </member>
2711         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
2712             <summary>
2713             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2714             </summary>
2715             <param name="value">The value.</param>
2716             <returns>The result of the conversion.</returns>
2717         </member>
2718         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
2719             <summary>
2720             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
2721             </summary>
2722             <param name="value">The value.</param>
2723             <returns>The result of the conversion.</returns>
2724         </member>
2725         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
2726             <summary>
2727             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2728             </summary>
2729             <param name="value">The value.</param>
2730             <returns>The result of the conversion.</returns>
2731         </member>
2732         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
2733             <summary>
2734             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
2735             </summary>
2736             <param name="value">The value.</param>
2737             <returns>The result of the conversion.</returns>
2738         </member>
2739         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
2740             <summary>
2741             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
2742             </summary>
2743             <param name="value">The value.</param>
2744             <returns>The result of the conversion.</returns>
2745         </member>
2746         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
2747             <summary>
2748             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
2749             </summary>
2750             <param name="value">The value.</param>
2751             <returns>The result of the conversion.</returns>
2752         </member>
2753         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
2754             <summary>
2755             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
2756             </summary>
2757             <param name="value">The value.</param>
2758             <returns>The result of the conversion.</returns>
2759         </member>
2760         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
2761             <summary>
2762             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
2763             </summary>
2764             <param name="value">The value.</param>
2765             <returns>The result of the conversion.</returns>
2766         </member>
2767         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
2768             <summary>
2769             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
2770             </summary>
2771             <param name="value">The value.</param>
2772             <returns>The result of the conversion.</returns>
2773         </member>
2774         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
2775             <summary>
2776             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
2777             </summary>
2778             <param name="value">The value.</param>
2779             <returns>The result of the conversion.</returns>
2780         </member>
2781         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
2782             <summary>
2783             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2784             </summary>
2785             <param name="value">The value.</param>
2786             <returns>The result of the conversion.</returns>
2787         </member>
2788         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
2789             <summary>
2790             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
2791             </summary>
2792             <param name="value">The value.</param>
2793             <returns>The result of the conversion.</returns>
2794         </member>
2795         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
2796             <summary>
2797             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2798             </summary>
2799             <param name="value">The value.</param>
2800             <returns>The result of the conversion.</returns>
2801         </member>
2802         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
2803             <summary>
2804             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
2805             </summary>
2806             <param name="value">The value.</param>
2807             <returns>The result of the conversion.</returns>
2808         </member>
2809         <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
2810             <summary>
2811             Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
2812             </summary>
2813             <param name="value">The value.</param>
2814             <returns>The result of the conversion.</returns>
2815         </member>
2816         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
2817             <summary>
2818             Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2819             </summary>
2820             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2821             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2822         </member>
2823         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
2824             <summary>
2825             Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2826             </summary>
2827             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2828             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2829         </member>
2830         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
2831             <summary>
2832             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2833             </summary>
2834             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2835             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2836         </member>
2837         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
2838             <summary>
2839             Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2840             </summary>
2841             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2842             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2843         </member>
2844         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
2845             <summary>
2846             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2847             </summary>
2848             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2849             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2850         </member>
2851         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
2852             <summary>
2853             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2854             </summary>
2855             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2856             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2857         </member>
2858         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
2859             <summary>
2860             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2861             </summary>
2862             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2863             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2864         </member>
2865         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
2866             <summary>
2867             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2868             </summary>
2869             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2870             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2871         </member>
2872         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
2873             <summary>
2874             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2875             </summary>
2876             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2877             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2878         </member>
2879         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
2880             <summary>
2881             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2882             </summary>
2883             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2884             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2885         </member>
2886         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
2887             <summary>
2888             Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2889             </summary>
2890             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2891             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2892         </member>
2893         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
2894             <summary>
2895             Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2896             </summary>
2897             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2898             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2899         </member>
2900         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
2901             <summary>
2902             Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2903             </summary>
2904             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2905             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2906         </member>
2907         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
2908             <summary>
2909             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2910             </summary>
2911             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2912             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2913         </member>
2914         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
2915             <summary>
2916             Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2917             </summary>
2918             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2919             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2920         </member>
2921         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
2922             <summary>
2923             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2924             </summary>
2925             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2926             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2927         </member>
2928         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
2929             <summary>
2930             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2931             </summary>
2932             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2933             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2934         </member>
2935         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
2936             <summary>
2937             Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2938             </summary>
2939             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2940             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2941         </member>
2942         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
2943             <summary>
2944             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2945             </summary>
2946             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2947             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2948         </member>
2949         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
2950             <summary>
2951             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2952             </summary>
2953             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2954             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2955         </member>
2956         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
2957             <summary>
2958             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2959             </summary>
2960             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2961             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2962         </member>
2963         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
2964             <summary>
2965             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2966             </summary>
2967             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2968             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2969         </member>
2970         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
2971             <summary>
2972             Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2973             </summary>
2974             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2975             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2976         </member>
2977         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
2978             <summary>
2979             Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2980             </summary>
2981             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2982             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2983         </member>
2984         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
2985             <summary>
2986             Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2987             </summary>
2988             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2989             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2990         </member>
2991         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
2992             <summary>
2993             Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2994             </summary>
2995             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2996             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2997         </member>
2998         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
2999             <summary>
3000             Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3001             </summary>
3002             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3003             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3004         </member>
3005         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
3006             <summary>
3007             Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3008             </summary>
3009             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3010             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3011         </member>
3012         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
3013             <summary>
3014             Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3015             </summary>
3016             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3017             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3018         </member>
3019         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
3020             <summary>
3021             Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3022             </summary>
3023             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3024             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3025         </member>
3026         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
3027             <summary>
3028             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3029             </summary>
3030             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3031             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3032         </member>
3033         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
3034             <summary>
3035             Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3036             </summary>
3037             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3038             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3039         </member>
3040         <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
3041             <summary>
3042             Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3043             </summary>
3044             <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
3045             <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
3046         </member>
3047         <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
3048             <summary>
3049             Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
3050             </summary>
3051             <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
3052         </member>
3053         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
3054             <summary>
3055             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
3056             </summary>
3057             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3058             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3059         </member>
3060         <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
3061             <summary>
3062             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3063             </summary>
3064             <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
3065             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
3066             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
3067         </member>
3068         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
3069             <summary>
3070             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3071             </summary>
3072             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3073             <returns>The new object created from the JSON value.</returns>
3074         </member>
3075         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
3076             <summary>
3077             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3078             </summary>
3079             <param name="objectType">The object type that the token will be deserialized to.</param>
3080             <returns>The new object created from the JSON value.</returns>
3081         </member>
3082         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
3083             <summary>
3084             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3085             </summary>
3086             <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
3087             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3088             <returns>The new object created from the JSON value.</returns>
3089         </member>
3090         <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
3091             <summary>
3092             Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3093             </summary>
3094             <param name="objectType">The object type that the token will be deserialized to.</param>
3095             <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
3096             <returns>The new object created from the JSON value.</returns>
3097         </member>
3098         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
3099             <summary>
3100             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3101             </summary>
3102             <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>
3103             <returns>
3104             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3105             that were read from the reader. The runtime type of the token is determined
3106             by the token type of the first token encountered in the reader.
3107             </returns>
3108         </member>
3109         <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3110             <summary>
3111             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3112             </summary>
3113             <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>
3114             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3115             If this is null, default load settings will be used.</param>
3116             <returns>
3117             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3118             that were read from the reader. The runtime type of the token is determined
3119             by the token type of the first token encountered in the reader.
3120             </returns>
3121         </member>
3122         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
3123             <summary>
3124             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3125             </summary>
3126             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3127             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3128         </member>
3129         <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
3130             <summary>
3131             Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
3132             </summary>
3133             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
3134             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3135             If this is null, default load settings will be used.</param>
3136             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
3137         </member>
3138         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3139             <summary>
3140             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3141             </summary>
3142             <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>
3143             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3144             If this is null, default load settings will be used.</param>
3145             <returns>
3146             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3147             that were read from the reader. The runtime type of the token is determined
3148             by the token type of the first token encountered in the reader.
3149             </returns>
3150         </member>
3151         <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
3152             <summary>
3153             Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
3154             </summary>
3155             <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>
3156             <returns>
3157             An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
3158             that were read from the reader. The runtime type of the token is determined
3159             by the token type of the first token encountered in the reader.
3160             </returns>
3161         </member>
3162         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
3163             <summary>
3164             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3165             </summary>
3166             <param name="path">
3167             A <see cref="T:System.String"/> that contains a JPath expression.
3168             </param>
3169             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns>
3170         </member>
3171         <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
3172             <summary>
3173             Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
3174             </summary>
3175             <param name="path">
3176             A <see cref="T:System.String"/> that contains a JPath expression.
3177             </param>
3178             <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>
3179             <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3180         </member>
3181         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
3182             <summary>
3183             Selects a collection of elements using a JPath expression.
3184             </summary>
3185             <param name="path">
3186             A <see cref="T:System.String"/> that contains a JPath expression.
3187             </param>
3188             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3189         </member>
3190         <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
3191             <summary>
3192             Selects a collection of elements using a JPath expression.
3193             </summary>
3194             <param name="path">
3195             A <see cref="T:System.String"/> that contains a JPath expression.
3196             </param>
3197             <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>
3198             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns>
3199         </member>
3200         <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
3201             <summary>
3202             Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
3203             </summary>
3204             <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3205         </member>
3206         <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
3207             <summary>
3208             Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3209             </summary>
3210             <param name="annotation">The annotation to add.</param>
3211         </member>
3212         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
3213             <summary>
3214             Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3215             </summary>
3216             <typeparam name="T">The type of the annotation to retrieve.</typeparam>
3217             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3218         </member>
3219         <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
3220             <summary>
3221             Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3222             </summary>
3223             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
3224             <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
3225         </member>
3226         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
3227             <summary>
3228             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3229             </summary>
3230             <typeparam name="T">The type of the annotations to retrieve.</typeparam>
3231             <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/>  that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
3232         </member>
3233         <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
3234             <summary>
3235             Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3236             </summary>
3237             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
3238             <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>
3239         </member>
3240         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
3241             <summary>
3242             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3243             </summary>
3244             <typeparam name="T">The type of annotations to remove.</typeparam>
3245         </member>
3246         <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
3247             <summary>
3248             Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3249             </summary>
3250             <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
3251         </member>
3252         <member name="T:Newtonsoft.Json.Linq.JProperty">
3253             <summary>
3254             Represents a JSON property.
3255             </summary>
3256         </member>
3257         <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
3258             <summary>
3259             Gets the container's children tokens.
3260             </summary>
3261             <value>The container's children tokens.</value>
3262         </member>
3263         <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
3264             <summary>
3265             Gets the property name.
3266             </summary>
3267             <value>The property name.</value>
3268         </member>
3269         <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
3270             <summary>
3271             Gets or sets the property value.
3272             </summary>
3273             <value>The property value.</value>
3274         </member>
3275         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
3276             <summary>
3277             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
3278             </summary>
3279             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
3280         </member>
3281         <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
3282             <summary>
3283             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3284             </summary>
3285             <value>The type.</value>
3286         </member>
3287         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
3288             <summary>
3289             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3290             </summary>
3291             <param name="name">The property name.</param>
3292             <param name="content">The property content.</param>
3293         </member>
3294         <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
3295             <summary>
3296             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
3297             </summary>
3298             <param name="name">The property name.</param>
3299             <param name="content">The property content.</param>
3300         </member>
3301         <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3302             <summary>
3303             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3304             </summary>
3305             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3306             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3307         </member>
3308         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
3309             <summary>
3310             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3311             </summary>
3312             <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>
3313             <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>
3314         </member>
3315         <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
3316             <summary>
3317             Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 
3318             </summary>
3319             <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>
3320             <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
3321             If this is null, default load settings will be used.</param>
3322             <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>
3323         </member>
3324         <member name="T:Newtonsoft.Json.Linq.JTokenType">
3325             <summary>
3326             Specifies the type of token.
3327             </summary>
3328         </member>
3329         <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
3330             <summary>
3331             No token type has been set.
3332             </summary>
3333         </member>
3334         <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
3335             <summary>
3336             A JSON object.
3337             </summary>
3338         </member>
3339         <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
3340             <summary>
3341             A JSON array.
3342             </summary>
3343         </member>
3344         <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
3345             <summary>
3346             A JSON constructor.
3347             </summary>
3348         </member>
3349         <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
3350             <summary>
3351             A JSON object property.
3352             </summary>
3353         </member>
3354         <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
3355             <summary>
3356             A comment.
3357             </summary>
3358         </member>
3359         <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
3360             <summary>
3361             An integer value.
3362             </summary>
3363         </member>
3364         <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
3365             <summary>
3366             A float value.
3367             </summary>
3368         </member>
3369         <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
3370             <summary>
3371             A string value.
3372             </summary>
3373         </member>
3374         <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
3375             <summary>
3376             A boolean value.
3377             </summary>
3378         </member>
3379         <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
3380             <summary>
3381             A null value.
3382             </summary>
3383         </member>
3384         <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
3385             <summary>
3386             An undefined value.
3387             </summary>
3388         </member>
3389         <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
3390             <summary>
3391             A date value.
3392             </summary>
3393         </member>
3394         <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
3395             <summary>
3396             A raw JSON value.
3397             </summary>
3398         </member>
3399         <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
3400             <summary>
3401             A collection of bytes value.
3402             </summary>
3403         </member>
3404         <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
3405             <summary>
3406             A Guid value.
3407             </summary>
3408         </member>
3409         <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
3410             <summary>
3411             A Uri value.
3412             </summary>
3413         </member>
3414         <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
3415             <summary>
3416             A TimeSpan value.
3417             </summary>
3418         </member>
3419         <member name="T:Newtonsoft.Json.Linq.JValue">
3420             <summary>
3421             Represents a value in JSON (string, integer, date, etc).
3422             </summary>
3423         </member>
3424         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
3425             <summary>
3426             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
3427             </summary>
3428             <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3429         </member>
3430         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
3431             <summary>
3432             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3433             </summary>
3434             <param name="value">The value.</param>
3435         </member>
3436         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
3437             <summary>
3438             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3439             </summary>
3440             <param name="value">The value.</param>
3441         </member>
3442         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
3443             <summary>
3444             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3445             </summary>
3446             <param name="value">The value.</param>
3447         </member>
3448         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
3449             <summary>
3450             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3451             </summary>
3452             <param name="value">The value.</param>
3453         </member>
3454         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
3455             <summary>
3456             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3457             </summary>
3458             <param name="value">The value.</param>
3459         </member>
3460         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
3461             <summary>
3462             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3463             </summary>
3464             <param name="value">The value.</param>
3465         </member>
3466         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
3467             <summary>
3468             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3469             </summary>
3470             <param name="value">The value.</param>
3471         </member>
3472         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
3473             <summary>
3474             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3475             </summary>
3476             <param name="value">The value.</param>
3477         </member>
3478         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
3479             <summary>
3480             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3481             </summary>
3482             <param name="value">The value.</param>
3483         </member>
3484         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
3485             <summary>
3486             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3487             </summary>
3488             <param name="value">The value.</param>
3489         </member>
3490         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
3491             <summary>
3492             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3493             </summary>
3494             <param name="value">The value.</param>
3495         </member>
3496         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
3497             <summary>
3498             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3499             </summary>
3500             <param name="value">The value.</param>
3501         </member>
3502         <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
3503             <summary>
3504             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
3505             </summary>
3506             <param name="value">The value.</param>
3507         </member>
3508         <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
3509             <summary>
3510             Gets a value indicating whether this token has child tokens.
3511             </summary>
3512             <value>
3513                 <c>true</c> if this token has child values; otherwise, <c>false</c>.
3514             </value>
3515         </member>
3516         <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
3517             <summary>
3518             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
3519             </summary>
3520             <param name="value">The value.</param>
3521             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3522         </member>
3523         <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
3524             <summary>
3525             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
3526             </summary>
3527             <param name="value">The value.</param>
3528             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3529         </member>
3530         <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
3531             <summary>
3532             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3533             </summary>
3534             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3535         </member>
3536         <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
3537             <summary>
3538             Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
3539             </summary>
3540             <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3541         </member>
3542         <member name="P:Newtonsoft.Json.Linq.JValue.Type">
3543             <summary>
3544             Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
3545             </summary>
3546             <value>The type.</value>
3547         </member>
3548         <member name="P:Newtonsoft.Json.Linq.JValue.Value">
3549             <summary>
3550             Gets or sets the underlying token value.
3551             </summary>
3552             <value>The underlying token value.</value>
3553         </member>
3554         <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
3555             <summary>
3556             Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3557             </summary>
3558             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
3559             <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3560         </member>
3561         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
3562             <summary>
3563             Indicates whether the current object is equal to another object of the same type.
3564             </summary>
3565             <returns>
3566             true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3567             </returns>
3568             <param name="other">An object to compare with this object.</param>
3569         </member>
3570         <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
3571             <summary>
3572             Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
3573             </summary>
3574             <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
3575             <returns>
3576             true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3577             </returns>
3578             <exception cref="T:System.NullReferenceException">
3579             The <paramref name="obj"/> parameter is null.
3580             </exception>
3581         </member>
3582         <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
3583             <summary>
3584             Serves as a hash function for a particular type.
3585             </summary>
3586             <returns>
3587             A hash code for the current <see cref="T:System.Object"/>.
3588             </returns>
3589         </member>
3590         <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
3591             <summary>
3592             Returns a <see cref="T:System.String"/> that represents this instance.
3593             </summary>
3594             <returns>
3595             A <see cref="T:System.String"/> that represents this instance.
3596             </returns>
3597         </member>
3598         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
3599             <summary>
3600             Returns a <see cref="T:System.String"/> that represents this instance.
3601             </summary>
3602             <param name="format">The format.</param>
3603             <returns>
3604             A <see cref="T:System.String"/> that represents this instance.
3605             </returns>
3606         </member>
3607         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
3608             <summary>
3609             Returns a <see cref="T:System.String"/> that represents this instance.
3610             </summary>
3611             <param name="formatProvider">The format provider.</param>
3612             <returns>
3613             A <see cref="T:System.String"/> that represents this instance.
3614             </returns>
3615         </member>
3616         <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
3617             <summary>
3618             Returns a <see cref="T:System.String"/> that represents this instance.
3619             </summary>
3620             <param name="format">The format.</param>
3621             <param name="formatProvider">The format provider.</param>
3622             <returns>
3623             A <see cref="T:System.String"/> that represents this instance.
3624             </returns>
3625         </member>
3626         <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
3627             <summary>
3628             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.
3629             </summary>
3630             <param name="obj">An object to compare with this instance.</param>
3631             <returns>
3632             A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3633             Value
3634             Meaning
3635             Less than zero
3636             This instance is less than <paramref name="obj"/>.
3637             Zero
3638             This instance is equal to <paramref name="obj"/>.
3639             Greater than zero
3640             This instance is greater than <paramref name="obj"/>.
3641             </returns>
3642             <exception cref="T:System.ArgumentException">
3643                 <paramref name="obj"/> is not the same type as this instance.
3644             </exception>
3645         </member>
3646         <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
3647             <summary>
3648             Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3649             </summary>
3650         </member>
3651         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
3652             <summary>
3653             Read metadata properties located at the start of a JSON object.
3654             </summary>
3655         </member>
3656         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
3657             <summary>
3658             Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
3659             </summary>
3660         </member>
3661         <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
3662             <summary>
3663             Do not try to read metadata properties.
3664             </summary>
3665         </member>
3666         <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
3667             <summary>
3668             Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
3669             </summary>
3670         </member>
3671         <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
3672             <summary>
3673             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3674             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3675             <code>Warning</code> and <code>Error</code> messages.
3676             </summary>
3677             <value>
3678             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3679             </value>
3680         </member>
3681         <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3682             <summary>
3683             Writes the specified trace level, message and optional exception.
3684             </summary>
3685             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3686             <param name="message">The trace message.</param>
3687             <param name="ex">The trace exception. This parameter is optional.</param>
3688         </member>
3689         <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
3690             <summary>
3691             Provides methods to get attributes.
3692             </summary>
3693         </member>
3694         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
3695             <summary>
3696             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3697             </summary>
3698             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3699             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3700         </member>
3701         <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3702             <summary>
3703             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3704             </summary>
3705             <param name="attributeType">The type of the attributes.</param>
3706             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3707             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3708         </member>
3709         <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
3710             <summary>
3711             Represents a trace writer.
3712             </summary>
3713         </member>
3714         <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
3715             <summary>
3716             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3717             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3718             <code>Warning</code> and <code>Error</code> messages.
3719             </summary>
3720             <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
3721         </member>
3722         <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3723             <summary>
3724             Writes the specified trace level, message and optional exception.
3725             </summary>
3726             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3727             <param name="message">The trace message.</param>
3728             <param name="ex">The trace exception. This parameter is optional.</param>
3729         </member>
3730         <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
3731             <summary>
3732             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
3733             </summary>
3734         </member>
3735         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
3736             <summary>
3737             Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
3738             </summary>
3739             <value>The converter.</value>
3740         </member>
3741         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
3742             <summary>
3743             Gets or sets a value indicating whether the collection items preserve object references.
3744             </summary>
3745             <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
3746         </member>
3747         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
3748             <summary>
3749             Gets or sets the collection item reference loop handling.
3750             </summary>
3751             <value>The reference loop handling.</value>
3752         </member>
3753         <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
3754             <summary>
3755             Gets or sets the collection item type name handling.
3756             </summary>
3757             <value>The type name handling.</value>
3758         </member>
3759         <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
3760             <summary>
3761             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
3762             </summary>
3763             <param name="underlyingType">The underlying type for the contract.</param>
3764         </member>
3765         <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
3766             <summary>
3767             Represents a trace writer that writes to memory. When the trace message limit is
3768             reached then old trace messages will be removed as new messages are added.
3769             </summary>
3770         </member>
3771         <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
3772             <summary>
3773             Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3774             For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
3775             <code>Warning</code> and <code>Error</code> messages.
3776             </summary>
3777             <value>
3778             The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
3779             </value>
3780         </member>
3781         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
3782             <summary>
3783             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
3784             </summary>
3785         </member>
3786         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
3787             <summary>
3788             Writes the specified trace level, message and optional exception.
3789             </summary>
3790             <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
3791             <param name="message">The trace message.</param>
3792             <param name="ex">The trace exception. This parameter is optional.</param>
3793         </member>
3794         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
3795             <summary>
3796             Returns an enumeration of the most recent trace messages.
3797             </summary>
3798             <returns>An enumeration of the most recent trace messages.</returns>
3799         </member>
3800         <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
3801             <summary>
3802             Returns a <see cref="T:System.String"/> of the most recent trace messages.
3803             </summary>
3804             <returns>
3805             A <see cref="T:System.String"/> of the most recent trace messages.
3806             </returns>
3807         </member>
3808         <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
3809             <summary>
3810             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"/>.
3811             </summary>
3812         </member>
3813         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
3814             <summary>
3815             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
3816             </summary>
3817             <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>
3818         </member>
3819         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
3820             <summary>
3821             Returns a collection of all of the attributes, or an empty collection if there are no attributes.
3822             </summary>
3823             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3824             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3825         </member>
3826         <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
3827             <summary>
3828             Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
3829             </summary>
3830             <param name="attributeType">The type of the attributes.</param>
3831             <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
3832             <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
3833         </member>
3834         <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
3835             <summary>
3836             Resolves member mappings for a type, camel casing property names.
3837             </summary>
3838         </member>
3839         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
3840             <summary>
3841             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
3842             </summary>
3843         </member>
3844         <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
3845             <summary>
3846             Resolves the name of the property.
3847             </summary>
3848             <param name="propertyName">Name of the property.</param>
3849             <returns>The property name camel cased.</returns>
3850         </member>
3851         <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
3852             <summary>
3853             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"/>.
3854             </summary>
3855         </member>
3856         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
3857             <summary>
3858             Gets a value indicating whether members are being get and set using dynamic code generation.
3859             This value is determined by the runtime permissions available.
3860             </summary>
3861             <value>
3862                 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
3863             </value>
3864         </member>
3865         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
3866             <summary>
3867             Gets or sets the default members search flags.
3868             </summary>
3869             <value>The default members search flags.</value>
3870         </member>
3871         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
3872             <summary>
3873             Gets or sets a value indicating whether compiler generated members should be serialized.
3874             </summary>
3875             <value>
3876                 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
3877             </value>
3878         </member>
3879         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
3880             <summary>
3881             Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
3882             </summary>
3883             <value>
3884                 <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>.
3885             </value>
3886         </member>
3887         <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
3888             <summary>
3889             Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
3890             </summary>
3891             <value>
3892                 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
3893             </value>
3894         </member>
3895         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
3896             <summary>
3897             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
3898             </summary>
3899         </member>
3900         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
3901             <summary>
3902             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
3903             </summary>
3904             <param name="shareCache">
3905             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.
3906             Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
3907             happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
3908             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"/>.
3909             </param>
3910         </member>
3911         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
3912             <summary>
3913             Resolves the contract for a given type.
3914             </summary>
3915             <param name="type">The type to resolve a contract for.</param>
3916             <returns>The contract for a given type.</returns>
3917         </member>
3918         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
3919             <summary>
3920             Gets the serializable members for the type.
3921             </summary>
3922             <param name="objectType">The type to get serializable members for.</param>
3923             <returns>The serializable members for the type.</returns>
3924         </member>
3925         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
3926             <summary>
3927             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
3928             </summary>
3929             <param name="objectType">Type of the object.</param>
3930             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
3931         </member>
3932         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
3933             <summary>
3934             Creates the constructor parameters.
3935             </summary>
3936             <param name="constructor">The constructor to create properties for.</param>
3937             <param name="memberProperties">The type's member properties.</param>
3938             <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
3939         </member>
3940         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
3941             <summary>
3942             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
3943             </summary>
3944             <param name="matchingMemberProperty">The matching member property.</param>
3945             <param name="parameterInfo">The constructor parameter.</param>
3946             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
3947         </member>
3948         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
3949             <summary>
3950             Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
3951             </summary>
3952             <param name="objectType">Type of the object.</param>
3953             <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
3954         </member>
3955         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
3956             <summary>
3957             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
3958             </summary>
3959             <param name="objectType">Type of the object.</param>
3960             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
3961         </member>
3962         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
3963             <summary>
3964             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
3965             </summary>
3966             <param name="objectType">Type of the object.</param>
3967             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
3968         </member>
3969         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
3970             <summary>
3971             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
3972             </summary>
3973             <param name="objectType">Type of the object.</param>
3974             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
3975         </member>
3976         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
3977             <summary>
3978             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
3979             </summary>
3980             <param name="objectType">Type of the object.</param>
3981             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
3982         </member>
3983         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
3984             <summary>
3985             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
3986             </summary>
3987             <param name="objectType">Type of the object.</param>
3988             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
3989         </member>
3990         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
3991             <summary>
3992             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
3993             </summary>
3994             <param name="objectType">Type of the object.</param>
3995             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
3996         </member>
3997         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
3998             <summary>
3999             Determines which contract type is created for the given type.
4000             </summary>
4001             <param name="objectType">Type of the object.</param>
4002             <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
4003         </member>
4004         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
4005             <summary>
4006             Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
4007             </summary>
4008             <param name="type">The type to create properties for.</param>
4009             /// <param name="memberSerialization">The member serialization mode for the type.</param>
4010             <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
4011         </member>
4012         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
4013             <summary>
4014             Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
4015             </summary>
4016             <param name="member">The member.</param>
4017             <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
4018         </member>
4019         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
4020             <summary>
4021             Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
4022             </summary>
4023             <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
4024             <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
4025             <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
4026         </member>
4027         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
4028             <summary>
4029             Resolves the name of the property.
4030             </summary>
4031             <param name="propertyName">Name of the property.</param>
4032             <returns>Resolved name of the property.</returns>
4033         </member>
4034         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
4035             <summary>
4036             Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
4037             </summary>
4038             <param name="dictionaryKey">Key of the dictionary.</param>
4039             <returns>Resolved key of the dictionary.</returns>
4040         </member>
4041         <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
4042             <summary>
4043             Gets the resolved name of the property.
4044             </summary>
4045             <param name="propertyName">Name of the property.</param>
4046             <returns>Name of the property.</returns>
4047         </member>
4048         <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
4049             <summary>
4050             The default serialization binder used when resolving and loading classes from type names.
4051             </summary>
4052         </member>
4053         <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
4054             <summary>
4055             When overridden in a derived class, controls the binding of a serialized object to a type.
4056             </summary>
4057             <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
4058             <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
4059             <returns>
4060             The type of the object the formatter creates a new instance of.
4061             </returns>
4062         </member>
4063         <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
4064             <summary>
4065             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
4066             </summary>
4067         </member>
4068         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
4069             <summary>
4070             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
4071             </summary>
4072             <param name="memberInfo">The member info.</param>
4073         </member>
4074         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
4075             <summary>
4076             Sets the value.
4077             </summary>
4078             <param name="target">The target to set the value on.</param>
4079             <param name="value">The value to set on the target.</param>
4080         </member>
4081         <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
4082             <summary>
4083             Gets the value.
4084             </summary>
4085             <param name="target">The target to get the value from.</param>
4086             <returns>The value.</returns>
4087         </member>
4088         <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
4089             <summary>
4090             Provides information surrounding an error.
4091             </summary>
4092         </member>
4093         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
4094             <summary>
4095             Gets the error.
4096             </summary>
4097             <value>The error.</value>
4098         </member>
4099         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
4100             <summary>
4101             Gets the original object that caused the error.
4102             </summary>
4103             <value>The original object that caused the error.</value>
4104         </member>
4105         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
4106             <summary>
4107             Gets the member that caused the error.
4108             </summary>
4109             <value>The member that caused the error.</value>
4110         </member>
4111         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
4112             <summary>
4113             Gets the path of the JSON location where the error occurred.
4114             </summary>
4115             <value>The path of the JSON location where the error occurred.</value>
4116         </member>
4117         <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
4118             <summary>
4119             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
4120             </summary>
4121             <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
4122         </member>
4123         <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
4124             <summary>
4125             Provides data for the Error event.
4126             </summary>
4127         </member>
4128         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
4129             <summary>
4130             Gets the current object the error event is being raised against.
4131             </summary>
4132             <value>The current object the error event is being raised against.</value>
4133         </member>
4134         <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
4135             <summary>
4136             Gets the error context.
4137             </summary>
4138             <value>The error context.</value>
4139         </member>
4140         <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
4141             <summary>
4142             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
4143             </summary>
4144             <param name="currentObject">The current object.</param>
4145             <param name="errorContext">The error context.</param>
4146         </member>
4147         <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
4148             <summary>
4149             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"/>.
4150             </summary>
4151             <example>
4152               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
4153               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
4154             </example>
4155         </member>
4156         <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
4157             <summary>
4158             Resolves the contract for a given type.
4159             </summary>
4160             <param name="type">The type to resolve a contract for.</param>
4161             <returns>The contract for a given type.</returns>
4162         </member>
4163         <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
4164             <summary>
4165             Provides methods to get and set values.
4166             </summary>
4167         </member>
4168         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
4169             <summary>
4170             Sets the value.
4171             </summary>
4172             <param name="target">The target to set the value on.</param>
4173             <param name="value">The value to set on the target.</param>
4174         </member>
4175         <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
4176             <summary>
4177             Gets the value.
4178             </summary>
4179             <param name="target">The target to get the value from.</param>
4180             <returns>The value.</returns>
4181         </member>
4182         <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
4183             <summary>
4184             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4185             </summary>
4186         </member>
4187         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
4188             <summary>
4189             Gets the <see cref="T:System.Type"/> of the collection items.
4190             </summary>
4191             <value>The <see cref="T:System.Type"/> of the collection items.</value>
4192         </member>
4193         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
4194             <summary>
4195             Gets a value indicating whether the collection type is a multidimensional array.
4196             </summary>
4197             <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
4198         </member>
4199         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
4200             <summary>
4201             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4202             </summary>
4203             <value>The function used to create the object.</value>
4204         </member>
4205         <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
4206             <summary>
4207             Gets a value indicating whether the creator has a parameter with the collection values.
4208             </summary>
4209             <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
4210         </member>
4211         <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
4212             <summary>
4213             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
4214             </summary>
4215             <param name="underlyingType">The underlying type for the contract.</param>
4216         </member>
4217         <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
4218             <summary>
4219             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
4220             </summary>
4221             <param name="o">The object that raised the callback event.</param>
4222             <param name="context">The streaming context.</param>
4223         </member>
4224         <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
4225             <summary>
4226             Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
4227             </summary>
4228             <param name="o">The object that raised the callback event.</param>
4229             <param name="context">The streaming context.</param>
4230             <param name="errorContext">The error context.</param>
4231         </member>
4232         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
4233             <summary>
4234             Sets extension data for an object during deserialization.
4235             </summary>
4236             <param name="o">The object to set extension data on.</param>
4237             <param name="key">The extension data key.</param>
4238             <param name="value">The extension data value.</param>
4239         </member>
4240         <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
4241             <summary>
4242             Gets extension data for an object during serialization.
4243             </summary>
4244             <param name="o">The object to set extension data on.</param>
4245         </member>
4246         <member name="T:Newtonsoft.Json.Serialization.JsonContract">
4247             <summary>
4248             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4249             </summary>
4250         </member>
4251         <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
4252             <summary>
4253             Gets the underlying type for the contract.
4254             </summary>
4255             <value>The underlying type for the contract.</value>
4256         </member>
4257         <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
4258             <summary>
4259             Gets or sets the type created during deserialization.
4260             </summary>
4261             <value>The type created during deserialization.</value>
4262         </member>
4263         <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
4264             <summary>
4265             Gets or sets whether this type contract is serialized as a reference.
4266             </summary>
4267             <value>Whether this type contract is serialized as a reference.</value>
4268         </member>
4269         <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
4270             <summary>
4271             Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
4272             </summary>
4273             <value>The converter.</value>
4274         </member>
4275         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
4276             <summary>
4277             Gets or sets all methods called immediately after deserialization of the object.
4278             </summary>
4279             <value>The methods called immediately after deserialization of the object.</value>
4280         </member>
4281         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
4282             <summary>
4283             Gets or sets all methods called during deserialization of the object.
4284             </summary>
4285             <value>The methods called during deserialization of the object.</value>
4286         </member>
4287         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
4288             <summary>
4289             Gets or sets all methods called after serialization of the object graph.
4290             </summary>
4291             <value>The methods called after serialization of the object graph.</value>
4292         </member>
4293         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
4294             <summary>
4295             Gets or sets all methods called before serialization of the object.
4296             </summary>
4297             <value>The methods called before serialization of the object.</value>
4298         </member>
4299         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
4300             <summary>
4301             Gets or sets all method called when an error is thrown during the serialization of the object.
4302             </summary>
4303             <value>The methods called when an error is thrown during the serialization of the object.</value>
4304         </member>
4305         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
4306             <summary>
4307             Gets or sets the method called immediately after deserialization of the object.
4308             </summary>
4309             <value>The method called immediately after deserialization of the object.</value>
4310         </member>
4311         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
4312             <summary>
4313             Gets or sets the method called during deserialization of the object.
4314             </summary>
4315             <value>The method called during deserialization of the object.</value>
4316         </member>
4317         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
4318             <summary>
4319             Gets or sets the method called after serialization of the object graph.
4320             </summary>
4321             <value>The method called after serialization of the object graph.</value>
4322         </member>
4323         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
4324             <summary>
4325             Gets or sets the method called before serialization of the object.
4326             </summary>
4327             <value>The method called before serialization of the object.</value>
4328         </member>
4329         <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
4330             <summary>
4331             Gets or sets the method called when an error is thrown during the serialization of the object.
4332             </summary>
4333             <value>The method called when an error is thrown during the serialization of the object.</value>
4334         </member>
4335         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
4336             <summary>
4337             Gets or sets the default creator method used to create the object.
4338             </summary>
4339             <value>The default creator method used to create the object.</value>
4340         </member>
4341         <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
4342             <summary>
4343             Gets or sets a value indicating whether the default creator is non public.
4344             </summary>
4345             <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
4346         </member>
4347         <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
4348             <summary>
4349             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4350             </summary>
4351         </member>
4352         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
4353             <summary>
4354             Gets or sets the property name resolver.
4355             </summary>
4356             <value>The property name resolver.</value>
4357         </member>
4358         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
4359             <summary>
4360             Gets or sets the dictionary key resolver.
4361             </summary>
4362             <value>The dictionary key resolver.</value>
4363         </member>
4364         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
4365             <summary>
4366             Gets the <see cref="T:System.Type"/> of the dictionary keys.
4367             </summary>
4368             <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
4369         </member>
4370         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
4371             <summary>
4372             Gets the <see cref="T:System.Type"/> of the dictionary values.
4373             </summary>
4374             <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
4375         </member>
4376         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
4377             <summary>
4378             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4379             </summary>
4380             <value>The function used to create the object.</value>
4381         </member>
4382         <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
4383             <summary>
4384             Gets a value indicating whether the creator has a parameter with the dictionary values.
4385             </summary>
4386             <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
4387         </member>
4388         <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
4389             <summary>
4390             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
4391             </summary>
4392             <param name="underlyingType">The underlying type for the contract.</param>
4393         </member>
4394         <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
4395             <summary>
4396             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4397             </summary>
4398         </member>
4399         <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
4400             <summary>
4401             Gets or sets the ISerializable object constructor.
4402             </summary>
4403             <value>The ISerializable object constructor.</value>
4404         </member>
4405         <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
4406             <summary>
4407             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
4408             </summary>
4409             <param name="underlyingType">The underlying type for the contract.</param>
4410         </member>
4411         <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
4412             <summary>
4413             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4414             </summary>
4415         </member>
4416         <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
4417             <summary>
4418             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
4419             </summary>
4420             <param name="underlyingType">The underlying type for the contract.</param>
4421         </member>
4422         <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
4423             <summary>
4424             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4425             </summary>
4426         </member>
4427         <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
4428             <summary>
4429             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
4430             </summary>
4431             <param name="underlyingType">The underlying type for the contract.</param>
4432         </member>
4433         <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
4434             <summary>
4435             Maps a JSON property to a .NET member or constructor parameter.
4436             </summary>
4437         </member>
4438         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
4439             <summary>
4440             Gets or sets the name of the property.
4441             </summary>
4442             <value>The name of the property.</value>
4443         </member>
4444         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
4445             <summary>
4446             Gets or sets the type that declared this property.
4447             </summary>
4448             <value>The type that declared this property.</value>
4449         </member>
4450         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
4451             <summary>
4452             Gets or sets the order of serialization and deserialization of a member.
4453             </summary>
4454             <value>The numeric order of serialization or deserialization.</value>
4455         </member>
4456         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
4457             <summary>
4458             Gets or sets the name of the underlying member or parameter.
4459             </summary>
4460             <value>The name of the underlying member or parameter.</value>
4461         </member>
4462         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
4463             <summary>
4464             Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
4465             </summary>
4466             <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>
4467         </member>
4468         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
4469             <summary>
4470             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
4471             </summary>
4472             <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
4473         </member>
4474         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
4475             <summary>
4476             Gets or sets the type of the property.
4477             </summary>
4478             <value>The type of the property.</value>
4479         </member>
4480         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
4481             <summary>
4482             Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
4483             If set this converter takes presidence over the contract converter for the property type.
4484             </summary>
4485             <value>The converter.</value>
4486         </member>
4487         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
4488             <summary>
4489             Gets or sets the member converter.
4490             </summary>
4491             <value>The member converter.</value>
4492         </member>
4493         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
4494             <summary>
4495             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
4496             </summary>
4497             <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
4498         </member>
4499         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
4500             <summary>
4501             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
4502             </summary>
4503             <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
4504         </member>
4505         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
4506             <summary>
4507             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
4508             </summary>
4509             <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
4510         </member>
4511         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
4512             <summary>
4513             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
4514             </summary>
4515             <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
4516         </member>
4517         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
4518             <summary>
4519             Gets the default value.
4520             </summary>
4521             <value>The default value.</value>
4522         </member>
4523         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
4524             <summary>
4525             Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
4526             </summary>
4527             <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
4528         </member>
4529         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
4530             <summary>
4531             Gets or sets a value indicating whether this property preserves object references.
4532             </summary>
4533             <value>
4534                 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
4535             </value>
4536         </member>
4537         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
4538             <summary>
4539             Gets or sets the property null value handling.
4540             </summary>
4541             <value>The null value handling.</value>
4542         </member>
4543         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
4544             <summary>
4545             Gets or sets the property default value handling.
4546             </summary>
4547             <value>The default value handling.</value>
4548         </member>
4549         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
4550             <summary>
4551             Gets or sets the property reference loop handling.
4552             </summary>
4553             <value>The reference loop handling.</value>
4554         </member>
4555         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
4556             <summary>
4557             Gets or sets the property object creation handling.
4558             </summary>
4559             <value>The object creation handling.</value>
4560         </member>
4561         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
4562             <summary>
4563             Gets or sets or sets the type name handling.
4564             </summary>
4565             <value>The type name handling.</value>
4566         </member>
4567         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
4568             <summary>
4569             Gets or sets a predicate used to determine whether the property should be serialize.
4570             </summary>
4571             <value>A predicate used to determine whether the property should be serialize.</value>
4572         </member>
4573         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
4574             <summary>
4575             Gets or sets a predicate used to determine whether the property should be deserialized.
4576             </summary>
4577             <value>A predicate used to determine whether the property should be deserialized.</value>
4578         </member>
4579         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
4580             <summary>
4581             Gets or sets a predicate used to determine whether the property should be serialized.
4582             </summary>
4583             <value>A predicate used to determine whether the property should be serialized.</value>
4584         </member>
4585         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
4586             <summary>
4587             Gets or sets an action used to set whether the property has been deserialized.
4588             </summary>
4589             <value>An action used to set whether the property has been deserialized.</value>
4590         </member>
4591         <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
4592             <summary>
4593             Returns a <see cref="T:System.String"/> that represents this instance.
4594             </summary>
4595             <returns>
4596             A <see cref="T:System.String"/> that represents this instance.
4597             </returns>
4598         </member>
4599         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
4600             <summary>
4601             Gets or sets the converter used when serializing the property's collection items.
4602             </summary>
4603             <value>The collection's items converter.</value>
4604         </member>
4605         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
4606             <summary>
4607             Gets or sets whether this property's collection items are serialized as a reference.
4608             </summary>
4609             <value>Whether this property's collection items are serialized as a reference.</value>
4610         </member>
4611         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
4612             <summary>
4613             Gets or sets the the type name handling used when serializing the property's collection items.
4614             </summary>
4615             <value>The collection's items type name handling.</value>
4616         </member>
4617         <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
4618             <summary>
4619             Gets or sets the the reference loop handling used when serializing the property's collection items.
4620             </summary>
4621             <value>The collection's items reference loop handling.</value>
4622         </member>
4623         <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
4624             <summary>
4625             A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
4626             </summary>
4627         </member>
4628         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
4629             <summary>
4630             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
4631             </summary>
4632             <param name="type">The type.</param>
4633         </member>
4634         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
4635             <summary>
4636             When implemented in a derived class, extracts the key from the specified element.
4637             </summary>
4638             <param name="item">The element from which to extract the key.</param>
4639             <returns>The key for the specified element.</returns>
4640         </member>
4641         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
4642             <summary>
4643             Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4644             </summary>
4645             <param name="property">The property to add to the collection.</param>
4646         </member>
4647         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
4648             <summary>
4649             Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
4650             First attempts to get an exact case match of propertyName and then
4651             a case insensitive match.
4652             </summary>
4653             <param name="propertyName">Name of the property.</param>
4654             <returns>A matching property if found.</returns>
4655         </member>
4656         <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
4657             <summary>
4658             Gets a property by property name.
4659             </summary>
4660             <param name="propertyName">The name of the property to get.</param>
4661             <param name="comparisonType">Type property name string comparison.</param>
4662             <returns>A matching property if found.</returns>
4663         </member>
4664         <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
4665             <summary>
4666             Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4667             </summary>
4668         </member>
4669         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
4670             <summary>
4671             Resolves a reference to its object.
4672             </summary>
4673             <param name="context">The serialization context.</param>
4674             <param name="reference">The reference to resolve.</param>
4675             <returns>The object that</returns>
4676         </member>
4677         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
4678             <summary>
4679             Gets the reference for the sepecified object.
4680             </summary>
4681             <param name="context">The serialization context.</param>
4682             <param name="value">The object to get a reference for.</param>
4683             <returns>The reference to the object.</returns>
4684         </member>
4685         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
4686             <summary>
4687             Determines whether the specified object is referenced.
4688             </summary>
4689             <param name="context">The serialization context.</param>
4690             <param name="value">The object to test for a reference.</param>
4691             <returns>
4692                 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
4693             </returns>
4694         </member>
4695         <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
4696             <summary>
4697             Adds a reference to the specified object.
4698             </summary>
4699             <param name="context">The serialization context.</param>
4700             <param name="reference">The reference.</param>
4701             <param name="value">The object to reference.</param>
4702         </member>
4703         <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
4704             <summary>
4705             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4706             </summary>
4707         </member>
4708         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
4709             <summary>
4710             Gets or sets the object member serialization.
4711             </summary>
4712             <value>The member object serialization.</value>
4713         </member>
4714         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
4715             <summary>
4716             Gets or sets a value that indicates whether the object's properties are required.
4717             </summary>
4718             <value>
4719                 A value indicating whether the object's properties are required.
4720             </value>
4721         </member>
4722         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
4723             <summary>
4724             Gets the object's properties.
4725             </summary>
4726             <value>The object's properties.</value>
4727         </member>
4728         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
4729             <summary>
4730             Gets the constructor parameters required for any non-default constructor
4731             </summary>
4732         </member>
4733         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
4734             <summary>
4735             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"/>.
4736             </summary>
4737         </member>
4738         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
4739             <summary>
4740             Gets or sets the override constructor used to create the object.
4741             This is set when a constructor is marked up using the
4742             JsonConstructor attribute.
4743             </summary>
4744             <value>The override constructor.</value>
4745         </member>
4746         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
4747             <summary>
4748             Gets or sets the parametrized constructor used to create the object.
4749             </summary>
4750             <value>The parametrized constructor.</value>
4751         </member>
4752         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
4753             <summary>
4754             Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
4755             This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
4756             </summary>
4757             <value>The function used to create the object.</value>
4758         </member>
4759         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
4760             <summary>
4761             Gets or sets the extension data setter.
4762             </summary>
4763         </member>
4764         <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
4765             <summary>
4766             Gets or sets the extension data getter.
4767             </summary>
4768         </member>
4769         <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
4770             <summary>
4771             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
4772             </summary>
4773             <param name="underlyingType">The underlying type for the contract.</param>
4774         </member>
4775         <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
4776             <summary>
4777             Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
4778             </summary>
4779         </member>
4780         <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
4781             <summary>
4782             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
4783             </summary>
4784             <param name="underlyingType">The underlying type for the contract.</param>
4785         </member>
4786         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
4787             <summary>
4788             Lookup and create an instance of the JsonConverter type described by the argument.
4789             </summary>
4790             <param name="converterType">The JsonConverter type to create.</param>
4791             <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
4792             If null, the default constructor is used.</param>
4793         </member>
4794         <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)">
4795             <summary>
4796             Create a factory function that can be used to create instances of a JsonConverter described by the 
4797             argument type.  The returned function can then be used to either invoke the converter's default ctor, or any 
4798             parameterized constructors by way of an object array.
4799             </summary>
4800         </member>
4801         <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
4802             <summary>
4803             Represents a method that constructs an object.
4804             </summary>
4805             <typeparam name="T">The object type to create.</typeparam>
4806         </member>
4807         <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
4808             <summary>
4809             When applied to a method, specifies that the method is called when an error occurs serializing an object.
4810             </summary>
4811         </member>
4812         <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
4813             <summary>
4814             Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
4815             </summary>
4816         </member>
4817         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
4818             <summary>
4819             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
4820             </summary>
4821             <param name="memberInfo">The member info.</param>
4822         </member>
4823         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
4824             <summary>
4825             Sets the value.
4826             </summary>
4827             <param name="target">The target to set the value on.</param>
4828             <param name="value">The value to set on the target.</param>
4829         </member>
4830         <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
4831             <summary>
4832             Gets the value.
4833             </summary>
4834             <param name="target">The target to get the value from.</param>
4835             <returns>The value.</returns>
4836         </member>
4837         <member name="T:Newtonsoft.Json.StringEscapeHandling">
4838             <summary>
4839             Specifies how strings are escaped when writing JSON text.
4840             </summary>
4841         </member>
4842         <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
4843             <summary>
4844             Only control characters (e.g. newline) are escaped.
4845             </summary>
4846         </member>
4847         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
4848             <summary>
4849             All non-ASCII and control characters (e.g. newline) are escaped.
4850             </summary>
4851         </member>
4852         <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
4853             <summary>
4854             HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
4855             </summary>
4856         </member>
4857         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Enumerable">
4858             <summary>
4859             Provides a set of static (Shared in Visual Basic) methods for 
4860             querying objects that implement <see cref="T:System.Collections.Generic.IEnumerable`1" />.
4861             </summary>
4862         </member>
4863         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
4864             <summary>
4865             Returns the input typed as <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
4866             </summary>
4867         </member>
4868         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Empty``1">
4869             <summary>
4870             Returns an empty <see cref="T:System.Collections.Generic.IEnumerable`1"/> that has the 
4871             specified type argument.
4872             </summary>
4873         </member>
4874         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Cast``1(System.Collections.IEnumerable)">
4875             <summary>
4876             Converts the elements of an <see cref="T:System.Collections.IEnumerable"/> to the 
4877             specified type.
4878             </summary>
4879         </member>
4880         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OfType``1(System.Collections.IEnumerable)">
4881             <summary>
4882             Filters the elements of an <see cref="T:System.Collections.IEnumerable"/> based on a specified type.
4883             </summary>
4884         </member>
4885         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Range(System.Int32,System.Int32)">
4886             <summary>
4887             Generates a sequence of integral numbers within a specified range.
4888             </summary>
4889             <param name="start">The value of the first integer in the sequence.</param>
4890             <param name="count">The number of sequential integers to generate.</param>
4891         </member>
4892         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Repeat``1(``0,System.Int32)">
4893             <summary>
4894             Generates a sequence that contains one repeated value.
4895             </summary>
4896         </member>
4897         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
4898             <summary>
4899             Filters a sequence of values based on a predicate.
4900             </summary>
4901         </member>
4902         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
4903             <summary>
4904             Filters a sequence of values based on a predicate. 
4905             Each element's index is used in the logic of the predicate function.
4906             </summary>
4907         </member>
4908         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
4909             <summary>
4910             Projects each element of a sequence into a new form.
4911             </summary>
4912         </member>
4913         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,``1})">
4914             <summary>
4915             Projects each element of a sequence into a new form by 
4916             incorporating the element's index.
4917             </summary>
4918         </member>
4919         <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}})">
4920             <summary>
4921             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" /> 
4922             and flattens the resulting sequences into one sequence.
4923             </summary>
4924         </member>
4925         <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}})">
4926             <summary>
4927             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" />, 
4928             and flattens the resulting sequences into one sequence. The 
4929             index of each source element is used in the projected form of 
4930             that element.
4931             </summary>
4932         </member>
4933         <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})">
4934             <summary>
4935             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" />, 
4936             flattens the resulting sequences into one sequence, and invokes 
4937             a result selector function on each element therein.
4938             </summary>
4939         </member>
4940         <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})">
4941             <summary>
4942             Projects each element of a sequence to an <see cref="T:System.Collections.Generic.IEnumerable`1" />, 
4943             flattens the resulting sequences into one sequence, and invokes 
4944             a result selector function on each element therein. The index of 
4945             each source element is used in the intermediate projected form 
4946             of that element.
4947             </summary>
4948         </member>
4949         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
4950             <summary>
4951             Returns elements from a sequence as long as a specified condition is true.
4952             </summary>
4953         </member>
4954         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
4955             <summary>
4956             Returns elements from a sequence as long as a specified condition is true.
4957             The element's index is used in the logic of the predicate function.
4958             </summary>
4959         </member>
4960         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
4961             <summary>
4962             Base implementation of First operator.
4963             </summary>
4964         </member>
4965         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})">
4966             <summary>
4967             Returns the first element of a sequence.
4968             </summary>
4969         </member>
4970         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
4971             <summary>
4972             Returns the first element in a sequence that satisfies a specified condition.
4973             </summary>
4974         </member>
4975         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
4976             <summary>
4977             Returns the first element of a sequence, or a default value if 
4978             the sequence contains no elements.
4979             </summary>
4980         </member>
4981         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
4982             <summary>
4983             Returns the first element of the sequence that satisfies a 
4984             condition or a default value if no such element is found.
4985             </summary>
4986         </member>
4987         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
4988             <summary>
4989             Base implementation of Last operator.
4990             </summary>
4991         </member>
4992         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})">
4993             <summary>
4994             Returns the last element of a sequence.
4995             </summary>
4996         </member>
4997         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
4998             <summary>
4999             Returns the last element of a sequence that satisfies a 
5000             specified condition.
5001             </summary>
5002         </member>
5003         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
5004             <summary>
5005             Returns the last element of a sequence, or a default value if 
5006             the sequence contains no elements.
5007             </summary>
5008         </member>
5009         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5010             <summary>
5011             Returns the last element of a sequence that satisfies a 
5012             condition or a default value if no such element is found.
5013             </summary>
5014         </member>
5015         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})">
5016             <summary>
5017             Base implementation of Single operator.
5018             </summary>
5019         </member>
5020         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})">
5021             <summary>
5022             Returns the only element of a sequence, and throws an exception 
5023             if there is not exactly one element in the sequence.
5024             </summary>
5025         </member>
5026         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5027             <summary>
5028             Returns the only element of a sequence that satisfies a 
5029             specified condition, and throws an exception if more than one 
5030             such element exists.
5031             </summary>
5032         </member>
5033         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})">
5034             <summary>
5035             Returns the only element of a sequence, or a default value if 
5036             the sequence is empty; this method throws an exception if there 
5037             is more than one element in the sequence.
5038             </summary>
5039         </member>
5040         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5041             <summary>
5042             Returns the only element of a sequence that satisfies a 
5043             specified condition or a default value if no such element 
5044             exists; this method throws an exception if more than one element 
5045             satisfies the condition.
5046             </summary>
5047         </member>
5048         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
5049             <summary>
5050             Returns the element at a specified index in a sequence.
5051             </summary>
5052         </member>
5053         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
5054             <summary>
5055             Returns the element at a specified index in a sequence or a 
5056             default value if the index is out of range.
5057             </summary>
5058         </member>
5059         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})">
5060             <summary>
5061             Inverts the order of the elements in a sequence.
5062             </summary>
5063         </member>
5064         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
5065             <summary>
5066             Returns a specified number of contiguous elements from the start 
5067             of a sequence.
5068             </summary>
5069         </member>
5070         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)">
5071             <summary>
5072             Bypasses a specified number of elements in a sequence and then 
5073             returns the remaining elements.
5074             </summary>
5075         </member>
5076         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5077             <summary>
5078             Bypasses elements in a sequence as long as a specified condition 
5079             is true and then returns the remaining elements.
5080             </summary>
5081         </member>
5082         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})">
5083             <summary>
5084             Bypasses elements in a sequence as long as a specified condition 
5085             is true and then returns the remaining elements. The element's 
5086             index is used in the logic of the predicate function.
5087             </summary>
5088         </member>
5089         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})">
5090             <summary>
5091             Returns the number of elements in a sequence.
5092             </summary>
5093         </member>
5094         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5095             <summary>
5096             Returns a number that represents how many elements in the 
5097             specified sequence satisfy a condition.
5098             </summary>
5099         </member>
5100         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})">
5101             <summary>
5102             Returns an <see cref="T:System.Int64"/> that represents the total number 
5103             of elements in a sequence.
5104             </summary>
5105         </member>
5106         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5107             <summary>
5108             Returns an <see cref="T:System.Int64"/> that represents how many elements 
5109             in a sequence satisfy a condition.
5110             </summary>
5111         </member>
5112         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
5113             <summary>
5114             Concatenates two sequences.
5115             </summary>
5116         </member>
5117         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})">
5118             <summary>
5119             Creates a <see cref="T:System.Collections.Generic.List`1"/> from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
5120             </summary>
5121         </member>
5122         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
5123             <summary>
5124             Creates an array from an <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
5125             </summary>
5126         </member>
5127         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})">
5128             <summary>
5129             Returns distinct elements from a sequence by using the default 
5130             equality comparer to compare values.
5131             </summary>
5132         </member>
5133         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
5134             <summary>
5135             Returns distinct elements from a sequence by using a specified 
5136             <see cref="T:System.Collections.Generic.IEqualityComparer`1"/> to compare values.
5137             </summary>
5138         </member>
5139         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5140             <summary>
5141             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" /> from an 
5142             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5143             selector function.
5144             </summary>
5145         </member>
5146         <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})">
5147             <summary>
5148             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" /> from an 
5149             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5150             selector function and a key comparer.
5151             </summary>
5152         </member>
5153         <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})">
5154             <summary>
5155             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" /> from an 
5156             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to specified key 
5157             and element selector functions.
5158             </summary>
5159         </member>
5160         <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})">
5161             <summary>
5162             Creates a <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" /> from an 
5163             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5164             selector function, a comparer and an element selector function.
5165             </summary>
5166         </member>
5167         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5168             <summary>
5169             Groups the elements of a sequence according to a specified key 
5170             selector function.
5171             </summary>
5172         </member>
5173         <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})">
5174             <summary>
5175             Groups the elements of a sequence according to a specified key 
5176             selector function and compares the keys by using a specified 
5177             comparer.
5178             </summary>
5179         </member>
5180         <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})">
5181             <summary>
5182             Groups the elements of a sequence according to a specified key 
5183             selector function and projects the elements for each group by 
5184             using a specified function.
5185             </summary>
5186         </member>
5187         <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})">
5188             <summary>
5189             Groups the elements of a sequence according to a specified key 
5190             selector function and creates a result value from each group and 
5191             its key.
5192             </summary>
5193         </member>
5194         <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})">
5195             <summary>
5196             Groups the elements of a sequence according to a key selector 
5197             function. The keys are compared by using a comparer and each 
5198             group's elements are projected by using a specified function.
5199             </summary>
5200         </member>
5201         <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})">
5202             <summary>
5203             Groups the elements of a sequence according to a specified key 
5204             selector function and creates a result value from each group and 
5205             its key. The elements of each group are projected by using a 
5206             specified function.
5207             </summary>
5208         </member>
5209         <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})">
5210             <summary>
5211             Groups the elements of a sequence according to a specified key 
5212             selector function and creates a result value from each group and 
5213             its key. The keys are compared by using a specified comparer.
5214             </summary>
5215         </member>
5216         <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})">
5217             <summary>
5218             Groups the elements of a sequence according to a specified key 
5219             selector function and creates a result value from each group and 
5220             its key. Key values are compared by using a specified comparer, 
5221             and the elements of each group are projected by using a 
5222             specified function.
5223             </summary>
5224         </member>
5225         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,``0})">
5226             <summary>
5227             Applies an accumulator function over a sequence.
5228             </summary>
5229         </member>
5230         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1})">
5231             <summary>
5232             Applies an accumulator function over a sequence. The specified 
5233             seed value is used as the initial accumulator value.
5234             </summary>
5235         </member>
5236         <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})">
5237             <summary>
5238             Applies an accumulator function over a sequence. The specified 
5239             seed value is used as the initial accumulator value, and the 
5240             specified function is used to select the result value.
5241             </summary>
5242         </member>
5243         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
5244             <summary>
5245             Produces the set union of two sequences by using the default 
5246             equality comparer.
5247             </summary>
5248         </member>
5249         <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})">
5250             <summary>
5251             Produces the set union of two sequences by using a specified 
5252             <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.
5253             </summary>
5254         </member>
5255         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})">
5256             <summary>
5257             Returns the elements of the specified sequence or the type 
5258             parameter's default value in a singleton collection if the 
5259             sequence is empty.
5260             </summary>
5261         </member>
5262         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)">
5263             <summary>
5264             Returns the elements of the specified sequence or the specified 
5265             value in a singleton collection if the sequence is empty.
5266             </summary>
5267         </member>
5268         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5269             <summary>
5270             Determines whether all elements of a sequence satisfy a condition.
5271             </summary>
5272         </member>
5273         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})">
5274             <summary>
5275             Determines whether a sequence contains any elements.
5276             </summary>
5277         </member>
5278         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})">
5279             <summary>
5280             Determines whether any element of a sequence satisfies a 
5281             condition.
5282             </summary>
5283         </member>
5284         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)">
5285             <summary>
5286             Determines whether a sequence contains a specified element by 
5287             using the default equality comparer.
5288             </summary>
5289         </member>
5290         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
5291             <summary>
5292             Determines whether a sequence contains a specified element by 
5293             using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.
5294             </summary>
5295         </member>
5296         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
5297             <summary>
5298             Determines whether two sequences are equal by comparing the 
5299             elements by using the default equality comparer for their type.
5300             </summary>
5301         </member>
5302         <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})">
5303             <summary>
5304             Determines whether two sequences are equal by comparing their 
5305             elements by using a specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" />.
5306             </summary>
5307         </member>
5308         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,System.Boolean})">
5309             <summary>
5310             Base implementation for Min/Max operator.
5311             </summary>
5312         </member>
5313         <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})">
5314             <summary>
5315             Base implementation for Min/Max operator for nullable types.
5316             </summary>
5317         </member>
5318         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})">
5319             <summary>
5320             Returns the minimum value in a generic sequence.
5321             </summary>
5322         </member>
5323         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5324             <summary>
5325             Invokes a transform function on each element of a generic 
5326             sequence and returns the minimum resulting value.
5327             </summary>
5328         </member>
5329         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})">
5330             <summary>
5331             Returns the maximum value in a generic sequence.
5332             </summary>
5333         </member>
5334         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5335             <summary>
5336             Invokes a transform function on each element of a generic 
5337             sequence and returns the maximum resulting value.
5338             </summary>
5339         </member>
5340         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Renumerable``1(System.Collections.Generic.IEnumerator{``0})">
5341             <summary>
5342             Makes an enumerator seen as enumerable once more.
5343             </summary>
5344             <remarks>
5345             The supplied enumerator must have been started. The first element
5346             returned is the element the enumerator was on when passed in.
5347             DO NOT use this method if the caller must be a generator. It is
5348             mostly safe among aggregate operations.
5349             </remarks>
5350         </member>
5351         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5352             <summary>
5353             Sorts the elements of a sequence in ascending order according to a key.
5354             </summary>
5355         </member>
5356         <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})">
5357             <summary>
5358             Sorts the elements of a sequence in ascending order by using a 
5359             specified comparer.
5360             </summary>
5361         </member>
5362         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5363             <summary>
5364             Sorts the elements of a sequence in descending order according to a key.
5365             </summary>
5366         </member>
5367         <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})">
5368             <summary>
5369              Sorts the elements of a sequence in descending order by using a 
5370             specified comparer. 
5371             </summary>
5372         </member>
5373         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5374             <summary>
5375             Performs a subsequent ordering of the elements in a sequence in 
5376             ascending order according to a key.
5377             </summary>
5378         </member>
5379         <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})">
5380             <summary>
5381             Performs a subsequent ordering of the elements in a sequence in 
5382             ascending order by using a specified comparer.
5383             </summary>
5384         </member>
5385         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5386             <summary>
5387             Performs a subsequent ordering of the elements in a sequence in 
5388             descending order, according to a key.
5389             </summary>
5390         </member>
5391         <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})">
5392             <summary>
5393             Performs a subsequent ordering of the elements in a sequence in 
5394             descending order by using a specified comparer.
5395             </summary>
5396         </member>
5397         <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)">
5398             <summary>
5399             Base implementation for Intersect and Except operators.
5400             </summary>
5401         </member>
5402         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
5403             <summary>
5404             Produces the set intersection of two sequences by using the 
5405             default equality comparer to compare values.
5406             </summary>
5407         </member>
5408         <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})">
5409             <summary>
5410             Produces the set intersection of two sequences by using the 
5411             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.
5412             </summary>
5413         </member>
5414         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})">
5415             <summary>
5416             Produces the set difference of two sequences by using the 
5417             default equality comparer to compare values.
5418             </summary>
5419         </member>
5420         <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})">
5421             <summary>
5422             Produces the set difference of two sequences by using the 
5423             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> to compare values.
5424             </summary>
5425         </member>
5426         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})">
5427             <summary>
5428             Creates a <see cref="T:System.Collections.Generic.Dictionary`2" /> from an 
5429             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5430             selector function.
5431             </summary>
5432         </member>
5433         <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})">
5434             <summary>
5435             Creates a <see cref="T:System.Collections.Generic.Dictionary`2" /> from an 
5436             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5437             selector function and key comparer.
5438             </summary>
5439         </member>
5440         <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})">
5441             <summary>
5442             Creates a <see cref="T:System.Collections.Generic.Dictionary`2" /> from an 
5443             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to specified key 
5444             selector and element selector functions.
5445             </summary>
5446         </member>
5447         <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})">
5448             <summary>
5449             Creates a <see cref="T:System.Collections.Generic.Dictionary`2" /> from an 
5450             <see cref="T:System.Collections.Generic.IEnumerable`1" /> according to a specified key 
5451             selector function, a comparer, and an element selector function.
5452             </summary>
5453         </member>
5454         <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})">
5455             <summary>
5456             Correlates the elements of two sequences based on matching keys. 
5457             The default equality comparer is used to compare keys.
5458             </summary>
5459         </member>
5460         <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})">
5461             <summary>
5462             Correlates the elements of two sequences based on matching keys. 
5463             The default equality comparer is used to compare keys. A 
5464             specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> is used to compare keys.
5465             </summary>
5466         </member>
5467         <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})">
5468             <summary>
5469             Correlates the elements of two sequences based on equality of 
5470             keys and groups the results. The default equality comparer is 
5471             used to compare keys.
5472             </summary>
5473         </member>
5474         <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})">
5475             <summary>
5476             Correlates the elements of two sequences based on equality of 
5477             keys and groups the results. The default equality comparer is 
5478             used to compare keys. A specified <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 
5479             is used to compare keys.
5480             </summary>
5481         </member>
5482         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})">
5483             <summary>
5484             Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> values.
5485             </summary>
5486         </member>
5487         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
5488             <summary>
5489             Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> 
5490             values that are obtained by invoking a transform function on 
5491             each element of the input sequence.
5492             </summary>
5493         </member>
5494         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})">
5495             <summary>
5496             Computes the average of a sequence of nullable <see cref="T:System.Int32" /> values.
5497             </summary>
5498         </member>
5499         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})">
5500             <summary>
5501             Computes the average of a sequence of nullable <see cref="T:System.Int32" /> values 
5502             that are obtained by invoking a transform function on each 
5503             element of the input sequence.
5504             </summary>
5505         </member>
5506         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
5507             <summary>
5508             Computes the sum of a sequence of <see cref="T:System.Int32" /> values.
5509             </summary>
5510         </member>
5511         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
5512             <summary>
5513             Computes the sum of a sequence of <see cref="T:System.Int32" /> 
5514             values that are obtained by invoking a transform function on 
5515             each element of the input sequence.
5516             </summary>
5517         </member>
5518         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
5519             <summary>
5520             Computes the average of a sequence of <see cref="T:System.Int32" /> values.
5521             </summary>
5522         </member>
5523         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
5524             <summary>
5525             Computes the average of a sequence of <see cref="T:System.Int32" /> values 
5526             that are obtained by invoking a transform function on each 
5527             element of the input sequence.
5528             </summary>
5529         </member>
5530         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
5531             <summary>
5532             Returns the minimum value in a sequence of nullable 
5533             <see cref="T:System.Int32" /> values.
5534             </summary>
5535         </member>
5536         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
5537             <summary>
5538             Invokes a transform function on each element of a sequence and 
5539             returns the minimum nullable <see cref="T:System.Int32" /> value.
5540             </summary>
5541         </member>
5542         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})">
5543             <summary>
5544             Returns the maximum value in a sequence of nullable 
5545             <see cref="T:System.Int32" /> values.
5546             </summary>
5547         </member>
5548         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})">
5549             <summary>
5550             Invokes a transform function on each element of a sequence and 
5551             returns the maximum nullable <see cref="T:System.Int32" /> value.
5552             </summary>
5553         </member>
5554         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})">
5555             <summary>
5556             Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> values.
5557             </summary>
5558         </member>
5559         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
5560             <summary>
5561             Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> 
5562             values that are obtained by invoking a transform function on 
5563             each element of the input sequence.
5564             </summary>
5565         </member>
5566         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})">
5567             <summary>
5568             Computes the average of a sequence of nullable <see cref="T:System.Int64" /> values.
5569             </summary>
5570         </member>
5571         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})">
5572             <summary>
5573             Computes the average of a sequence of nullable <see cref="T:System.Int64" /> values 
5574             that are obtained by invoking a transform function on each 
5575             element of the input sequence.
5576             </summary>
5577         </member>
5578         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
5579             <summary>
5580             Computes the sum of a sequence of <see cref="T:System.Int64" /> values.
5581             </summary>
5582         </member>
5583         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
5584             <summary>
5585             Computes the sum of a sequence of <see cref="T:System.Int64" /> 
5586             values that are obtained by invoking a transform function on 
5587             each element of the input sequence.
5588             </summary>
5589         </member>
5590         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
5591             <summary>
5592             Computes the average of a sequence of <see cref="T:System.Int64" /> values.
5593             </summary>
5594         </member>
5595         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
5596             <summary>
5597             Computes the average of a sequence of <see cref="T:System.Int64" /> values 
5598             that are obtained by invoking a transform function on each 
5599             element of the input sequence.
5600             </summary>
5601         </member>
5602         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
5603             <summary>
5604             Returns the minimum value in a sequence of nullable 
5605             <see cref="T:System.Int64" /> values.
5606             </summary>
5607         </member>
5608         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
5609             <summary>
5610             Invokes a transform function on each element of a sequence and 
5611             returns the minimum nullable <see cref="T:System.Int64" /> value.
5612             </summary>
5613         </member>
5614         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})">
5615             <summary>
5616             Returns the maximum value in a sequence of nullable 
5617             <see cref="T:System.Int64" /> values.
5618             </summary>
5619         </member>
5620         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})">
5621             <summary>
5622             Invokes a transform function on each element of a sequence and 
5623             returns the maximum nullable <see cref="T:System.Int64" /> value.
5624             </summary>
5625         </member>
5626         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})">
5627             <summary>
5628             Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values.
5629             </summary>
5630         </member>
5631         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
5632             <summary>
5633             Computes the sum of a sequence of nullable <see cref="T:System.Single" /> 
5634             values that are obtained by invoking a transform function on 
5635             each element of the input sequence.
5636             </summary>
5637         </member>
5638         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})">
5639             <summary>
5640             Computes the average of a sequence of nullable <see cref="T:System.Single" /> values.
5641             </summary>
5642         </member>
5643         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})">
5644             <summary>
5645             Computes the average of a sequence of nullable <see cref="T:System.Single" /> values 
5646             that are obtained by invoking a transform function on each 
5647             element of the input sequence.
5648             </summary>
5649         </member>
5650         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
5651             <summary>
5652             Computes the sum of a sequence of <see cref="T:System.Single" /> values.
5653             </summary>
5654         </member>
5655         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
5656             <summary>
5657             Computes the sum of a sequence of <see cref="T:System.Single" /> 
5658             values that are obtained by invoking a transform function on 
5659             each element of the input sequence.
5660             </summary>
5661         </member>
5662         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
5663             <summary>
5664             Computes the average of a sequence of <see cref="T:System.Single" /> values.
5665             </summary>
5666         </member>
5667         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
5668             <summary>
5669             Computes the average of a sequence of <see cref="T:System.Single" /> values 
5670             that are obtained by invoking a transform function on each 
5671             element of the input sequence.
5672             </summary>
5673         </member>
5674         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
5675             <summary>
5676             Returns the minimum value in a sequence of nullable 
5677             <see cref="T:System.Single" /> values.
5678             </summary>
5679         </member>
5680         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
5681             <summary>
5682             Invokes a transform function on each element of a sequence and 
5683             returns the minimum nullable <see cref="T:System.Single" /> value.
5684             </summary>
5685         </member>
5686         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})">
5687             <summary>
5688             Returns the maximum value in a sequence of nullable 
5689             <see cref="T:System.Single" /> values.
5690             </summary>
5691         </member>
5692         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})">
5693             <summary>
5694             Invokes a transform function on each element of a sequence and 
5695             returns the maximum nullable <see cref="T:System.Single" /> value.
5696             </summary>
5697         </member>
5698         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})">
5699             <summary>
5700             Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values.
5701             </summary>
5702         </member>
5703         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
5704             <summary>
5705             Computes the sum of a sequence of nullable <see cref="T:System.Double" /> 
5706             values that are obtained by invoking a transform function on 
5707             each element of the input sequence.
5708             </summary>
5709         </member>
5710         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})">
5711             <summary>
5712             Computes the average of a sequence of nullable <see cref="T:System.Double" /> values.
5713             </summary>
5714         </member>
5715         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})">
5716             <summary>
5717             Computes the average of a sequence of nullable <see cref="T:System.Double" /> values 
5718             that are obtained by invoking a transform function on each 
5719             element of the input sequence.
5720             </summary>
5721         </member>
5722         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
5723             <summary>
5724             Computes the sum of a sequence of <see cref="T:System.Double" /> values.
5725             </summary>
5726         </member>
5727         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
5728             <summary>
5729             Computes the sum of a sequence of <see cref="T:System.Double" /> 
5730             values that are obtained by invoking a transform function on 
5731             each element of the input sequence.
5732             </summary>
5733         </member>
5734         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
5735             <summary>
5736             Computes the average of a sequence of <see cref="T:System.Double" /> values.
5737             </summary>
5738         </member>
5739         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
5740             <summary>
5741             Computes the average of a sequence of <see cref="T:System.Double" /> values 
5742             that are obtained by invoking a transform function on each 
5743             element of the input sequence.
5744             </summary>
5745         </member>
5746         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
5747             <summary>
5748             Returns the minimum value in a sequence of nullable 
5749             <see cref="T:System.Double" /> values.
5750             </summary>
5751         </member>
5752         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
5753             <summary>
5754             Invokes a transform function on each element of a sequence and 
5755             returns the minimum nullable <see cref="T:System.Double" /> value.
5756             </summary>
5757         </member>
5758         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})">
5759             <summary>
5760             Returns the maximum value in a sequence of nullable 
5761             <see cref="T:System.Double" /> values.
5762             </summary>
5763         </member>
5764         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})">
5765             <summary>
5766             Invokes a transform function on each element of a sequence and 
5767             returns the maximum nullable <see cref="T:System.Double" /> value.
5768             </summary>
5769         </member>
5770         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})">
5771             <summary>
5772             Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> values.
5773             </summary>
5774         </member>
5775         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
5776             <summary>
5777             Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> 
5778             values that are obtained by invoking a transform function on 
5779             each element of the input sequence.
5780             </summary>
5781         </member>
5782         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})">
5783             <summary>
5784             Computes the average of a sequence of nullable <see cref="T:System.Decimal" /> values.
5785             </summary>
5786         </member>
5787         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})">
5788             <summary>
5789             Computes the average of a sequence of nullable <see cref="T:System.Decimal" /> values 
5790             that are obtained by invoking a transform function on each 
5791             element of the input sequence.
5792             </summary>
5793         </member>
5794         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
5795             <summary>
5796             Computes the sum of a sequence of <see cref="T:System.Decimal" /> values.
5797             </summary>
5798         </member>
5799         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
5800             <summary>
5801             Computes the sum of a sequence of <see cref="T:System.Decimal" /> 
5802             values that are obtained by invoking a transform function on 
5803             each element of the input sequence.
5804             </summary>
5805         </member>
5806         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
5807             <summary>
5808             Computes the average of a sequence of <see cref="T:System.Decimal" /> values.
5809             </summary>
5810         </member>
5811         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
5812             <summary>
5813             Computes the average of a sequence of <see cref="T:System.Decimal" /> values 
5814             that are obtained by invoking a transform function on each 
5815             element of the input sequence.
5816             </summary>
5817         </member>
5818         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
5819             <summary>
5820             Returns the minimum value in a sequence of nullable 
5821             <see cref="T:System.Decimal" /> values.
5822             </summary>
5823         </member>
5824         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
5825             <summary>
5826             Invokes a transform function on each element of a sequence and 
5827             returns the minimum nullable <see cref="T:System.Decimal" /> value.
5828             </summary>
5829         </member>
5830         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})">
5831             <summary>
5832             Returns the maximum value in a sequence of nullable 
5833             <see cref="T:System.Decimal" /> values.
5834             </summary>
5835         </member>
5836         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})">
5837             <summary>
5838             Invokes a transform function on each element of a sequence and 
5839             returns the maximum nullable <see cref="T:System.Decimal" /> value.
5840             </summary>
5841         </member>
5842         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2">
5843             <summary>
5844             Represents a collection of objects that have a common key.
5845             </summary>
5846         </member>
5847         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2.Key">
5848             <summary>
5849             Gets the key of the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2" />.
5850             </summary>
5851         </member>
5852         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.ILookup`2">
5853             <summary>
5854             Defines an indexer, size property, and Boolean search method for 
5855             data structures that map keys to <see cref="T:System.Collections.Generic.IEnumerable`1"/> 
5856             sequences of values.
5857             </summary>
5858         </member>
5859         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1">
5860             <summary>
5861             Represents a sorted sequence.
5862             </summary>
5863         </member>
5864         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1.CreateOrderedEnumerable``1(Newtonsoft.Json.Serialization.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)">
5865             <summary>
5866             Performs a subsequent ordering on the elements of an 
5867             <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1"/> according to a key.
5868             </summary>
5869         </member>
5870         <member name="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2">
5871             <summary>
5872             Represents a collection of keys each mapped to one or more values.
5873             </summary>
5874         </member>
5875         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Count">
5876             <summary>
5877             Gets the number of key/value collection pairs in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" />.
5878             </summary>
5879         </member>
5880         <member name="P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Item(`0)">
5881             <summary>
5882             Gets the collection of values indexed by the specified key.
5883             </summary>
5884         </member>
5885         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Contains(`0)">
5886             <summary>
5887             Determines whether a specified key is in the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" />.
5888             </summary>
5889         </member>
5890         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.ApplyResultSelector``1(Newtonsoft.Json.Serialization.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})">
5891             <summary>
5892             Applies a transform function to each key and its associated 
5893             values and returns the results.
5894             </summary>
5895         </member>
5896         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.GetEnumerator">
5897             <summary>
5898             Returns a generic enumerator that iterates through the <see cref="T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2" />.
5899             </summary>
5900         </member>
5901         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.TagPosition(`0,System.Int32)">
5902             <remarks>
5903             See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
5904             for why this method is needed and cannot be expressed as a 
5905             lambda at the call site.
5906             </remarks>
5907         </member>
5908         <member name="M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.GetFirst(Newtonsoft.Json.Utilities.LinqBridge.Tuple{`0,System.Int32})">
5909             <remarks>
5910             See <a href="http://code.google.com/p/linqbridge/issues/detail?id=11">issue #11</a>
5911             for why this method is needed and cannot be expressed as a 
5912             lambda at the call site.
5913             </remarks>
5914         </member>
5915         <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
5916             <summary>
5917             Converts the value to the specified type. If the value is unable to be converted, the
5918             value is checked whether it assignable to the specified type.
5919             </summary>
5920             <param name="initialValue">The value to convert.</param>
5921             <param name="culture">The culture to use when converting.</param>
5922             <param name="targetType">The type to convert or cast the value to.</param>
5923             <returns>
5924             The converted type. If conversion was unsuccessful, the initial value
5925             is returned if assignable to the target type.
5926             </returns>
5927         </member>
5928         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
5929             <summary>
5930             Gets a dictionary of the names and values of an Enum type.
5931             </summary>
5932             <returns></returns>
5933         </member>
5934         <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
5935             <summary>
5936             Gets a dictionary of the names and values of an Enum type.
5937             </summary>
5938             <param name="enumType">The enum type to get names and values for.</param>
5939             <returns></returns>
5940         </member>
5941         <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
5942             <summary>
5943             Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
5944             </summary>
5945         </member>
5946         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
5947             <summary>
5948             Determines whether the collection is null or empty.
5949             </summary>
5950             <param name="collection">The collection.</param>
5951             <returns>
5952                 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
5953             </returns>
5954         </member>
5955         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
5956             <summary>
5957             Adds the elements of the specified collection to the specified generic IList.
5958             </summary>
5959             <param name="initial">The list to add to.</param>
5960             <param name="collection">The collection of elements to add.</param>
5961         </member>
5962         <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
5963             <summary>
5964             Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer{TSource}.
5965             </summary>
5966             <typeparam name="TSource">The type of the elements of source.</typeparam>
5967             <param name="list">A sequence in which to locate a value.</param>
5968             <param name="value">The object to locate in the sequence</param>
5969             <param name="comparer">An equality comparer to compare values.</param>
5970             <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, â€“1.</returns>
5971         </member>
5972         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
5973             <summary>
5974             Gets the type of the typed collection's items.
5975             </summary>
5976             <param name="type">The type.</param>
5977             <returns>The type of the typed collection's items.</returns>
5978         </member>
5979         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
5980             <summary>
5981             Gets the member's underlying type.
5982             </summary>
5983             <param name="member">The member.</param>
5984             <returns>The underlying type of the member.</returns>
5985         </member>
5986         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
5987             <summary>
5988             Determines whether the member is an indexed property.
5989             </summary>
5990             <param name="member">The member.</param>
5991             <returns>
5992                 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
5993             </returns>
5994         </member>
5995         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
5996             <summary>
5997             Determines whether the property is an indexed property.
5998             </summary>
5999             <param name="property">The property.</param>
6000             <returns>
6001                 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
6002             </returns>
6003         </member>
6004         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
6005             <summary>
6006             Gets the member's value on the object.
6007             </summary>
6008             <param name="member">The member.</param>
6009             <param name="target">The target object.</param>
6010             <returns>The member's value on the object.</returns>
6011         </member>
6012         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
6013             <summary>
6014             Sets the member's value on the target object.
6015             </summary>
6016             <param name="member">The member.</param>
6017             <param name="target">The target.</param>
6018             <param name="value">The value.</param>
6019         </member>
6020         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
6021             <summary>
6022             Determines whether the specified MemberInfo can be read.
6023             </summary>
6024             <param name="member">The MemberInfo to determine whether can be read.</param>
6025             /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
6026             <returns>
6027                 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
6028             </returns>
6029         </member>
6030         <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
6031             <summary>
6032             Determines whether the specified MemberInfo can be set.
6033             </summary>
6034             <param name="member">The MemberInfo to determine whether can be set.</param>
6035             <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
6036             <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
6037             <returns>
6038                 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
6039             </returns>
6040         </member>
6041         <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
6042             <summary>
6043             Determines whether the string is all white space. Empty string will return false.
6044             </summary>
6045             <param name="s">The string to test whether it is all white space.</param>
6046             <returns>
6047                 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
6048             </returns>
6049         </member>
6050         <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
6051             <summary>
6052             Nulls an empty string.
6053             </summary>
6054             <param name="s">The string.</param>
6055             <returns>Null if the string was null, otherwise the string unchanged.</returns>
6056         </member>
6057         <member name="T:Newtonsoft.Json.Required">
6058             <summary>
6059             Indicating whether a property is required.
6060             </summary>
6061         </member>
6062         <member name="F:Newtonsoft.Json.Required.Default">
6063             <summary>
6064             The property is not required. The default state.
6065             </summary>
6066         </member>
6067         <member name="F:Newtonsoft.Json.Required.AllowNull">
6068             <summary>
6069             The property must be defined in JSON but can be a null value.
6070             </summary>
6071         </member>
6072         <member name="F:Newtonsoft.Json.Required.Always">
6073             <summary>
6074             The property must be defined in JSON and cannot be a null value.
6075             </summary>
6076         </member>
6077         <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
6078             <summary>
6079             Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6080             Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
6081             </summary>
6082             <example>
6083               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />       
6084             </example>
6085         </member>
6086         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
6087             <summary>
6088             Do not preserve references when serializing types.
6089             </summary>
6090         </member>
6091         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
6092             <summary>
6093             Preserve references when serializing into a JSON object structure.
6094             </summary>
6095         </member>
6096         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
6097             <summary>
6098             Preserve references when serializing into a JSON array structure.
6099             </summary>
6100         </member>
6101         <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
6102             <summary>
6103             Preserve references when serializing.
6104             </summary>
6105         </member>
6106         <member name="T:Newtonsoft.Json.IJsonLineInfo">
6107             <summary>
6108             Provides an interface to enable a class to return line and position information.
6109             </summary>
6110         </member>
6111         <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
6112             <summary>
6113             Gets a value indicating whether the class can return line information.
6114             </summary>
6115             <returns>
6116                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
6117             </returns>
6118         </member>
6119         <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
6120             <summary>
6121             Gets the current line number.
6122             </summary>
6123             <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
6124         </member>
6125         <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
6126             <summary>
6127             Gets the current line position.
6128             </summary>
6129             <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
6130         </member>
6131         <member name="T:Newtonsoft.Json.JsonArrayAttribute">
6132             <summary>
6133             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
6134             </summary>
6135         </member>
6136         <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
6137             <summary>
6138             Gets or sets a value indicating whether null items are allowed in the collection.
6139             </summary>
6140             <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
6141         </member>
6142         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
6143             <summary>
6144             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
6145             </summary>
6146         </member>
6147         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
6148             <summary>
6149             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
6150             </summary>
6151             <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
6152         </member>
6153         <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
6154             <summary>
6155             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
6156             </summary>
6157             <param name="id">The container Id.</param>
6158         </member>
6159         <member name="T:Newtonsoft.Json.JsonContainerAttribute">
6160             <summary>
6161             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
6162             </summary>
6163         </member>
6164         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
6165             <summary>
6166             Gets or sets the id.
6167             </summary>
6168             <value>The id.</value>
6169         </member>
6170         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
6171             <summary>
6172             Gets or sets the title.
6173             </summary>
6174             <value>The title.</value>
6175         </member>
6176         <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
6177             <summary>
6178             Gets or sets the description.
6179             </summary>
6180             <value>The description.</value>
6181         </member>
6182         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
6183             <summary>
6184             Gets the collection's items converter.
6185             </summary>
6186             <value>The collection's items converter.</value>
6187         </member>
6188         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
6189             <summary>
6190             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
6191             If null, the default constructor is used.
6192             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
6193             order, and type of these parameters.
6194             </summary>
6195             <example>
6196             [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
6197             </example>
6198         </member>
6199         <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
6200             <summary>
6201             Gets or sets a value that indicates whether to preserve object references.
6202             </summary>
6203             <value>
6204                 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
6205             </value>
6206         </member>
6207         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
6208             <summary>
6209             Gets or sets a value that indicates whether to preserve collection's items references.
6210             </summary>
6211             <value>
6212                 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
6213             </value>
6214         </member>
6215         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
6216             <summary>
6217             Gets or sets the reference loop handling used when serializing the collection's items.
6218             </summary>
6219             <value>The reference loop handling.</value>
6220         </member>
6221         <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
6222             <summary>
6223             Gets or sets the type name handling used when serializing the collection's items.
6224             </summary>
6225             <value>The type name handling.</value>
6226         </member>
6227         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
6228             <summary>
6229             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
6230             </summary>
6231         </member>
6232         <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
6233             <summary>
6234             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
6235             </summary>
6236             <param name="id">The container Id.</param>
6237         </member>
6238         <member name="T:Newtonsoft.Json.DefaultValueHandling">
6239             <summary>
6240             Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6241             </summary>
6242             <example>
6243               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
6244               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
6245             </example>
6246         </member>
6247         <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
6248             <summary>
6249             Include members where the member value is the same as the member's default value when serializing objects.
6250             Included members are written to JSON. Has no effect when deserializing.
6251             </summary>
6252         </member>
6253         <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
6254             <summary>
6255             Ignore members where the member value is the same as the member's default value when serializing objects
6256             so that is is not written to JSON.
6257             This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
6258             decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
6259             placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
6260             </summary>
6261         </member>
6262         <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
6263             <summary>
6264             Members with a default value but no JSON will be set to their default value when deserializing.
6265             </summary>
6266         </member>
6267         <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
6268             <summary>
6269             Ignore members where the member value is the same as the member's default value when serializing objects
6270             and sets members to their default value when deserializing.
6271             </summary>
6272         </member>
6273         <member name="T:Newtonsoft.Json.JsonConverterAttribute">
6274             <summary>
6275             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
6276             </summary>
6277         </member>
6278         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
6279             <summary>
6280             Gets the <see cref="T:System.Type"/> of the converter.
6281             </summary>
6282             <value>The <see cref="T:System.Type"/> of the converter.</value>
6283         </member>
6284         <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
6285             <summary>
6286             The parameter list to use when constructing the JsonConverter described by ConverterType.  
6287             If null, the default constructor is used.
6288             </summary>
6289         </member>
6290         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
6291             <summary>
6292             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
6293             </summary>
6294             <param name="converterType">Type of the converter.</param>
6295         </member>
6296         <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
6297             <summary>
6298             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
6299             </summary>
6300             <param name="converterType">Type of the converter.</param>
6301             <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param>
6302         </member>
6303         <member name="T:Newtonsoft.Json.JsonObjectAttribute">
6304             <summary>
6305             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
6306             </summary>
6307         </member>
6308         <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
6309             <summary>
6310             Gets or sets the member serialization.
6311             </summary>
6312             <value>The member serialization.</value>
6313         </member>
6314         <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
6315             <summary>
6316             Gets or sets a value that indicates whether the object's properties are required.
6317             </summary>
6318             <value>
6319                 A value indicating whether the object's properties are required.
6320             </value>
6321         </member>
6322         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
6323             <summary>
6324             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
6325             </summary>
6326         </member>
6327         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
6328             <summary>
6329             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
6330             </summary>
6331             <param name="memberSerialization">The member serialization.</param>
6332         </member>
6333         <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
6334             <summary>
6335             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
6336             </summary>
6337             <param name="id">The container Id.</param>
6338         </member>
6339         <member name="T:Newtonsoft.Json.JsonSerializerSettings">
6340             <summary>
6341             Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
6342             </summary>
6343         </member>
6344         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
6345             <summary>
6346             Gets or sets how reference loops (e.g. a class referencing itself) is handled.
6347             </summary>
6348             <value>Reference loop handling.</value>
6349         </member>
6350         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
6351             <summary>
6352             Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
6353             </summary>
6354             <value>Missing member handling.</value>
6355         </member>
6356         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
6357             <summary>
6358             Gets or sets how objects are created during deserialization.
6359             </summary>
6360             <value>The object creation handling.</value>
6361         </member>
6362         <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
6363             <summary>
6364             Gets or sets how null values are handled during serialization and deserialization.
6365             </summary>
6366             <value>Null value handling.</value>
6367         </member>
6368         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
6369             <summary>
6370             Gets or sets how null default are handled during serialization and deserialization.
6371             </summary>
6372             <value>The default value handling.</value>
6373         </member>
6374         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
6375             <summary>
6376             Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
6377             </summary>
6378             <value>The converters.</value>
6379         </member>
6380         <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
6381             <summary>
6382             Gets or sets how object references are preserved by the serializer.
6383             </summary>
6384             <value>The preserve references handling.</value>
6385         </member>
6386         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
6387             <summary>
6388             Gets or sets how type name writing and reading is handled by the serializer.
6389             </summary>
6390             <value>The type name handling.</value>
6391         </member>
6392         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
6393             <summary>
6394             Gets or sets how metadata properties are used during deserialization.
6395             </summary>
6396             <value>The metadata properties handling.</value>
6397         </member>
6398         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
6399             <summary>
6400             Gets or sets how a type name assembly is written and resolved by the serializer.
6401             </summary>
6402             <value>The type name assembly format.</value>
6403         </member>
6404         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
6405             <summary>
6406             Gets or sets how constructors are used during deserialization.
6407             </summary>
6408             <value>The constructor handling.</value>
6409         </member>
6410         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
6411             <summary>
6412             Gets or sets the contract resolver used by the serializer when
6413             serializing .NET objects to JSON and vice versa.
6414             </summary>
6415             <value>The contract resolver.</value>
6416         </member>
6417         <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
6418             <summary>
6419             Gets or sets the equality comparer used by the serializer when comparing references.
6420             </summary>
6421             <value>The equality comparer.</value>
6422         </member>
6423         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
6424             <summary>
6425             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
6426             </summary>
6427             <value>The reference resolver.</value>
6428         </member>
6429         <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
6430             <summary>
6431             Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
6432             </summary>
6433             <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
6434         </member>
6435         <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
6436             <summary>
6437             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
6438             </summary>
6439             <value>The trace writer.</value>
6440         </member>
6441         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
6442             <summary>
6443             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
6444             </summary>
6445             <value>The binder.</value>
6446         </member>
6447         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
6448             <summary>
6449             Gets or sets the error handler called during serialization and deserialization.
6450             </summary>
6451             <value>The error handler called during serialization and deserialization.</value>
6452         </member>
6453         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
6454             <summary>
6455             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
6456             </summary>
6457             <value>The context.</value>
6458         </member>
6459         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
6460             <summary>
6461             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.
6462             </summary>
6463         </member>
6464         <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
6465             <summary>
6466             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
6467             </summary>
6468         </member>
6469         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
6470             <summary>
6471             Indicates how JSON text output is formatted.
6472             </summary>
6473         </member>
6474         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
6475             <summary>
6476             Get or set how dates are written to JSON text.
6477             </summary>
6478         </member>
6479         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
6480             <summary>
6481             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
6482             </summary>
6483         </member>
6484         <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
6485             <summary>
6486             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
6487             </summary>
6488         </member>
6489         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
6490             <summary>
6491             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
6492             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
6493             are written as JSON.
6494             </summary>
6495         </member>
6496         <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
6497             <summary>
6498             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
6499             </summary>
6500         </member>
6501         <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
6502             <summary>
6503             Get or set how strings are escaped when writing JSON text.
6504             </summary>
6505         </member>
6506         <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
6507             <summary>
6508             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
6509             </summary>
6510         </member>
6511         <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
6512             <summary>
6513             Gets a value indicating whether there will be a check for additional content after deserializing an object.
6514             </summary>
6515             <value>
6516                 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
6517             </value>
6518         </member>
6519         <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
6520             <summary>
6521             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
6522             </summary>
6523         </member>
6524         <member name="T:Newtonsoft.Json.JsonValidatingReader">
6525             <summary>
6526             <para>
6527             Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
6528             </para>
6529             <note type="caution">
6530             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.
6531             </note>
6532             </summary>
6533         </member>
6534         <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
6535             <summary>
6536             Sets an event handler for receiving schema validation errors.
6537             </summary>
6538         </member>
6539         <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
6540             <summary>
6541             Gets the text value of the current JSON token.
6542             </summary>
6543             <value></value>
6544         </member>
6545         <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
6546             <summary>
6547             Gets the depth of the current token in the JSON document.
6548             </summary>
6549             <value>The depth of the current token in the JSON document.</value>
6550         </member>
6551         <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
6552             <summary>
6553             Gets the path of the current JSON token. 
6554             </summary>
6555         </member>
6556         <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
6557             <summary>
6558             Gets the quotation mark character used to enclose the value of a string.
6559             </summary>
6560             <value></value>
6561         </member>
6562         <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
6563             <summary>
6564             Gets the type of the current JSON token.
6565             </summary>
6566             <value></value>
6567         </member>
6568         <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
6569             <summary>
6570             Gets the Common Language Runtime (CLR) type for the current JSON token.
6571             </summary>
6572             <value></value>
6573         </member>
6574         <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
6575             <summary>
6576             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
6577             validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
6578             </summary>
6579             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
6580         </member>
6581         <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
6582             <summary>
6583             Gets or sets the schema.
6584             </summary>
6585             <value>The schema.</value>
6586         </member>
6587         <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
6588             <summary>
6589             Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
6590             </summary>
6591             <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
6592         </member>
6593         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
6594             <summary>
6595             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6596             </summary>
6597             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
6598         </member>
6599         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
6600             <summary>
6601             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6602             </summary>
6603             <returns>
6604             A <see cref="T:System.Byte"/>[] or a null reference if the next JSON token is null.
6605             </returns>
6606         </member>
6607         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
6608             <summary>
6609             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6610             </summary>
6611             <returns>A <see cref="T:System.Nullable`1"/>.</returns>
6612         </member>
6613         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
6614             <summary>
6615             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6616             </summary>
6617             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6618         </member>
6619         <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
6620             <summary>
6621             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6622             </summary>
6623             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6624         </member>
6625         <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
6626             <summary>
6627             Reads the next JSON token from the stream.
6628             </summary>
6629             <returns>
6630             true if the next token was read successfully; false if there are no more tokens to read.
6631             </returns>
6632         </member>
6633         <member name="T:Newtonsoft.Json.MemberSerialization">
6634             <summary>
6635             Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6636             </summary>
6637         </member>
6638         <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
6639             <summary>
6640             All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6641             This is the default member serialization mode.
6642             </summary>
6643         </member>
6644         <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
6645             <summary>
6646             Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="!:DataMemberAttribute"/> are serialized.
6647             This member serialization mode can also be set by marking the class with <see cref="!:DataContractAttribute"/>.
6648             </summary>
6649         </member>
6650         <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
6651             <summary>
6652             All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
6653             This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
6654             and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
6655             </summary>
6656         </member>
6657         <member name="T:Newtonsoft.Json.ObjectCreationHandling">
6658             <summary>
6659             Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6660             </summary>
6661         </member>
6662         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
6663             <summary>
6664             Reuse existing objects, create new objects when needed.
6665             </summary>
6666         </member>
6667         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
6668             <summary>
6669             Only reuse existing objects.
6670             </summary>
6671         </member>
6672         <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
6673             <summary>
6674             Always create new objects.
6675             </summary>
6676         </member>
6677         <member name="T:Newtonsoft.Json.JsonTextReader">
6678             <summary>
6679             Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
6680             </summary>
6681         </member>
6682         <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
6683             <summary>
6684             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
6685             </summary>
6686             <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
6687         </member>
6688         <member name="M:Newtonsoft.Json.JsonTextReader.Read">
6689             <summary>
6690             Reads the next JSON token from the stream.
6691             </summary>
6692             <returns>
6693             true if the next token was read successfully; false if there are no more tokens to read.
6694             </returns>
6695         </member>
6696         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
6697             <summary>
6698             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
6699             </summary>
6700             <returns>
6701             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.
6702             </returns>
6703         </member>
6704         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
6705             <summary>
6706             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6707             </summary>
6708             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6709         </member>
6710         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
6711             <summary>
6712             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6713             </summary>
6714             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6715         </member>
6716         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
6717             <summary>
6718             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
6719             </summary>
6720             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6721         </member>
6722         <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
6723             <summary>
6724             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
6725             </summary>
6726             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6727         </member>
6728         <member name="M:Newtonsoft.Json.JsonTextReader.Close">
6729             <summary>
6730             Changes the state to closed. 
6731             </summary>
6732         </member>
6733         <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
6734             <summary>
6735             Gets a value indicating whether the class can return line information.
6736             </summary>
6737             <returns>
6738                 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
6739             </returns>
6740         </member>
6741         <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
6742             <summary>
6743             Gets the current line number.
6744             </summary>
6745             <value>
6746             The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
6747             </value>
6748         </member>
6749         <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
6750             <summary>
6751             Gets the current line position.
6752             </summary>
6753             <value>
6754             The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
6755             </value>
6756         </member>
6757         <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
6758             <summary>
6759             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
6760             </summary>
6761         </member>
6762         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
6763             <summary>
6764             Gets or sets the converter used when serializing the property's collection items.
6765             </summary>
6766             <value>The collection's items converter.</value>
6767         </member>
6768         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
6769             <summary>
6770             The parameter list to use when constructing the JsonConverter described by ItemConverterType.
6771             If null, the default constructor is used.
6772             When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
6773             order, and type of these parameters.
6774             </summary>
6775             <example>
6776             [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
6777             </example>
6778         </member>
6779         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
6780             <summary>
6781             Gets or sets the null value handling used when serializing this property.
6782             </summary>
6783             <value>The null value handling.</value>
6784         </member>
6785         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
6786             <summary>
6787             Gets or sets the default value handling used when serializing this property.
6788             </summary>
6789             <value>The default value handling.</value>
6790         </member>
6791         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
6792             <summary>
6793             Gets or sets the reference loop handling used when serializing this property.
6794             </summary>
6795             <value>The reference loop handling.</value>
6796         </member>
6797         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
6798             <summary>
6799             Gets or sets the object creation handling used when deserializing this property.
6800             </summary>
6801             <value>The object creation handling.</value>
6802         </member>
6803         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
6804             <summary>
6805             Gets or sets the type name handling used when serializing this property.
6806             </summary>
6807             <value>The type name handling.</value>
6808         </member>
6809         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
6810             <summary>
6811             Gets or sets whether this property's value is serialized as a reference.
6812             </summary>
6813             <value>Whether this property's value is serialized as a reference.</value>
6814         </member>
6815         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
6816             <summary>
6817             Gets or sets the order of serialization and deserialization of a member.
6818             </summary>
6819             <value>The numeric order of serialization or deserialization.</value>
6820         </member>
6821         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
6822             <summary>
6823             Gets or sets a value indicating whether this property is required.
6824             </summary>
6825             <value>
6826                 A value indicating whether this property is required.
6827             </value>
6828         </member>
6829         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
6830             <summary>
6831             Gets or sets the name of the property.
6832             </summary>
6833             <value>The name of the property.</value>
6834         </member>
6835         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
6836             <summary>
6837             Gets or sets the the reference loop handling used when serializing the property's collection items.
6838             </summary>
6839             <value>The collection's items reference loop handling.</value>
6840         </member>
6841         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
6842             <summary>
6843             Gets or sets the the type name handling used when serializing the property's collection items.
6844             </summary>
6845             <value>The collection's items type name handling.</value>
6846         </member>
6847         <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
6848             <summary>
6849             Gets or sets whether this property's collection items are serialized as a reference.
6850             </summary>
6851             <value>Whether this property's collection items are serialized as a reference.</value>
6852         </member>
6853         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
6854             <summary>
6855             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
6856             </summary>
6857         </member>
6858         <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
6859             <summary>
6860             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
6861             </summary>
6862             <param name="propertyName">Name of the property.</param>
6863         </member>
6864         <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
6865             <summary>
6866             Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
6867             </summary>
6868         </member>
6869         <member name="T:Newtonsoft.Json.JsonTextWriter">
6870             <summary>
6871             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
6872             </summary>
6873         </member>
6874         <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
6875             <summary>
6876             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>.
6877             </summary>
6878         </member>
6879         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
6880             <summary>
6881             Gets or sets which character to use to quote attribute values.
6882             </summary>
6883         </member>
6884         <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
6885             <summary>
6886             Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
6887             </summary>
6888         </member>
6889         <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
6890             <summary>
6891             Gets or sets a value indicating whether object names will be surrounded with quotes.
6892             </summary>
6893         </member>
6894         <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
6895             <summary>
6896             Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 
6897             </summary>
6898             <param name="textWriter">The <c>TextWriter</c> to write to.</param>
6899         </member>
6900         <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
6901             <summary>
6902             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
6903             </summary>
6904         </member>
6905         <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
6906             <summary>
6907             Closes this stream and the underlying stream.
6908             </summary>
6909         </member>
6910         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
6911             <summary>
6912             Writes the beginning of a JSON object.
6913             </summary>
6914         </member>
6915         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
6916             <summary>
6917             Writes the beginning of a JSON array.
6918             </summary>
6919         </member>
6920         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
6921             <summary>
6922             Writes the start of a constructor with the given name.
6923             </summary>
6924             <param name="name">The name of the constructor.</param>
6925         </member>
6926         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
6927             <summary>
6928             Writes the specified end token.
6929             </summary>
6930             <param name="token">The end token to write.</param>
6931         </member>
6932         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
6933             <summary>
6934             Writes the property name of a name/value pair on a JSON object.
6935             </summary>
6936             <param name="name">The name of the property.</param>
6937         </member>
6938         <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
6939             <summary>
6940             Writes the property name of a name/value pair on a JSON object.
6941             </summary>
6942             <param name="name">The name of the property.</param>
6943             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
6944         </member>
6945         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
6946             <summary>
6947             Writes indent characters.
6948             </summary>
6949         </member>
6950         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
6951             <summary>
6952             Writes the JSON value delimiter.
6953             </summary>
6954         </member>
6955         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
6956             <summary>
6957             Writes an indent space.
6958             </summary>
6959         </member>
6960         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
6961             <summary>
6962             Writes a <see cref="T:System.Object"/> value.
6963             An error will raised if the value cannot be written as a single JSON token.
6964             </summary>
6965             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6966         </member>
6967         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
6968             <summary>
6969             Writes a null value.
6970             </summary>
6971         </member>
6972         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
6973             <summary>
6974             Writes an undefined value.
6975             </summary>
6976         </member>
6977         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
6978             <summary>
6979             Writes raw JSON.
6980             </summary>
6981             <param name="json">The raw JSON to write.</param>
6982         </member>
6983         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
6984             <summary>
6985             Writes a <see cref="T:System.String"/> value.
6986             </summary>
6987             <param name="value">The <see cref="T:System.String"/> value to write.</param>
6988         </member>
6989         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
6990             <summary>
6991             Writes a <see cref="T:System.Int32"/> value.
6992             </summary>
6993             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
6994         </member>
6995         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
6996             <summary>
6997             Writes a <see cref="T:System.UInt32"/> value.
6998             </summary>
6999             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
7000         </member>
7001         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
7002             <summary>
7003             Writes a <see cref="T:System.Int64"/> value.
7004             </summary>
7005             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
7006         </member>
7007         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
7008             <summary>
7009             Writes a <see cref="T:System.UInt64"/> value.
7010             </summary>
7011             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
7012         </member>
7013         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
7014             <summary>
7015             Writes a <see cref="T:System.Single"/> value.
7016             </summary>
7017             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
7018         </member>
7019         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
7020             <summary>
7021             Writes a <see cref="T:System.Nullable`1"/> value.
7022             </summary>
7023             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
7024         </member>
7025         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
7026             <summary>
7027             Writes a <see cref="T:System.Double"/> value.
7028             </summary>
7029             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
7030         </member>
7031         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
7032             <summary>
7033             Writes a <see cref="T:System.Nullable`1"/> value.
7034             </summary>
7035             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
7036         </member>
7037         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
7038             <summary>
7039             Writes a <see cref="T:System.Boolean"/> value.
7040             </summary>
7041             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
7042         </member>
7043         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
7044             <summary>
7045             Writes a <see cref="T:System.Int16"/> value.
7046             </summary>
7047             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
7048         </member>
7049         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
7050             <summary>
7051             Writes a <see cref="T:System.UInt16"/> value.
7052             </summary>
7053             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
7054         </member>
7055         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
7056             <summary>
7057             Writes a <see cref="T:System.Char"/> value.
7058             </summary>
7059             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
7060         </member>
7061         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
7062             <summary>
7063             Writes a <see cref="T:System.Byte"/> value.
7064             </summary>
7065             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
7066         </member>
7067         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
7068             <summary>
7069             Writes a <see cref="T:System.SByte"/> value.
7070             </summary>
7071             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
7072         </member>
7073         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
7074             <summary>
7075             Writes a <see cref="T:System.Decimal"/> value.
7076             </summary>
7077             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
7078         </member>
7079         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
7080             <summary>
7081             Writes a <see cref="T:System.DateTime"/> value.
7082             </summary>
7083             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
7084         </member>
7085         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
7086             <summary>
7087             Writes a <see cref="T:System.Byte"/>[] value.
7088             </summary>
7089             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
7090         </member>
7091         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
7092             <summary>
7093             Writes a <see cref="T:System.Guid"/> value.
7094             </summary>
7095             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
7096         </member>
7097         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
7098             <summary>
7099             Writes a <see cref="T:System.TimeSpan"/> value.
7100             </summary>
7101             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
7102         </member>
7103         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
7104             <summary>
7105             Writes a <see cref="T:System.Uri"/> value.
7106             </summary>
7107             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
7108         </member>
7109         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
7110             <summary>
7111             Writes out a comment <code>/*...*/</code> containing the specified text. 
7112             </summary>
7113             <param name="text">Text to place inside the comment.</param>
7114         </member>
7115         <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
7116             <summary>
7117             Writes out the given white space.
7118             </summary>
7119             <param name="ws">The string of white space characters.</param>
7120         </member>
7121         <member name="T:Newtonsoft.Json.JsonWriterException">
7122             <summary>
7123             The exception thrown when an error occurs while reading JSON text.
7124             </summary>
7125         </member>
7126         <member name="P:Newtonsoft.Json.JsonWriterException.Path">
7127             <summary>
7128             Gets the path to the JSON where the error occurred.
7129             </summary>
7130             <value>The path to the JSON where the error occurred.</value>
7131         </member>
7132         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
7133             <summary>
7134             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
7135             </summary>
7136         </member>
7137         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
7138             <summary>
7139             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
7140             with a specified error message.
7141             </summary>
7142             <param name="message">The error message that explains the reason for the exception.</param>
7143         </member>
7144         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
7145             <summary>
7146             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
7147             with a specified error message and a reference to the inner exception that is the cause of this exception.
7148             </summary>
7149             <param name="message">The error message that explains the reason for the exception.</param>
7150             <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>
7151         </member>
7152         <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7153             <summary>
7154             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
7155             </summary>
7156             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7157             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7158             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7159             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7160         </member>
7161         <member name="T:Newtonsoft.Json.JsonReaderException">
7162             <summary>
7163             The exception thrown when an error occurs while reading JSON text.
7164             </summary>
7165         </member>
7166         <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
7167             <summary>
7168             Gets the line number indicating where the error occurred.
7169             </summary>
7170             <value>The line number indicating where the error occurred.</value>
7171         </member>
7172         <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
7173             <summary>
7174             Gets the line position indicating where the error occurred.
7175             </summary>
7176             <value>The line position indicating where the error occurred.</value>
7177         </member>
7178         <member name="P:Newtonsoft.Json.JsonReaderException.Path">
7179             <summary>
7180             Gets the path to the JSON where the error occurred.
7181             </summary>
7182             <value>The path to the JSON where the error occurred.</value>
7183         </member>
7184         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
7185             <summary>
7186             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
7187             </summary>
7188         </member>
7189         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
7190             <summary>
7191             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
7192             with a specified error message.
7193             </summary>
7194             <param name="message">The error message that explains the reason for the exception.</param>
7195         </member>
7196         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
7197             <summary>
7198             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
7199             with a specified error message and a reference to the inner exception that is the cause of this exception.
7200             </summary>
7201             <param name="message">The error message that explains the reason for the exception.</param>
7202             <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>
7203         </member>
7204         <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7205             <summary>
7206             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
7207             </summary>
7208             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7209             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7210             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
7211             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
7212         </member>
7213         <member name="T:Newtonsoft.Json.JsonConverter">
7214             <summary>
7215             Converts an object to and from JSON.
7216             </summary>
7217         </member>
7218         <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
7219             <summary>
7220             Writes the JSON representation of the object.
7221             </summary>
7222             <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
7223             <param name="value">The value.</param>
7224             <param name="serializer">The calling serializer.</param>
7225         </member>
7226         <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
7227             <summary>
7228             Reads the JSON representation of the object.
7229             </summary>
7230             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
7231             <param name="objectType">Type of the object.</param>
7232             <param name="existingValue">The existing value of object being read.</param>
7233             <param name="serializer">The calling serializer.</param>
7234             <returns>The object value.</returns>
7235         </member>
7236         <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
7237             <summary>
7238             Determines whether this instance can convert the specified object type.
7239             </summary>
7240             <param name="objectType">Type of the object.</param>
7241             <returns>
7242                 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
7243             </returns>
7244         </member>
7245         <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
7246             <summary>
7247             <para>
7248             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
7249             </para>
7250             <note type="caution">
7251             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.
7252             </note>
7253             </summary>
7254             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
7255         </member>
7256         <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
7257             <summary>
7258             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
7259             </summary>
7260             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
7261         </member>
7262         <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
7263             <summary>
7264             Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
7265             </summary>
7266             <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
7267         </member>
7268         <member name="T:Newtonsoft.Json.JsonConverterCollection">
7269             <summary>
7270             Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7271             </summary>
7272         </member>
7273         <member name="T:Newtonsoft.Json.JsonReader">
7274             <summary>
7275             Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
7276             </summary>
7277         </member>
7278         <member name="T:Newtonsoft.Json.JsonReader.State">
7279             <summary>
7280             Specifies the state of the reader.
7281             </summary>
7282         </member>
7283         <member name="F:Newtonsoft.Json.JsonReader.State.Start">
7284             <summary>
7285             The Read method has not been called.
7286             </summary>
7287         </member>
7288         <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
7289             <summary>
7290             The end of the file has been reached successfully.
7291             </summary>
7292         </member>
7293         <member name="F:Newtonsoft.Json.JsonReader.State.Property">
7294             <summary>
7295             Reader is at a property.
7296             </summary>
7297         </member>
7298         <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
7299             <summary>
7300             Reader is at the start of an object.
7301             </summary>
7302         </member>
7303         <member name="F:Newtonsoft.Json.JsonReader.State.Object">
7304             <summary>
7305             Reader is in an object.
7306             </summary>
7307         </member>
7308         <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
7309             <summary>
7310             Reader is at the start of an array.
7311             </summary>
7312         </member>
7313         <member name="F:Newtonsoft.Json.JsonReader.State.Array">
7314             <summary>
7315             Reader is in an array.
7316             </summary>
7317         </member>
7318         <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
7319             <summary>
7320             The Close method has been called.
7321             </summary>
7322         </member>
7323         <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
7324             <summary>
7325             Reader has just read a value.
7326             </summary>
7327         </member>
7328         <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
7329             <summary>
7330             Reader is at the start of a constructor.
7331             </summary>
7332         </member>
7333         <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
7334             <summary>
7335             Reader in a constructor.
7336             </summary>
7337         </member>
7338         <member name="F:Newtonsoft.Json.JsonReader.State.Error">
7339             <summary>
7340             An error occurred that prevents the read operation from continuing.
7341             </summary>
7342         </member>
7343         <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
7344             <summary>
7345             The end of the file has been reached successfully.
7346             </summary>
7347         </member>
7348         <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
7349             <summary>
7350             Gets the current reader state.
7351             </summary>
7352             <value>The current reader state.</value>
7353         </member>
7354         <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
7355             <summary>
7356             Gets or sets a value indicating whether the underlying stream or
7357             <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
7358             </summary>
7359             <value>
7360             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
7361             the reader is closed; otherwise false. The default is true.
7362             </value>
7363         </member>
7364         <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
7365             <summary>
7366             Gets or sets a value indicating whether multiple pieces of JSON content can
7367             be read from a continuous stream without erroring.
7368             </summary>
7369             <value>
7370             true to support reading multiple pieces of JSON content; otherwise false. The default is false.
7371             </value>
7372         </member>
7373         <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
7374             <summary>
7375             Gets the quotation mark character used to enclose the value of a string.
7376             </summary>
7377         </member>
7378         <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
7379             <summary>
7380             Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
7381             </summary>
7382         </member>
7383         <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
7384             <summary>
7385             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
7386             </summary>
7387         </member>
7388         <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
7389             <summary>
7390             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
7391             </summary>
7392         </member>
7393         <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
7394             <summary>
7395             Get or set how custom date formatted strings are parsed when reading JSON.
7396             </summary>
7397         </member>
7398         <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
7399             <summary>
7400             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
7401             </summary>
7402         </member>
7403         <member name="P:Newtonsoft.Json.JsonReader.TokenType">
7404             <summary>
7405             Gets the type of the current JSON token. 
7406             </summary>
7407         </member>
7408         <member name="P:Newtonsoft.Json.JsonReader.Value">
7409             <summary>
7410             Gets the text value of the current JSON token.
7411             </summary>
7412         </member>
7413         <member name="P:Newtonsoft.Json.JsonReader.ValueType">
7414             <summary>
7415             Gets The Common Language Runtime (CLR) type for the current JSON token.
7416             </summary>
7417         </member>
7418         <member name="P:Newtonsoft.Json.JsonReader.Depth">
7419             <summary>
7420             Gets the depth of the current token in the JSON document.
7421             </summary>
7422             <value>The depth of the current token in the JSON document.</value>
7423         </member>
7424         <member name="P:Newtonsoft.Json.JsonReader.Path">
7425             <summary>
7426             Gets the path of the current JSON token. 
7427             </summary>
7428         </member>
7429         <member name="P:Newtonsoft.Json.JsonReader.Culture">
7430             <summary>
7431             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
7432             </summary>
7433         </member>
7434         <member name="M:Newtonsoft.Json.JsonReader.#ctor">
7435             <summary>
7436             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
7437             </summary>
7438         </member>
7439         <member name="M:Newtonsoft.Json.JsonReader.Read">
7440             <summary>
7441             Reads the next JSON token from the stream.
7442             </summary>
7443             <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
7444         </member>
7445         <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
7446             <summary>
7447             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7448             </summary>
7449             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7450         </member>
7451         <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
7452             <summary>
7453             Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
7454             </summary>
7455             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7456         </member>
7457         <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
7458             <summary>
7459             Reads the next JSON token from the stream as a <see cref="T:System.Byte"/>[].
7460             </summary>
7461             <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>
7462         </member>
7463         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
7464             <summary>
7465             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7466             </summary>
7467             <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
7468         </member>
7469         <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
7470             <summary>
7471             Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
7472             </summary>
7473             <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
7474         </member>
7475         <member name="M:Newtonsoft.Json.JsonReader.Skip">
7476             <summary>
7477             Skips the children of the current token.
7478             </summary>
7479         </member>
7480         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
7481             <summary>
7482             Sets the current token.
7483             </summary>
7484             <param name="newToken">The new token.</param>
7485         </member>
7486         <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
7487             <summary>
7488             Sets the current token and value.
7489             </summary>
7490             <param name="newToken">The new token.</param>
7491             <param name="value">The value.</param>
7492         </member>
7493         <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
7494             <summary>
7495             Sets the state based on current token type.
7496             </summary>
7497         </member>
7498         <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
7499             <summary>
7500             Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
7501             </summary>
7502         </member>
7503         <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
7504             <summary>
7505             Releases unmanaged and - optionally - managed resources
7506             </summary>
7507             <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
7508         </member>
7509         <member name="M:Newtonsoft.Json.JsonReader.Close">
7510             <summary>
7511             Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 
7512             </summary>
7513         </member>
7514         <member name="T:Newtonsoft.Json.JsonConvert">
7515             <summary>
7516             Provides methods for converting between common language runtime types and JSON types.
7517             </summary>
7518             <example>
7519               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
7520             </example>
7521         </member>
7522         <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
7523             <summary>
7524             Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7525             Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
7526             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"/>.
7527             To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
7528             <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
7529             </summary>
7530         </member>
7531         <member name="F:Newtonsoft.Json.JsonConvert.True">
7532             <summary>
7533             Represents JavaScript's boolean value true as a string. This field is read-only.
7534             </summary>
7535         </member>
7536         <member name="F:Newtonsoft.Json.JsonConvert.False">
7537             <summary>
7538             Represents JavaScript's boolean value false as a string. This field is read-only.
7539             </summary>
7540         </member>
7541         <member name="F:Newtonsoft.Json.JsonConvert.Null">
7542             <summary>
7543             Represents JavaScript's null as a string. This field is read-only.
7544             </summary>
7545         </member>
7546         <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
7547             <summary>
7548             Represents JavaScript's undefined as a string. This field is read-only.
7549             </summary>
7550         </member>
7551         <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
7552             <summary>
7553             Represents JavaScript's positive infinity as a string. This field is read-only.
7554             </summary>
7555         </member>
7556         <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
7557             <summary>
7558             Represents JavaScript's negative infinity as a string. This field is read-only.
7559             </summary>
7560         </member>
7561         <member name="F:Newtonsoft.Json.JsonConvert.NaN">
7562             <summary>
7563             Represents JavaScript's NaN as a string. This field is read-only.
7564             </summary>
7565         </member>
7566         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
7567             <summary>
7568             Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
7569             </summary>
7570             <param name="value">The value to convert.</param>
7571             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
7572         </member>
7573         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
7574             <summary>
7575             Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
7576             </summary>
7577             <param name="value">The value to convert.</param>
7578             <param name="format">The format the date will be converted to.</param>
7579             <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
7580             <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
7581         </member>
7582         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
7583             <summary>
7584             Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
7585             </summary>
7586             <param name="value">The value to convert.</param>
7587             <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
7588         </member>
7589         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
7590             <summary>
7591             Converts the <see cref="T:System.Char"/> to its JSON string representation.
7592             </summary>
7593             <param name="value">The value to convert.</param>
7594             <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
7595         </member>
7596         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
7597             <summary>
7598             Converts the <see cref="T:System.Enum"/> to its JSON string representation.
7599             </summary>
7600             <param name="value">The value to convert.</param>
7601             <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
7602         </member>
7603         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
7604             <summary>
7605             Converts the <see cref="T:System.Int32"/> to its JSON string representation.
7606             </summary>
7607             <param name="value">The value to convert.</param>
7608             <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
7609         </member>
7610         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
7611             <summary>
7612             Converts the <see cref="T:System.Int16"/> to its JSON string representation.
7613             </summary>
7614             <param name="value">The value to convert.</param>
7615             <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
7616         </member>
7617         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
7618             <summary>
7619             Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
7620             </summary>
7621             <param name="value">The value to convert.</param>
7622             <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
7623         </member>
7624         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
7625             <summary>
7626             Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
7627             </summary>
7628             <param name="value">The value to convert.</param>
7629             <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
7630         </member>
7631         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
7632             <summary>
7633             Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
7634             </summary>
7635             <param name="value">The value to convert.</param>
7636             <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
7637         </member>
7638         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
7639             <summary>
7640             Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
7641             </summary>
7642             <param name="value">The value to convert.</param>
7643             <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
7644         </member>
7645         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
7646             <summary>
7647             Converts the <see cref="T:System.Single"/> to its JSON string representation.
7648             </summary>
7649             <param name="value">The value to convert.</param>
7650             <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
7651         </member>
7652         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
7653             <summary>
7654             Converts the <see cref="T:System.Double"/> to its JSON string representation.
7655             </summary>
7656             <param name="value">The value to convert.</param>
7657             <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
7658         </member>
7659         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
7660             <summary>
7661             Converts the <see cref="T:System.Byte"/> to its JSON string representation.
7662             </summary>
7663             <param name="value">The value to convert.</param>
7664             <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
7665         </member>
7666         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
7667             <summary>
7668             Converts the <see cref="T:System.SByte"/> to its JSON string representation.
7669             </summary>
7670             <param name="value">The value to convert.</param>
7671             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
7672         </member>
7673         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
7674             <summary>
7675             Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
7676             </summary>
7677             <param name="value">The value to convert.</param>
7678             <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
7679         </member>
7680         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
7681             <summary>
7682             Converts the <see cref="T:System.Guid"/> to its JSON string representation.
7683             </summary>
7684             <param name="value">The value to convert.</param>
7685             <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
7686         </member>
7687         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
7688             <summary>
7689             Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
7690             </summary>
7691             <param name="value">The value to convert.</param>
7692             <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
7693         </member>
7694         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
7695             <summary>
7696             Converts the <see cref="T:System.Uri"/> to its JSON string representation.
7697             </summary>
7698             <param name="value">The value to convert.</param>
7699             <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
7700         </member>
7701         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
7702             <summary>
7703             Converts the <see cref="T:System.String"/> to its JSON string representation.
7704             </summary>
7705             <param name="value">The value to convert.</param>
7706             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7707         </member>
7708         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
7709             <summary>
7710             Converts the <see cref="T:System.String"/> to its JSON string representation.
7711             </summary>
7712             <param name="value">The value to convert.</param>
7713             <param name="delimiter">The string delimiter character.</param>
7714             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7715         </member>
7716         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
7717             <summary>
7718             Converts the <see cref="T:System.String"/> to its JSON string representation.
7719             </summary>
7720             <param name="value">The value to convert.</param>
7721             <param name="delimiter">The string delimiter character.</param>
7722             <param name="stringEscapeHandling">The string escape handling.</param>
7723             <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
7724         </member>
7725         <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
7726             <summary>
7727             Converts the <see cref="T:System.Object"/> to its JSON string representation.
7728             </summary>
7729             <param name="value">The value to convert.</param>
7730             <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
7731         </member>
7732         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
7733             <summary>
7734             Serializes the specified object to a JSON string.
7735             </summary>
7736             <param name="value">The object to serialize.</param>
7737             <returns>A JSON string representation of the object.</returns>
7738         </member>
7739         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
7740             <summary>
7741             Serializes the specified object to a JSON string using formatting.
7742             </summary>
7743             <param name="value">The object to serialize.</param>
7744             <param name="formatting">Indicates how the output is formatted.</param>
7745             <returns>
7746             A JSON string representation of the object.
7747             </returns>
7748         </member>
7749         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
7750             <summary>
7751             Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7752             </summary>
7753             <param name="value">The object to serialize.</param>
7754             <param name="converters">A collection converters used while serializing.</param>
7755             <returns>A JSON string representation of the object.</returns>
7756         </member>
7757         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
7758             <summary>
7759             Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7760             </summary>
7761             <param name="value">The object to serialize.</param>
7762             <param name="formatting">Indicates how the output is formatted.</param>
7763             <param name="converters">A collection converters used while serializing.</param>
7764             <returns>A JSON string representation of the object.</returns>
7765         </member>
7766         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7767             <summary>
7768             Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7769             </summary>
7770             <param name="value">The object to serialize.</param>
7771             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7772             If this is null, default serialization settings will be used.</param>
7773             <returns>
7774             A JSON string representation of the object.
7775             </returns>
7776         </member>
7777         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7778             <summary>
7779             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7780             </summary>
7781             <param name="value">The object to serialize.</param>
7782             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7783             If this is null, default serialization settings will be used.</param>
7784             <param name="type">
7785             The type of the value being serialized.
7786             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.
7787             Specifing the type is optional.
7788             </param>
7789             <returns>
7790             A JSON string representation of the object.
7791             </returns>
7792         </member>
7793         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7794             <summary>
7795             Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7796             </summary>
7797             <param name="value">The object to serialize.</param>
7798             <param name="formatting">Indicates how the output is formatted.</param>
7799             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7800             If this is null, default serialization settings will be used.</param>
7801             <returns>
7802             A JSON string representation of the object.
7803             </returns>
7804         </member>
7805         <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
7806             <summary>
7807             Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7808             </summary>
7809             <param name="value">The object to serialize.</param>
7810             <param name="formatting">Indicates how the output is formatted.</param>
7811             <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
7812             If this is null, default serialization settings will be used.</param>
7813             <param name="type">
7814             The type of the value being serialized.
7815             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.
7816             Specifing the type is optional.
7817             </param>
7818             <returns>
7819             A JSON string representation of the object.
7820             </returns>
7821         </member>
7822         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
7823             <summary>
7824             Deserializes the JSON to a .NET object.
7825             </summary>
7826             <param name="value">The JSON to deserialize.</param>
7827             <returns>The deserialized object from the JSON string.</returns>
7828         </member>
7829         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7830             <summary>
7831             Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7832             </summary>
7833             <param name="value">The JSON to deserialize.</param>
7834             <param name="settings">
7835             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7836             If this is null, default serialization settings will be used.
7837             </param>
7838             <returns>The deserialized object from the JSON string.</returns>
7839         </member>
7840         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
7841             <summary>
7842             Deserializes the JSON to the specified .NET type.
7843             </summary>
7844             <param name="value">The JSON to deserialize.</param>
7845             <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
7846             <returns>The deserialized object from the JSON string.</returns>
7847         </member>
7848         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
7849             <summary>
7850             Deserializes the JSON to the specified .NET type.
7851             </summary>
7852             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7853             <param name="value">The JSON to deserialize.</param>
7854             <returns>The deserialized object from the JSON string.</returns>
7855         </member>
7856         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
7857             <summary>
7858             Deserializes the JSON to the given anonymous type.
7859             </summary>
7860             <typeparam name="T">
7861             The anonymous type to deserialize to. This can't be specified
7862             traditionally and must be infered from the anonymous type passed
7863             as a parameter.
7864             </typeparam>
7865             <param name="value">The JSON to deserialize.</param>
7866             <param name="anonymousTypeObject">The anonymous type object.</param>
7867             <returns>The deserialized anonymous type from the JSON string.</returns>
7868         </member>
7869         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
7870             <summary>
7871             Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7872             </summary>
7873             <typeparam name="T">
7874             The anonymous type to deserialize to. This can't be specified
7875             traditionally and must be infered from the anonymous type passed
7876             as a parameter.
7877             </typeparam>
7878             <param name="value">The JSON to deserialize.</param>
7879             <param name="anonymousTypeObject">The anonymous type object.</param>
7880             <param name="settings">
7881             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7882             If this is null, default serialization settings will be used.
7883             </param>
7884             <returns>The deserialized anonymous type from the JSON string.</returns>
7885         </member>
7886         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
7887             <summary>
7888             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7889             </summary>
7890             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7891             <param name="value">The JSON to deserialize.</param>
7892             <param name="converters">Converters to use while deserializing.</param>
7893             <returns>The deserialized object from the JSON string.</returns>
7894         </member>
7895         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
7896             <summary>
7897             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7898             </summary>
7899             <typeparam name="T">The type of the object to deserialize to.</typeparam>
7900             <param name="value">The object to deserialize.</param>
7901             <param name="settings">
7902             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7903             If this is null, default serialization settings will be used.
7904             </param>
7905             <returns>The deserialized object from the JSON string.</returns>
7906         </member>
7907         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
7908             <summary>
7909             Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
7910             </summary>
7911             <param name="value">The JSON to deserialize.</param>
7912             <param name="type">The type of the object to deserialize.</param>
7913             <param name="converters">Converters to use while deserializing.</param>
7914             <returns>The deserialized object from the JSON string.</returns>
7915         </member>
7916         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
7917             <summary>
7918             Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7919             </summary>
7920             <param name="value">The JSON to deserialize.</param>
7921             <param name="type">The type of the object to deserialize to.</param>
7922             <param name="settings">
7923             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7924             If this is null, default serialization settings will be used.
7925             </param>
7926             <returns>The deserialized object from the JSON string.</returns>
7927         </member>
7928         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
7929             <summary>
7930             Populates the object with values from the JSON string.
7931             </summary>
7932             <param name="value">The JSON to populate values from.</param>
7933             <param name="target">The target object to populate values onto.</param>
7934         </member>
7935         <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
7936             <summary>
7937             Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
7938             </summary>
7939             <param name="value">The JSON to populate values from.</param>
7940             <param name="target">The target object to populate values onto.</param>
7941             <param name="settings">
7942             The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
7943             If this is null, default serialization settings will be used.
7944             </param>
7945         </member>
7946         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
7947             <summary>
7948             Serializes the XML node to a JSON string.
7949             </summary>
7950             <param name="node">The node to serialize.</param>
7951             <returns>A JSON string of the XmlNode.</returns>
7952         </member>
7953         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
7954             <summary>
7955             Serializes the XML node to a JSON string using formatting.
7956             </summary>
7957             <param name="node">The node to serialize.</param>
7958             <param name="formatting">Indicates how the output is formatted.</param>
7959             <returns>A JSON string of the XmlNode.</returns>
7960         </member>
7961         <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
7962             <summary>
7963             Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
7964             </summary>
7965             <param name="node">The node to serialize.</param>
7966             <param name="formatting">Indicates how the output is formatted.</param>
7967             <param name="omitRootObject">Omits writing the root object.</param>
7968             <returns>A JSON string of the XmlNode.</returns>
7969         </member>
7970         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
7971             <summary>
7972             Deserializes the XmlNode from a JSON string.
7973             </summary>
7974             <param name="value">The JSON string.</param>
7975             <returns>The deserialized XmlNode</returns>
7976         </member>
7977         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
7978             <summary>
7979             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>.
7980             </summary>
7981             <param name="value">The JSON string.</param>
7982             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7983             <returns>The deserialized XmlNode</returns>
7984         </member>
7985         <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
7986             <summary>
7987             Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>
7988             and writes a .NET array attribute for collections.
7989             </summary>
7990             <param name="value">The JSON string.</param>
7991             <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
7992             <param name="writeArrayAttribute">
7993             A flag to indicate whether to write the Json.NET array attribute.
7994             This attribute helps preserve arrays when converting the written XML back to JSON.
7995             </param>
7996             <returns>The deserialized XmlNode</returns>
7997         </member>
7998         <member name="T:Newtonsoft.Json.JsonSerializationException">
7999             <summary>
8000             The exception thrown when an error occurs during JSON serialization or deserialization.
8001             </summary>
8002         </member>
8003         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
8004             <summary>
8005             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
8006             </summary>
8007         </member>
8008         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
8009             <summary>
8010             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
8011             with a specified error message.
8012             </summary>
8013             <param name="message">The error message that explains the reason for the exception.</param>
8014         </member>
8015         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
8016             <summary>
8017             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
8018             with a specified error message and a reference to the inner exception that is the cause of this exception.
8019             </summary>
8020             <param name="message">The error message that explains the reason for the exception.</param>
8021             <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>
8022         </member>
8023         <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8024             <summary>
8025             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
8026             </summary>
8027             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
8028             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
8029             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
8030             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
8031         </member>
8032         <member name="T:Newtonsoft.Json.JsonSerializer">
8033             <summary>
8034             Serializes and deserializes objects into and from the JSON format.
8035             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
8036             </summary>
8037         </member>
8038         <member name="E:Newtonsoft.Json.JsonSerializer.Error">
8039             <summary>
8040             Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
8041             </summary>
8042         </member>
8043         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
8044             <summary>
8045             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
8046             </summary>
8047         </member>
8048         <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
8049             <summary>
8050             Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
8051             </summary>
8052         </member>
8053         <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
8054             <summary>
8055             Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
8056             </summary>
8057             <value>The trace writer.</value>
8058         </member>
8059         <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
8060             <summary>
8061             Gets or sets the equality comparer used by the serializer when comparing references.
8062             </summary>
8063             <value>The equality comparer.</value>
8064         </member>
8065         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
8066             <summary>
8067             Gets or sets how type name writing and reading is handled by the serializer.
8068             </summary>
8069         </member>
8070         <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
8071             <summary>
8072             Gets or sets how a type name assembly is written and resolved by the serializer.
8073             </summary>
8074             <value>The type name assembly format.</value>
8075         </member>
8076         <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
8077             <summary>
8078             Gets or sets how object references are preserved by the serializer.
8079             </summary>
8080         </member>
8081         <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
8082             <summary>
8083             Get or set how reference loops (e.g. a class referencing itself) is handled.
8084             </summary>
8085         </member>
8086         <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
8087             <summary>
8088             Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
8089             </summary>
8090         </member>
8091         <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
8092             <summary>
8093             Get or set how null values are handled during serialization and deserialization.
8094             </summary>
8095         </member>
8096         <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
8097             <summary>
8098             Get or set how null default are handled during serialization and deserialization.
8099             </summary>
8100         </member>
8101         <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
8102             <summary>
8103             Gets or sets how objects are created during deserialization.
8104             </summary>
8105             <value>The object creation handling.</value>
8106         </member>
8107         <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
8108             <summary>
8109             Gets or sets how constructors are used during deserialization.
8110             </summary>
8111             <value>The constructor handling.</value>
8112         </member>
8113         <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
8114             <summary>
8115             Gets or sets how metadata properties are used during deserialization.
8116             </summary>
8117             <value>The metadata properties handling.</value>
8118         </member>
8119         <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
8120             <summary>
8121             Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
8122             </summary>
8123             <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
8124         </member>
8125         <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
8126             <summary>
8127             Gets or sets the contract resolver used by the serializer when
8128             serializing .NET objects to JSON and vice versa.
8129             </summary>
8130         </member>
8131         <member name="P:Newtonsoft.Json.JsonSerializer.Context">
8132             <summary>
8133             Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
8134             </summary>
8135             <value>The context.</value>
8136         </member>
8137         <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
8138             <summary>
8139             Indicates how JSON text output is formatted.
8140             </summary>
8141         </member>
8142         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
8143             <summary>
8144             Get or set how dates are written to JSON text.
8145             </summary>
8146         </member>
8147         <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
8148             <summary>
8149             Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization.
8150             </summary>
8151         </member>
8152         <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
8153             <summary>
8154             Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
8155             </summary>
8156         </member>
8157         <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
8158             <summary>
8159             Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
8160             </summary>
8161         </member>
8162         <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
8163             <summary>
8164             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
8165             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
8166             are written as JSON text.
8167             </summary>
8168         </member>
8169         <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
8170             <summary>
8171             Get or set how strings are escaped when writing JSON text.
8172             </summary>
8173         </member>
8174         <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
8175             <summary>
8176             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.
8177             </summary>
8178         </member>
8179         <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
8180             <summary>
8181             Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
8182             </summary>
8183         </member>
8184         <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
8185             <summary>
8186             Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
8187             </summary>
8188         </member>
8189         <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
8190             <summary>
8191             Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
8192             </summary>
8193             <value>
8194                 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
8195             </value>
8196         </member>
8197         <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
8198             <summary>
8199             Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
8200             </summary>
8201         </member>
8202         <member name="M:Newtonsoft.Json.JsonSerializer.Create">
8203             <summary>
8204             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
8205             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
8206             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8207             </summary>
8208             <returns>
8209             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
8210             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
8211             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8212             </returns>
8213         </member>
8214         <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
8215             <summary>
8216             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8217             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
8218             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8219             </summary>
8220             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
8221             <returns>
8222             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8223             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings 
8224             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8225             </returns>
8226         </member>
8227         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
8228             <summary>
8229             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
8230             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
8231             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8232             </summary>
8233             <returns>
8234             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
8235             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
8236             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
8237             </returns>
8238         </member>
8239         <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
8240             <summary>
8241             Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8242             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
8243             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8244             </summary>
8245             <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
8246             <returns>
8247             A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8248             The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings 
8249             from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
8250             </returns>
8251         </member>
8252         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
8253             <summary>
8254             Populates the JSON values onto the target object.
8255             </summary>
8256             <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
8257             <param name="target">The target object to populate values onto.</param>
8258         </member>
8259         <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
8260             <summary>
8261             Populates the JSON values onto the target object.
8262             </summary>
8263             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
8264             <param name="target">The target object to populate values onto.</param>
8265         </member>
8266         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
8267             <summary>
8268             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8269             </summary>
8270             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
8271             <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
8272         </member>
8273         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
8274             <summary>
8275             Deserializes the JSON structure contained by the specified <see cref="T:System.IO.StringReader"/>
8276             into an instance of the specified type.
8277             </summary>
8278             <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
8279             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
8280             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
8281         </member>
8282         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
8283             <summary>
8284             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
8285             into an instance of the specified type.
8286             </summary>
8287             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
8288             <typeparam name="T">The type of the object to deserialize.</typeparam>
8289             <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
8290         </member>
8291         <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
8292             <summary>
8293             Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
8294             into an instance of the specified type.
8295             </summary>
8296             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
8297             <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
8298             <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
8299         </member>
8300         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
8301             <summary>
8302             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
8303             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
8304             </summary>
8305             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
8306             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
8307         </member>
8308         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
8309             <summary>
8310             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
8311             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
8312             </summary>
8313             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
8314             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
8315             <param name="objectType">
8316             The type of the value being serialized.
8317             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.
8318             Specifing the type is optional.
8319             </param>
8320         </member>
8321         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
8322             <summary>
8323             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
8324             to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 
8325             </summary>
8326             <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
8327             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
8328             <param name="objectType">
8329             The type of the value being serialized.
8330             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.
8331             Specifing the type is optional.
8332             </param>
8333         </member>
8334         <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
8335             <summary>
8336             Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
8337             to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. 
8338             </summary>
8339             <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
8340             <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
8341         </member>
8342         <member name="T:Newtonsoft.Json.Schema.Extensions">
8343             <summary>
8344             <para>
8345             Contains the JSON schema extension methods.
8346             </para>
8347             <note type="caution">
8348             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.
8349             </note>
8350             </summary>
8351         </member>
8352         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8353             <summary>
8354             <para>
8355             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8356             </para>
8357             <note type="caution">
8358             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.
8359             </note>
8360             </summary>
8361             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8362             <param name="schema">The schema to test with.</param>
8363             <returns>
8364                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8365             </returns>
8366         </member>
8367         <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
8368             <summary>
8369             <para>
8370             Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8371             </para>
8372             <note type="caution">
8373             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.
8374             </note>
8375             </summary>
8376             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8377             <param name="schema">The schema to test with.</param>
8378             <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
8379             <returns>
8380                 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8381             </returns>
8382         </member>
8383         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8384             <summary>
8385             <para>
8386             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8387             </para>
8388             <note type="caution">
8389             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.
8390             </note>
8391             </summary>
8392             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8393             <param name="schema">The schema to test with.</param>
8394         </member>
8395         <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
8396             <summary>
8397             <para>
8398             Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8399             </para>
8400             <note type="caution">
8401             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.
8402             </note>
8403             </summary>
8404             <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8405             <param name="schema">The schema to test with.</param>
8406             <param name="validationEventHandler">The validation event handler.</param>
8407         </member>
8408         <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
8409             <summary>
8410             <para>
8411             Returns detailed information about the schema exception.
8412             </para>
8413             <note type="caution">
8414             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.
8415             </note>
8416             </summary>
8417         </member>
8418         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
8419             <summary>
8420             Gets the line number indicating where the error occurred.
8421             </summary>
8422             <value>The line number indicating where the error occurred.</value>
8423         </member>
8424         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
8425             <summary>
8426             Gets the line position indicating where the error occurred.
8427             </summary>
8428             <value>The line position indicating where the error occurred.</value>
8429         </member>
8430         <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
8431             <summary>
8432             Gets the path to the JSON where the error occurred.
8433             </summary>
8434             <value>The path to the JSON where the error occurred.</value>
8435         </member>
8436         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
8437             <summary>
8438             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
8439             </summary>
8440         </member>
8441         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
8442             <summary>
8443             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
8444             with a specified error message.
8445             </summary>
8446             <param name="message">The error message that explains the reason for the exception.</param>
8447         </member>
8448         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
8449             <summary>
8450             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
8451             with a specified error message and a reference to the inner exception that is the cause of this exception.
8452             </summary>
8453             <param name="message">The error message that explains the reason for the exception.</param>
8454             <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>
8455         </member>
8456         <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
8457             <summary>
8458             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
8459             </summary>
8460             <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
8461             <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
8462             <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
8463             <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
8464         </member>
8465         <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
8466             <summary>
8467             <para>
8468             Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
8469             </para>
8470             <note type="caution">
8471             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.
8472             </note>
8473             </summary>
8474         </member>
8475         <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
8476             <summary>
8477             Gets or sets the loaded schemas.
8478             </summary>
8479             <value>The loaded schemas.</value>
8480         </member>
8481         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
8482             <summary>
8483             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
8484             </summary>
8485         </member>
8486         <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
8487             <summary>
8488             Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
8489             </summary>
8490             <param name="reference">The id.</param>
8491             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
8492         </member>
8493         <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
8494             <summary>
8495             <para>
8496             Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
8497             </para>
8498             <note type="caution">
8499             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.
8500             </note>
8501             </summary>
8502         </member>
8503         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
8504             <summary>
8505             Do not infer a schema Id.
8506             </summary>
8507         </member>
8508         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
8509             <summary>
8510             Use the .NET type name as the schema Id.
8511             </summary>
8512         </member>
8513         <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
8514             <summary>
8515             Use the assembly qualified .NET type name as the schema Id.
8516             </summary>
8517         </member>
8518         <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
8519             <summary>
8520             <para>
8521             Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
8522             </para>
8523             <note type="caution">
8524             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.
8525             </note>
8526             </summary>
8527         </member>
8528         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
8529             <summary>
8530             Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
8531             </summary>
8532             <value>The JsonSchemaException associated with the validation error.</value>
8533         </member>
8534         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
8535             <summary>
8536             Gets the path of the JSON location where the validation error occurred.
8537             </summary>
8538             <value>The path of the JSON location where the validation error occurred.</value>
8539         </member>
8540         <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
8541             <summary>
8542             Gets the text description corresponding to the validation error.
8543             </summary>
8544             <value>The text description.</value>
8545         </member>
8546         <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
8547             <summary>
8548             <para>
8549             Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
8550             </para>
8551             <note type="caution">
8552             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.
8553             </note>
8554             </summary>
8555         </member>
8556         <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8557             <summary>
8558             <para>
8559             An in-memory representation of a JSON Schema.
8560             </para>
8561             <note type="caution">
8562             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.
8563             </note>
8564             </summary>
8565         </member>
8566         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8567             <summary>
8568             Gets or sets the id.
8569             </summary>
8570         </member>
8571         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8572             <summary>
8573             Gets or sets the title.
8574             </summary>
8575         </member>
8576         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8577             <summary>
8578             Gets or sets whether the object is required.
8579             </summary>
8580         </member>
8581         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
8582             <summary>
8583             Gets or sets whether the object is read only.
8584             </summary>
8585         </member>
8586         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
8587             <summary>
8588             Gets or sets whether the object is visible to users.
8589             </summary>
8590         </member>
8591         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
8592             <summary>
8593             Gets or sets whether the object is transient.
8594             </summary>
8595         </member>
8596         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
8597             <summary>
8598             Gets or sets the description of the object.
8599             </summary>
8600         </member>
8601         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
8602             <summary>
8603             Gets or sets the types of values allowed by the object.
8604             </summary>
8605             <value>The type.</value>
8606         </member>
8607         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
8608             <summary>
8609             Gets or sets the pattern.
8610             </summary>
8611             <value>The pattern.</value>
8612         </member>
8613         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
8614             <summary>
8615             Gets or sets the minimum length.
8616             </summary>
8617             <value>The minimum length.</value>
8618         </member>
8619         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
8620             <summary>
8621             Gets or sets the maximum length.
8622             </summary>
8623             <value>The maximum length.</value>
8624         </member>
8625         <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
8626             <summary>
8627             Gets or sets a number that the value should be divisble by.
8628             </summary>
8629             <value>A number that the value should be divisble by.</value>
8630         </member>
8631         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
8632             <summary>
8633             Gets or sets the minimum.
8634             </summary>
8635             <value>The minimum.</value>
8636         </member>
8637         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
8638             <summary>
8639             Gets or sets the maximum.
8640             </summary>
8641             <value>The maximum.</value>
8642         </member>
8643         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
8644             <summary>
8645             Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
8646             </summary>
8647             <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
8648         </member>
8649         <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
8650             <summary>
8651             Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
8652             </summary>
8653             <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
8654         </member>
8655         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
8656             <summary>
8657             Gets or sets the minimum number of items.
8658             </summary>
8659             <value>The minimum number of items.</value>
8660         </member>
8661         <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
8662             <summary>
8663             Gets or sets the maximum number of items.
8664             </summary>
8665             <value>The maximum number of items.</value>
8666         </member>
8667         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
8668             <summary>
8669             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
8670             </summary>
8671             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
8672         </member>
8673         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
8674             <summary>
8675             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"/>.
8676             </summary>
8677             <value>
8678                 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
8679             </value>
8680         </member>
8681         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
8682             <summary>
8683             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
8684             </summary>
8685             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
8686         </member>
8687         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
8688             <summary>
8689             Gets or sets a value indicating whether additional items are allowed.
8690             </summary>
8691             <value>
8692                 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
8693             </value>
8694         </member>
8695         <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
8696             <summary>
8697             Gets or sets whether the array items must be unique.
8698             </summary>
8699         </member>
8700         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
8701             <summary>
8702             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
8703             </summary>
8704             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
8705         </member>
8706         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
8707             <summary>
8708             Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
8709             </summary>
8710             <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
8711         </member>
8712         <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
8713             <summary>
8714             Gets or sets the pattern properties.
8715             </summary>
8716             <value>The pattern properties.</value>
8717         </member>
8718         <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
8719             <summary>
8720             Gets or sets a value indicating whether additional properties are allowed.
8721             </summary>
8722             <value>
8723                 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8724             </value>
8725         </member>
8726         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
8727             <summary>
8728             Gets or sets the required property if this property is present.
8729             </summary>
8730             <value>The required property if this property is present.</value>
8731         </member>
8732         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
8733             <summary>
8734             Gets or sets the a collection of valid enum values allowed.
8735             </summary>
8736             <value>A collection of valid enum values allowed.</value>
8737         </member>
8738         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
8739             <summary>
8740             Gets or sets disallowed types.
8741             </summary>
8742             <value>The disallow types.</value>
8743         </member>
8744         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
8745             <summary>
8746             Gets or sets the default value.
8747             </summary>
8748             <value>The default value.</value>
8749         </member>
8750         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
8751             <summary>
8752             Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
8753             </summary>
8754             <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
8755         </member>
8756         <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
8757             <summary>
8758             Gets or sets the format.
8759             </summary>
8760             <value>The format.</value>
8761         </member>
8762         <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
8763             <summary>
8764             Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
8765             </summary>
8766         </member>
8767         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
8768             <summary>
8769             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8770             </summary>
8771             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8772             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8773         </member>
8774         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8775             <summary>
8776             Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
8777             </summary>
8778             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
8779             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
8780             <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
8781         </member>
8782         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
8783             <summary>
8784             Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
8785             </summary>
8786             <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
8787             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8788         </member>
8789         <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8790             <summary>
8791             Parses the specified json.
8792             </summary>
8793             <param name="json">The json.</param>
8794             <param name="resolver">The resolver.</param>
8795             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
8796         </member>
8797         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
8798             <summary>
8799             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8800             </summary>
8801             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8802         </member>
8803         <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8804             <summary>
8805             Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
8806             </summary>
8807             <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8808             <param name="resolver">The resolver used.</param>
8809         </member>
8810         <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
8811             <summary>
8812             Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8813             </summary>
8814             <returns>
8815             A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
8816             </returns>
8817         </member>
8818         <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
8819             <summary>
8820             <para>
8821             Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
8822             </para>
8823             <note type="caution">
8824             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.
8825             </note>
8826             </summary>
8827         </member>
8828         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
8829             <summary>
8830             Gets or sets how undefined schemas are handled by the serializer.
8831             </summary>
8832         </member>
8833         <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
8834             <summary>
8835             Gets or sets the contract resolver.
8836             </summary>
8837             <value>The contract resolver.</value>
8838         </member>
8839         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
8840             <summary>
8841             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8842             </summary>
8843             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8844             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8845         </member>
8846         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
8847             <summary>
8848             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8849             </summary>
8850             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8851             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8852             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8853         </member>
8854         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
8855             <summary>
8856             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8857             </summary>
8858             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8859             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8860             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8861         </member>
8862         <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
8863             <summary>
8864             Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
8865             </summary>
8866             <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
8867             <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8868             <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8869             <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8870         </member>
8871         <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
8872             <summary>
8873             <para>
8874             The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
8875             </para>
8876             <note type="caution">
8877             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.
8878             </note>
8879             </summary>
8880         </member>
8881         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
8882             <summary>
8883             No type specified.
8884             </summary>
8885         </member>
8886         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
8887             <summary>
8888             String type.
8889             </summary>
8890         </member>
8891         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
8892             <summary>
8893             Float type.
8894             </summary>
8895         </member>
8896         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
8897             <summary>
8898             Integer type.
8899             </summary>
8900         </member>
8901         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
8902             <summary>
8903             Boolean type.
8904             </summary>
8905         </member>
8906         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
8907             <summary>
8908             Object type.
8909             </summary>
8910         </member>
8911         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
8912             <summary>
8913             Array type.
8914             </summary>
8915         </member>
8916         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
8917             <summary>
8918             Null type.
8919             </summary>
8920         </member>
8921         <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
8922             <summary>
8923             Any type.
8924             </summary>
8925         </member>
8926         <member name="T:Newtonsoft.Json.MissingMemberHandling">
8927             <summary>
8928             Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8929             </summary>
8930         </member>
8931         <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8932             <summary>
8933             Ignore a missing member and do not attempt to deserialize it.
8934             </summary>
8935         </member>
8936         <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8937             <summary>
8938             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8939             </summary>
8940         </member>
8941         <member name="T:Newtonsoft.Json.NullValueHandling">
8942             <summary>
8943             Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8944             </summary>
8945             <example>
8946               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8947               <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8948             </example>
8949         </member>
8950         <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8951             <summary>
8952             Include null values when serializing and deserializing objects.
8953             </summary>
8954         </member>
8955         <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8956             <summary>
8957             Ignore null values when serializing and deserializing objects.
8958             </summary>
8959         </member>
8960         <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8961             <summary>
8962             Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8963             </summary>
8964         </member>
8965         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8966             <summary>
8967             Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8968             </summary>
8969         </member>
8970         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8971             <summary>
8972             Ignore loop references and do not serialize.
8973             </summary>
8974         </member>
8975         <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8976             <summary>
8977             Serialize loop references.
8978             </summary>
8979         </member>
8980         <member name="T:Newtonsoft.Json.TypeNameHandling">
8981             <summary>
8982             Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8983             </summary>
8984         </member>
8985         <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8986             <summary>
8987             Do not include the .NET type name when serializing types.
8988             </summary>
8989         </member>
8990         <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8991             <summary>
8992             Include the .NET type name when serializing into a JSON object structure.
8993             </summary>
8994         </member>
8995         <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8996             <summary>
8997             Include the .NET type name when serializing into a JSON array structure.
8998             </summary>
8999         </member>
9000         <member name="F:Newtonsoft.Json.TypeNameHandling.All">
9001             <summary>
9002             Always include the .NET type name when serializing.
9003             </summary>
9004         </member>
9005         <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
9006             <summary>
9007             Include the .NET type name when the type of the object being serialized is not the same as its declared type.
9008             </summary>
9009         </member>
9010         <member name="T:Newtonsoft.Json.JsonToken">
9011             <summary>
9012             Specifies the type of JSON token.
9013             </summary>
9014         </member>
9015         <member name="F:Newtonsoft.Json.JsonToken.None">
9016             <summary>
9017             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. 
9018             </summary>
9019         </member>
9020         <member name="F:Newtonsoft.Json.JsonToken.StartObject">
9021             <summary>
9022             An object start token.
9023             </summary>
9024         </member>
9025         <member name="F:Newtonsoft.Json.JsonToken.StartArray">
9026             <summary>
9027             An array start token.
9028             </summary>
9029         </member>
9030         <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
9031             <summary>
9032             A constructor start token.
9033             </summary>
9034         </member>
9035         <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
9036             <summary>
9037             An object property name.
9038             </summary>
9039         </member>
9040         <member name="F:Newtonsoft.Json.JsonToken.Comment">
9041             <summary>
9042             A comment.
9043             </summary>
9044         </member>
9045         <member name="F:Newtonsoft.Json.JsonToken.Raw">
9046             <summary>
9047             Raw JSON.
9048             </summary>
9049         </member>
9050         <member name="F:Newtonsoft.Json.JsonToken.Integer">
9051             <summary>
9052             An integer.
9053             </summary>
9054         </member>
9055         <member name="F:Newtonsoft.Json.JsonToken.Float">
9056             <summary>
9057             A float.
9058             </summary>
9059         </member>
9060         <member name="F:Newtonsoft.Json.JsonToken.String">
9061             <summary>
9062             A string.
9063             </summary>
9064         </member>
9065         <member name="F:Newtonsoft.Json.JsonToken.Boolean">
9066             <summary>
9067             A boolean.
9068             </summary>
9069         </member>
9070         <member name="F:Newtonsoft.Json.JsonToken.Null">
9071             <summary>
9072             A null token.
9073             </summary>
9074         </member>
9075         <member name="F:Newtonsoft.Json.JsonToken.Undefined">
9076             <summary>
9077             An undefined token.
9078             </summary>
9079         </member>
9080         <member name="F:Newtonsoft.Json.JsonToken.EndObject">
9081             <summary>
9082             An object end token.
9083             </summary>
9084         </member>
9085         <member name="F:Newtonsoft.Json.JsonToken.EndArray">
9086             <summary>
9087             An array end token.
9088             </summary>
9089         </member>
9090         <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
9091             <summary>
9092             A constructor end token.
9093             </summary>
9094         </member>
9095         <member name="F:Newtonsoft.Json.JsonToken.Date">
9096             <summary>
9097             A Date.
9098             </summary>
9099         </member>
9100         <member name="F:Newtonsoft.Json.JsonToken.Bytes">
9101             <summary>
9102             Byte data.
9103             </summary>
9104         </member>
9105         <member name="T:Newtonsoft.Json.JsonWriter">
9106             <summary>
9107             Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
9108             </summary>
9109         </member>
9110         <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
9111             <summary>
9112             Gets or sets a value indicating whether the underlying stream or
9113             <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
9114             </summary>
9115             <value>
9116             true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
9117             the writer is closed; otherwise false. The default is true.
9118             </value>
9119         </member>
9120         <member name="P:Newtonsoft.Json.JsonWriter.Top">
9121             <summary>
9122             Gets the top.
9123             </summary>
9124             <value>The top.</value>
9125         </member>
9126         <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
9127             <summary>
9128             Gets the state of the writer.
9129             </summary>
9130         </member>
9131         <member name="P:Newtonsoft.Json.JsonWriter.Path">
9132             <summary>
9133             Gets the path of the writer. 
9134             </summary>
9135         </member>
9136         <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
9137             <summary>
9138             Indicates how JSON text output is formatted.
9139             </summary>
9140         </member>
9141         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
9142             <summary>
9143             Get or set how dates are written to JSON text.
9144             </summary>
9145         </member>
9146         <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
9147             <summary>
9148             Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
9149             </summary>
9150         </member>
9151         <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
9152             <summary>
9153             Get or set how strings are escaped when writing JSON text.
9154             </summary>
9155         </member>
9156         <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
9157             <summary>
9158             Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
9159             <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
9160             are written to JSON text.
9161             </summary>
9162         </member>
9163         <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
9164             <summary>
9165             Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
9166             </summary>
9167         </member>
9168         <member name="P:Newtonsoft.Json.JsonWriter.Culture">
9169             <summary>
9170             Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
9171             </summary>
9172         </member>
9173         <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
9174             <summary>
9175             Creates an instance of the <c>JsonWriter</c> class. 
9176             </summary>
9177         </member>
9178         <member name="M:Newtonsoft.Json.JsonWriter.Flush">
9179             <summary>
9180             Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
9181             </summary>
9182         </member>
9183         <member name="M:Newtonsoft.Json.JsonWriter.Close">
9184             <summary>
9185             Closes this stream and the underlying stream.
9186             </summary>
9187         </member>
9188         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
9189             <summary>
9190             Writes the beginning of a JSON object.
9191             </summary>
9192         </member>
9193         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
9194             <summary>
9195             Writes the end of a JSON object.
9196             </summary>
9197         </member>
9198         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
9199             <summary>
9200             Writes the beginning of a JSON array.
9201             </summary>
9202         </member>
9203         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
9204             <summary>
9205             Writes the end of an array.
9206             </summary>
9207         </member>
9208         <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
9209             <summary>
9210             Writes the start of a constructor with the given name.
9211             </summary>
9212             <param name="name">The name of the constructor.</param>
9213         </member>
9214         <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
9215             <summary>
9216             Writes the end constructor.
9217             </summary>
9218         </member>
9219         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
9220             <summary>
9221             Writes the property name of a name/value pair on a JSON object.
9222             </summary>
9223             <param name="name">The name of the property.</param>
9224         </member>
9225         <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
9226             <summary>
9227             Writes the property name of a name/value pair on a JSON object.
9228             </summary>
9229             <param name="name">The name of the property.</param>
9230             <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
9231         </member>
9232         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
9233             <summary>
9234             Writes the end of the current JSON object or array.
9235             </summary>
9236         </member>
9237         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
9238             <summary>
9239             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
9240             </summary>
9241             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
9242         </member>
9243         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
9244             <summary>
9245             Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
9246             </summary>
9247             <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
9248             <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
9249         </member>
9250         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
9251             <summary>
9252             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
9253             </summary>
9254             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
9255             <param name="value">
9256             The value to write.
9257             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"/>.
9258             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>
9259         </member>
9260         <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
9261             <summary>
9262             Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
9263             </summary>
9264             <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
9265         </member>
9266         <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
9267             <summary>
9268             Writes the specified end token.
9269             </summary>
9270             <param name="token">The end token to write.</param>
9271         </member>
9272         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
9273             <summary>
9274             Writes indent characters.
9275             </summary>
9276         </member>
9277         <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
9278             <summary>
9279             Writes the JSON value delimiter.
9280             </summary>
9281         </member>
9282         <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
9283             <summary>
9284             Writes an indent space.
9285             </summary>
9286         </member>
9287         <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
9288             <summary>
9289             Writes a null value.
9290             </summary>
9291         </member>
9292         <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
9293             <summary>
9294             Writes an undefined value.
9295             </summary>
9296         </member>
9297         <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
9298             <summary>
9299             Writes raw JSON without changing the writer's state.
9300             </summary>
9301             <param name="json">The raw JSON to write.</param>
9302         </member>
9303         <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
9304             <summary>
9305             Writes raw JSON where a value is expected and updates the writer's state.
9306             </summary>
9307             <param name="json">The raw JSON to write.</param>
9308         </member>
9309         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
9310             <summary>
9311             Writes a <see cref="T:System.String"/> value.
9312             </summary>
9313             <param name="value">The <see cref="T:System.String"/> value to write.</param>
9314         </member>
9315         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
9316             <summary>
9317             Writes a <see cref="T:System.Int32"/> value.
9318             </summary>
9319             <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
9320         </member>
9321         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
9322             <summary>
9323             Writes a <see cref="T:System.UInt32"/> value.
9324             </summary>
9325             <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
9326         </member>
9327         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
9328             <summary>
9329             Writes a <see cref="T:System.Int64"/> value.
9330             </summary>
9331             <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
9332         </member>
9333         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
9334             <summary>
9335             Writes a <see cref="T:System.UInt64"/> value.
9336             </summary>
9337             <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
9338         </member>
9339         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
9340             <summary>
9341             Writes a <see cref="T:System.Single"/> value.
9342             </summary>
9343             <param name="value">The <see cref="T:System.Single"/> value to write.</param>
9344         </member>
9345         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
9346             <summary>
9347             Writes a <see cref="T:System.Double"/> value.
9348             </summary>
9349             <param name="value">The <see cref="T:System.Double"/> value to write.</param>
9350         </member>
9351         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
9352             <summary>
9353             Writes a <see cref="T:System.Boolean"/> value.
9354             </summary>
9355             <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
9356         </member>
9357         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
9358             <summary>
9359             Writes a <see cref="T:System.Int16"/> value.
9360             </summary>
9361             <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
9362         </member>
9363         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
9364             <summary>
9365             Writes a <see cref="T:System.UInt16"/> value.
9366             </summary>
9367             <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
9368         </member>
9369         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
9370             <summary>
9371             Writes a <see cref="T:System.Char"/> value.
9372             </summary>
9373             <param name="value">The <see cref="T:System.Char"/> value to write.</param>
9374         </member>
9375         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
9376             <summary>
9377             Writes a <see cref="T:System.Byte"/> value.
9378             </summary>
9379             <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
9380         </member>
9381         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
9382             <summary>
9383             Writes a <see cref="T:System.SByte"/> value.
9384             </summary>
9385             <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
9386         </member>
9387         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
9388             <summary>
9389             Writes a <see cref="T:System.Decimal"/> value.
9390             </summary>
9391             <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
9392         </member>
9393         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
9394             <summary>
9395             Writes a <see cref="T:System.DateTime"/> value.
9396             </summary>
9397             <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
9398         </member>
9399         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
9400             <summary>
9401             Writes a <see cref="T:System.Guid"/> value.
9402             </summary>
9403             <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
9404         </member>
9405         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
9406             <summary>
9407             Writes a <see cref="T:System.TimeSpan"/> value.
9408             </summary>
9409             <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
9410         </member>
9411         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
9412             <summary>
9413             Writes a <see cref="T:System.Nullable`1"/> value.
9414             </summary>
9415             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9416         </member>
9417         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
9418             <summary>
9419             Writes a <see cref="T:System.Nullable`1"/> value.
9420             </summary>
9421             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9422         </member>
9423         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
9424             <summary>
9425             Writes a <see cref="T:System.Nullable`1"/> value.
9426             </summary>
9427             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9428         </member>
9429         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
9430             <summary>
9431             Writes a <see cref="T:System.Nullable`1"/> value.
9432             </summary>
9433             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9434         </member>
9435         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
9436             <summary>
9437             Writes a <see cref="T:System.Nullable`1"/> value.
9438             </summary>
9439             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9440         </member>
9441         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
9442             <summary>
9443             Writes a <see cref="T:System.Nullable`1"/> value.
9444             </summary>
9445             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9446         </member>
9447         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
9448             <summary>
9449             Writes a <see cref="T:System.Nullable`1"/> value.
9450             </summary>
9451             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9452         </member>
9453         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
9454             <summary>
9455             Writes a <see cref="T:System.Nullable`1"/> value.
9456             </summary>
9457             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9458         </member>
9459         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
9460             <summary>
9461             Writes a <see cref="T:System.Nullable`1"/> value.
9462             </summary>
9463             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9464         </member>
9465         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
9466             <summary>
9467             Writes a <see cref="T:System.Nullable`1"/> value.
9468             </summary>
9469             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9470         </member>
9471         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
9472             <summary>
9473             Writes a <see cref="T:System.Nullable`1"/> value.
9474             </summary>
9475             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9476         </member>
9477         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
9478             <summary>
9479             Writes a <see cref="T:System.Nullable`1"/> value.
9480             </summary>
9481             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9482         </member>
9483         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
9484             <summary>
9485             Writes a <see cref="T:System.Nullable`1"/> value.
9486             </summary>
9487             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9488         </member>
9489         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
9490             <summary>
9491             Writes a <see cref="T:System.Nullable`1"/> value.
9492             </summary>
9493             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9494         </member>
9495         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
9496             <summary>
9497             Writes a <see cref="T:System.Nullable`1"/> value.
9498             </summary>
9499             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9500         </member>
9501         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
9502             <summary>
9503             Writes a <see cref="T:System.Nullable`1"/> value.
9504             </summary>
9505             <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
9506         </member>
9507         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
9508             <summary>
9509             Writes a <see cref="T:System.Byte"/>[] value.
9510             </summary>
9511             <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
9512         </member>
9513         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
9514             <summary>
9515             Writes a <see cref="T:System.Uri"/> value.
9516             </summary>
9517             <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
9518         </member>
9519         <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
9520             <summary>
9521             Writes a <see cref="T:System.Object"/> value.
9522             An error will raised if the value cannot be written as a single JSON token.
9523             </summary>
9524             <param name="value">The <see cref="T:System.Object"/> value to write.</param>
9525         </member>
9526         <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
9527             <summary>
9528             Writes out a comment <code>/*...*/</code> containing the specified text. 
9529             </summary>
9530             <param name="text">Text to place inside the comment.</param>
9531         </member>
9532         <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
9533             <summary>
9534             Writes out the given white space.
9535             </summary>
9536             <param name="ws">The string of white space characters.</param>
9537         </member>
9538         <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
9539             <summary>
9540             Sets the state of the JsonWriter,
9541             </summary>
9542             <param name="token">The JsonToken being written.</param>
9543             <param name="value">The value being written.</param>
9544         </member>
9545         <member name="T:Newtonsoft.Json.WriteState">
9546             <summary>
9547             Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9548             </summary>
9549         </member>
9550         <member name="F:Newtonsoft.Json.WriteState.Error">
9551             <summary>
9552             An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
9553             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.
9554             Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 
9555             </summary>
9556         </member>
9557         <member name="F:Newtonsoft.Json.WriteState.Closed">
9558             <summary>
9559             The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 
9560             </summary>
9561         </member>
9562         <member name="F:Newtonsoft.Json.WriteState.Object">
9563             <summary>
9564             An object is being written. 
9565             </summary>
9566         </member>
9567         <member name="F:Newtonsoft.Json.WriteState.Array">
9568             <summary>
9569             A array is being written.
9570             </summary>
9571         </member>
9572         <member name="F:Newtonsoft.Json.WriteState.Constructor">
9573             <summary>
9574             A constructor is being written.
9575             </summary>
9576         </member>
9577         <member name="F:Newtonsoft.Json.WriteState.Property">
9578             <summary>
9579             A property is being written.
9580             </summary>
9581         </member>
9582         <member name="F:Newtonsoft.Json.WriteState.Start">
9583             <summary>
9584             A write method has not been called.
9585             </summary>
9586         </member>
9587         <member name="T:System.Runtime.CompilerServices.ExtensionAttribute">
9588             <remarks>
9589             This attribute allows us to define extension methods without 
9590             requiring .NET Framework 3.5. For more information, see the section,
9591             <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7">Extension Methods in .NET Framework 2.0 Apps</a>,
9592             of <a href="http://msdn.microsoft.com/en-us/magazine/cc163317.aspx">Basic Instincts: Extension Methods</a>
9593             column in <a href="http://msdn.microsoft.com/msdnmag/">MSDN Magazine</a>, 
9594             issue <a href="http://msdn.microsoft.com/en-us/magazine/cc135410.aspx">Nov 2007</a>.
9595             </remarks>
9596         </member>
9597     </members>
9598 </doc>