aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--bin/Newtonsoft.Json.dllbin59904 -> 698792 bytes
-rwxr-xr-xbin/Newtonsoft.Json.xml11193
2 files changed, 11193 insertions, 0 deletions
diff --git a/bin/Newtonsoft.Json.dll b/bin/Newtonsoft.Json.dll
index 2f28437..ae36195 100644
--- a/bin/Newtonsoft.Json.dll
+++ b/bin/Newtonsoft.Json.dll
Binary files differ
diff --git a/bin/Newtonsoft.Json.xml b/bin/Newtonsoft.Json.xml
new file mode 100755
index 0000000..6ca7190
--- /dev/null
+++ b/bin/Newtonsoft.Json.xml
@@ -0,0 +1,11193 @@
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 BSON 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 be 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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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 <see cref="T:System.IO.Stream"/> containing the BSON data to read.</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 <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</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.Read">
80 <summary>
81 Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
82 </summary>
83 <returns>
84 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
85 </returns>
86 </member>
87 <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
88 <summary>
89 Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
90 If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
91 </summary>
92 </member>
93 <member name="T:Newtonsoft.Json.Bson.BsonWriter">
94 <summary>
95 Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
96 </summary>
97 </member>
98 <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
99 <summary>
100 Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
101 When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
102 </summary>
103 <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
104 </member>
105 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
106 <summary>
107 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
108 </summary>
109 <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
110 </member>
111 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
112 <summary>
113 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
114 </summary>
115 <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
116 </member>
117 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
118 <summary>
119 Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
120 </summary>
121 </member>
122 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
123 <summary>
124 Writes the end.
125 </summary>
126 <param name="token">The token.</param>
127 </member>
128 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
129 <summary>
130 Writes a comment <c>/*...*/</c> containing the specified text.
131 </summary>
132 <param name="text">Text to place inside the comment.</param>
133 </member>
134 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
135 <summary>
136 Writes the start of a constructor with the given name.
137 </summary>
138 <param name="name">The name of the constructor.</param>
139 </member>
140 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
141 <summary>
142 Writes raw JSON.
143 </summary>
144 <param name="json">The raw JSON to write.</param>
145 </member>
146 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
147 <summary>
148 Writes raw JSON where a value is expected and updates the writer's state.
149 </summary>
150 <param name="json">The raw JSON to write.</param>
151 </member>
152 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
153 <summary>
154 Writes the beginning of a JSON array.
155 </summary>
156 </member>
157 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
158 <summary>
159 Writes the beginning of a JSON object.
160 </summary>
161 </member>
162 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
163 <summary>
164 Writes the property name of a name/value pair on a JSON object.
165 </summary>
166 <param name="name">The name of the property.</param>
167 </member>
168 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
169 <summary>
170 Closes this writer.
171 If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
172 If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
173 </summary>
174 </member>
175 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
176 <summary>
177 Writes a <see cref="T:System.Object"/> value.
178 An error will raised if the value cannot be written as a single JSON token.
179 </summary>
180 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
181 </member>
182 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
183 <summary>
184 Writes a null value.
185 </summary>
186 </member>
187 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
188 <summary>
189 Writes an undefined value.
190 </summary>
191 </member>
192 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
193 <summary>
194 Writes a <see cref="T:System.String"/> value.
195 </summary>
196 <param name="value">The <see cref="T:System.String"/> value to write.</param>
197 </member>
198 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
199 <summary>
200 Writes a <see cref="T:System.Int32"/> value.
201 </summary>
202 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
203 </member>
204 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
205 <summary>
206 Writes a <see cref="T:System.UInt32"/> value.
207 </summary>
208 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
209 </member>
210 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
211 <summary>
212 Writes a <see cref="T:System.Int64"/> value.
213 </summary>
214 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
215 </member>
216 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
217 <summary>
218 Writes a <see cref="T:System.UInt64"/> value.
219 </summary>
220 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
221 </member>
222 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
223 <summary>
224 Writes a <see cref="T:System.Single"/> value.
225 </summary>
226 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
227 </member>
228 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
229 <summary>
230 Writes a <see cref="T:System.Double"/> value.
231 </summary>
232 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
233 </member>
234 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
235 <summary>
236 Writes a <see cref="T:System.Boolean"/> value.
237 </summary>
238 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
239 </member>
240 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
241 <summary>
242 Writes a <see cref="T:System.Int16"/> value.
243 </summary>
244 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
245 </member>
246 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
247 <summary>
248 Writes a <see cref="T:System.UInt16"/> value.
249 </summary>
250 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
251 </member>
252 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
253 <summary>
254 Writes a <see cref="T:System.Char"/> value.
255 </summary>
256 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
257 </member>
258 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
259 <summary>
260 Writes a <see cref="T:System.Byte"/> value.
261 </summary>
262 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
263 </member>
264 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
265 <summary>
266 Writes a <see cref="T:System.SByte"/> value.
267 </summary>
268 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
269 </member>
270 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
271 <summary>
272 Writes a <see cref="T:System.Decimal"/> value.
273 </summary>
274 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
275 </member>
276 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
277 <summary>
278 Writes a <see cref="T:System.DateTime"/> value.
279 </summary>
280 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
281 </member>
282 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
283 <summary>
284 Writes a <see cref="T:System.DateTimeOffset"/> value.
285 </summary>
286 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
287 </member>
288 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
289 <summary>
290 Writes a <see cref="T:System.Byte"/>[] value.
291 </summary>
292 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
293 </member>
294 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
295 <summary>
296 Writes a <see cref="T:System.Guid"/> value.
297 </summary>
298 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
299 </member>
300 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
301 <summary>
302 Writes a <see cref="T:System.TimeSpan"/> value.
303 </summary>
304 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
305 </member>
306 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
307 <summary>
308 Writes a <see cref="T:System.Uri"/> value.
309 </summary>
310 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
311 </member>
312 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
313 <summary>
314 Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
315 </summary>
316 <param name="value">The Object ID value to write.</param>
317 </member>
318 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
319 <summary>
320 Writes a BSON regex.
321 </summary>
322 <param name="pattern">The regex pattern.</param>
323 <param name="options">The regex options.</param>
324 </member>
325 <member name="T:Newtonsoft.Json.ConstructorHandling">
326 <summary>
327 Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
328 </summary>
329 </member>
330 <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
331 <summary>
332 First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
333 </summary>
334 </member>
335 <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
336 <summary>
337 Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
338 </summary>
339 </member>
340 <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
341 <summary>
342 Converts a binary value to and from a base 64 string value.
343 </summary>
344 </member>
345 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
346 <summary>
347 Writes the JSON representation of the object.
348 </summary>
349 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
350 <param name="value">The value.</param>
351 <param name="serializer">The calling serializer.</param>
352 </member>
353 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
354 <summary>
355 Reads the JSON representation of the object.
356 </summary>
357 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
358 <param name="objectType">Type of the object.</param>
359 <param name="existingValue">The existing value of object being read.</param>
360 <param name="serializer">The calling serializer.</param>
361 <returns>The object value.</returns>
362 </member>
363 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
364 <summary>
365 Determines whether this instance can convert the specified object type.
366 </summary>
367 <param name="objectType">Type of the object.</param>
368 <returns>
369 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
370 </returns>
371 </member>
372 <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
373 <summary>
374 Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
375 </summary>
376 </member>
377 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
378 <summary>
379 Writes the JSON representation of the object.
380 </summary>
381 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
382 <param name="value">The value.</param>
383 <param name="serializer">The calling serializer.</param>
384 </member>
385 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
386 <summary>
387 Reads the JSON representation of the object.
388 </summary>
389 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
390 <param name="objectType">Type of the object.</param>
391 <param name="existingValue">The existing value of object being read.</param>
392 <param name="serializer">The calling serializer.</param>
393 <returns>The object value.</returns>
394 </member>
395 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
396 <summary>
397 Determines whether this instance can convert the specified object type.
398 </summary>
399 <param name="objectType">Type of the object.</param>
400 <returns>
401 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
402 </returns>
403 </member>
404 <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
405 <summary>
406 Creates a custom object.
407 </summary>
408 <typeparam name="T">The object type to convert.</typeparam>
409 </member>
410 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
411 <summary>
412 Writes the JSON representation of the object.
413 </summary>
414 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
415 <param name="value">The value.</param>
416 <param name="serializer">The calling serializer.</param>
417 </member>
418 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
419 <summary>
420 Reads the JSON representation of the object.
421 </summary>
422 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
423 <param name="objectType">Type of the object.</param>
424 <param name="existingValue">The existing value of object being read.</param>
425 <param name="serializer">The calling serializer.</param>
426 <returns>The object value.</returns>
427 </member>
428 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
429 <summary>
430 Creates an object which will then be populated by the serializer.
431 </summary>
432 <param name="objectType">Type of the object.</param>
433 <returns>The created object.</returns>
434 </member>
435 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
436 <summary>
437 Determines whether this instance can convert the specified object type.
438 </summary>
439 <param name="objectType">Type of the object.</param>
440 <returns>
441 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
442 </returns>
443 </member>
444 <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
445 <summary>
446 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
447 </summary>
448 <value>
449 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
450 </value>
451 </member>
452 <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
453 <summary>
454 Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
455 </summary>
456 </member>
457 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
458 <summary>
459 Writes the JSON representation of the object.
460 </summary>
461 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
462 <param name="value">The value.</param>
463 <param name="serializer">The calling serializer.</param>
464 </member>
465 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
466 <summary>
467 Reads the JSON representation of the object.
468 </summary>
469 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
470 <param name="objectType">Type of the object.</param>
471 <param name="existingValue">The existing value of object being read.</param>
472 <param name="serializer">The calling serializer.</param>
473 <returns>The object value.</returns>
474 </member>
475 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
476 <summary>
477 Determines whether this instance can convert the specified value type.
478 </summary>
479 <param name="valueType">Type of the value.</param>
480 <returns>
481 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
482 </returns>
483 </member>
484 <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
485 <summary>
486 Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
487 </summary>
488 </member>
489 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
490 <summary>
491 Writes the JSON representation of the object.
492 </summary>
493 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
494 <param name="value">The value.</param>
495 <param name="serializer">The calling serializer.</param>
496 </member>
497 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
498 <summary>
499 Reads the JSON representation of the object.
500 </summary>
501 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
502 <param name="objectType">Type of the object.</param>
503 <param name="existingValue">The existing value of object being read.</param>
504 <param name="serializer">The calling serializer.</param>
505 <returns>The object value.</returns>
506 </member>
507 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
508 <summary>
509 Determines whether this instance can convert the specified value type.
510 </summary>
511 <param name="valueType">Type of the value.</param>
512 <returns>
513 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
514 </returns>
515 </member>
516 <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
517 <summary>
518 Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
519 </summary>
520 </member>
521 <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
522 <summary>
523 Determines whether this instance can convert the specified object type.
524 </summary>
525 <param name="objectType">Type of the object.</param>
526 <returns>
527 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
528 </returns>
529 </member>
530 <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
531 <summary>
532 Converts a F# discriminated union type to and from JSON.
533 </summary>
534 </member>
535 <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
536 <summary>
537 Writes the JSON representation of the object.
538 </summary>
539 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
540 <param name="value">The value.</param>
541 <param name="serializer">The calling serializer.</param>
542 </member>
543 <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
544 <summary>
545 Reads the JSON representation of the object.
546 </summary>
547 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
548 <param name="objectType">Type of the object.</param>
549 <param name="existingValue">The existing value of object being read.</param>
550 <param name="serializer">The calling serializer.</param>
551 <returns>The object value.</returns>
552 </member>
553 <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
554 <summary>
555 Determines whether this instance can convert the specified object type.
556 </summary>
557 <param name="objectType">Type of the object.</param>
558 <returns>
559 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
560 </returns>
561 </member>
562 <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
563 <summary>
564 Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
565 </summary>
566 </member>
567 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
568 <summary>
569 Writes the JSON representation of the object.
570 </summary>
571 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
572 <param name="value">The value.</param>
573 <param name="serializer">The calling serializer.</param>
574 </member>
575 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
576 <summary>
577 Reads the JSON representation of the object.
578 </summary>
579 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
580 <param name="objectType">Type of the object.</param>
581 <param name="existingValue">The existing value of object being read.</param>
582 <param name="serializer">The calling serializer.</param>
583 <returns>The object value.</returns>
584 </member>
585 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
586 <summary>
587 Determines whether this instance can convert the specified object type.
588 </summary>
589 <param name="objectType">Type of the object.</param>
590 <returns>
591 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
592 </returns>
593 </member>
594 <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
595 <summary>
596 Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON.
597 </summary>
598 </member>
599 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
600 <summary>
601 Writes the JSON representation of the object.
602 </summary>
603 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
604 <param name="value">The value.</param>
605 <param name="serializer">The calling serializer.</param>
606 </member>
607 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
608 <summary>
609 Reads the JSON representation of the object.
610 </summary>
611 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
612 <param name="objectType">Type of the object.</param>
613 <param name="existingValue">The existing value of object being read.</param>
614 <param name="serializer">The calling serializer.</param>
615 <returns>The object value.</returns>
616 </member>
617 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
618 <summary>
619 Determines whether this instance can convert the specified object type.
620 </summary>
621 <param name="objectType">Type of the object.</param>
622 <returns>
623 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
624 </returns>
625 </member>
626 <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
627 <summary>
628 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
629 </summary>
630 <value>
631 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
632 </value>
633 </member>
634 <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
635 <summary>
636 Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
637 </summary>
638 </member>
639 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
640 <summary>
641 Gets or sets the date time styles used when converting a date to and from JSON.
642 </summary>
643 <value>The date time styles used when converting a date to and from JSON.</value>
644 </member>
645 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
646 <summary>
647 Gets or sets the date time format used when converting a date to and from JSON.
648 </summary>
649 <value>The date time format used when converting a date to and from JSON.</value>
650 </member>
651 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
652 <summary>
653 Gets or sets the culture used when converting a date to and from JSON.
654 </summary>
655 <value>The culture used when converting a date to and from JSON.</value>
656 </member>
657 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
658 <summary>
659 Writes the JSON representation of the object.
660 </summary>
661 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
662 <param name="value">The value.</param>
663 <param name="serializer">The calling serializer.</param>
664 </member>
665 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
666 <summary>
667 Reads the JSON representation of the object.
668 </summary>
669 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
670 <param name="objectType">Type of the object.</param>
671 <param name="existingValue">The existing value of object being read.</param>
672 <param name="serializer">The calling serializer.</param>
673 <returns>The object value.</returns>
674 </member>
675 <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
676 <summary>
677 Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>).
678 </summary>
679 </member>
680 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
681 <summary>
682 Writes the JSON representation of the object.
683 </summary>
684 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
685 <param name="value">The value.</param>
686 <param name="serializer">The calling serializer.</param>
687 </member>
688 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
689 <summary>
690 Reads the JSON representation of the object.
691 </summary>
692 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
693 <param name="objectType">Type of the object.</param>
694 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
695 <param name="serializer">The calling serializer.</param>
696 <returns>The object value.</returns>
697 </member>
698 <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
699 <summary>
700 Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
701 </summary>
702 </member>
703 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
704 <summary>
705 Writes the JSON representation of the object.
706 </summary>
707 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
708 <param name="value">The value.</param>
709 <param name="serializer">The calling serializer.</param>
710 </member>
711 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
712 <summary>
713 Reads the JSON representation of the object.
714 </summary>
715 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
716 <param name="objectType">Type of the object.</param>
717 <param name="existingValue">The existing value of object being read.</param>
718 <param name="serializer">The calling serializer.</param>
719 <returns>The object value.</returns>
720 </member>
721 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
722 <summary>
723 Determines whether this instance can convert the specified object type.
724 </summary>
725 <param name="objectType">Type of the object.</param>
726 <returns>
727 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
728 </returns>
729 </member>
730 <member name="T:Newtonsoft.Json.Converters.RegexConverter">
731 <summary>
732 Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
733 </summary>
734 </member>
735 <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
736 <summary>
737 Writes the JSON representation of the object.
738 </summary>
739 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
740 <param name="value">The value.</param>
741 <param name="serializer">The calling serializer.</param>
742 </member>
743 <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
744 <summary>
745 Reads the JSON representation of the object.
746 </summary>
747 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
748 <param name="objectType">Type of the object.</param>
749 <param name="existingValue">The existing value of object being read.</param>
750 <param name="serializer">The calling serializer.</param>
751 <returns>The object value.</returns>
752 </member>
753 <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
754 <summary>
755 Determines whether this instance can convert the specified object type.
756 </summary>
757 <param name="objectType">Type of the object.</param>
758 <returns>
759 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
760 </returns>
761 </member>
762 <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
763 <summary>
764 Converts an <see cref="T:System.Enum"/> to and from its name string value.
765 </summary>
766 </member>
767 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
768 <summary>
769 Gets or sets a value indicating whether the written enum text should be camel case.
770 The default value is <c>false</c>.
771 </summary>
772 <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
773 </member>
774 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.NamingStrategy">
775 <summary>
776 Gets or sets the naming strategy used to resolve how enum text is written.
777 </summary>
778 <value>The naming strategy used to resolve how enum text is written.</value>
779 </member>
780 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
781 <summary>
782 Gets or sets a value indicating whether integer values are allowed when serializing and deserializing.
783 The default value is <c>true</c>.
784 </summary>
785 <value><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</value>
786 </member>
787 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
788 <summary>
789 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
790 </summary>
791 </member>
792 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Boolean)">
793 <summary>
794 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
795 </summary>
796 <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param>
797 </member>
798 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(Newtonsoft.Json.Serialization.NamingStrategy,System.Boolean)">
799 <summary>
800 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
801 </summary>
802 <param name="namingStrategy">The naming strategy used to resolve how enum text is written.</param>
803 <param name="allowIntegerValues"><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</param>
804 </member>
805 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Type)">
806 <summary>
807 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
808 </summary>
809 <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> used to write enum text.</param>
810 </member>
811 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Type,System.Object[])">
812 <summary>
813 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
814 </summary>
815 <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> used to write enum text.</param>
816 <param name="namingStrategyParameters">
817 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <paramref name="namingStrategyType"/>.
818 If <c>null</c>, the default constructor is used.
819 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
820 order, and type of these parameters.
821 </param>
822 </member>
823 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Type,System.Object[],System.Boolean)">
824 <summary>
825 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
826 </summary>
827 <param name="namingStrategyType">The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> used to write enum text.</param>
828 <param name="namingStrategyParameters">
829 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <paramref name="namingStrategyType"/>.
830 If <c>null</c>, the default constructor is used.
831 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
832 order, and type of these parameters.
833 </param>
834 <param name="allowIntegerValues"><c>true</c> if integers are allowed when serializing and deserializing; otherwise, <c>false</c>.</param>
835 </member>
836 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
837 <summary>
838 Writes the JSON representation of the object.
839 </summary>
840 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
841 <param name="value">The value.</param>
842 <param name="serializer">The calling serializer.</param>
843 </member>
844 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
845 <summary>
846 Reads the JSON representation of the object.
847 </summary>
848 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
849 <param name="objectType">Type of the object.</param>
850 <param name="existingValue">The existing value of object being read.</param>
851 <param name="serializer">The calling serializer.</param>
852 <returns>The object value.</returns>
853 </member>
854 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
855 <summary>
856 Determines whether this instance can convert the specified object type.
857 </summary>
858 <param name="objectType">Type of the object.</param>
859 <returns>
860 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
861 </returns>
862 </member>
863 <member name="T:Newtonsoft.Json.Converters.UnixDateTimeConverter">
864 <summary>
865 Converts a <see cref="T:System.DateTime"/> to and from Unix epoch time
866 </summary>
867 </member>
868 <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
869 <summary>
870 Writes the JSON representation of the object.
871 </summary>
872 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
873 <param name="value">The value.</param>
874 <param name="serializer">The calling serializer.</param>
875 </member>
876 <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
877 <summary>
878 Reads the JSON representation of the object.
879 </summary>
880 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
881 <param name="objectType">Type of the object.</param>
882 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
883 <param name="serializer">The calling serializer.</param>
884 <returns>The object value.</returns>
885 </member>
886 <member name="T:Newtonsoft.Json.Converters.VersionConverter">
887 <summary>
888 Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
889 </summary>
890 </member>
891 <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
892 <summary>
893 Writes the JSON representation of the object.
894 </summary>
895 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
896 <param name="value">The value.</param>
897 <param name="serializer">The calling serializer.</param>
898 </member>
899 <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
900 <summary>
901 Reads the JSON representation of the object.
902 </summary>
903 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
904 <param name="objectType">Type of the object.</param>
905 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
906 <param name="serializer">The calling serializer.</param>
907 <returns>The object value.</returns>
908 </member>
909 <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
910 <summary>
911 Determines whether this instance can convert the specified object type.
912 </summary>
913 <param name="objectType">Type of the object.</param>
914 <returns>
915 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
916 </returns>
917 </member>
918 <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
919 <summary>
920 Converts XML to and from JSON.
921 </summary>
922 </member>
923 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
924 <summary>
925 Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
926 </summary>
927 <value>The name of the deserialized root element.</value>
928 </member>
929 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
930 <summary>
931 Gets or sets a value to indicate whether to write the Json.NET array attribute.
932 This attribute helps preserve arrays when converting the written XML back to JSON.
933 </summary>
934 <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
935 </member>
936 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
937 <summary>
938 Gets or sets a value indicating whether to write the root JSON object.
939 </summary>
940 <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
941 </member>
942 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.EncodeSpecialCharacters">
943 <summary>
944 Gets or sets a value indicating whether to encode special characters when converting JSON to XML.
945 If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
946 XML namespaces, attributes or processing directives. Instead special characters are encoded and written
947 as part of the XML element name.
948 </summary>
949 <value><c>true</c> if special characters are encoded; otherwise, <c>false</c>.</value>
950 </member>
951 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
952 <summary>
953 Writes the JSON representation of the object.
954 </summary>
955 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
956 <param name="serializer">The calling serializer.</param>
957 <param name="value">The value.</param>
958 </member>
959 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
960 <summary>
961 Reads the JSON representation of the object.
962 </summary>
963 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
964 <param name="objectType">Type of the object.</param>
965 <param name="existingValue">The existing value of object being read.</param>
966 <param name="serializer">The calling serializer.</param>
967 <returns>The object value.</returns>
968 </member>
969 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
970 <summary>
971 Checks if the <paramref name="attributeName"/> is a namespace attribute.
972 </summary>
973 <param name="attributeName">Attribute name to test.</param>
974 <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
975 <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns>
976 </member>
977 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
978 <summary>
979 Determines whether this instance can convert the specified value type.
980 </summary>
981 <param name="valueType">Type of the value.</param>
982 <returns>
983 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
984 </returns>
985 </member>
986 <member name="T:Newtonsoft.Json.DateFormatHandling">
987 <summary>
988 Specifies how dates are formatted when writing JSON text.
989 </summary>
990 </member>
991 <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
992 <summary>
993 Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
994 </summary>
995 </member>
996 <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
997 <summary>
998 Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
999 </summary>
1000 </member>
1001 <member name="T:Newtonsoft.Json.DateParseHandling">
1002 <summary>
1003 Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text.
1004 </summary>
1005 </member>
1006 <member name="F:Newtonsoft.Json.DateParseHandling.None">
1007 <summary>
1008 Date formatted strings are not parsed to a date type and are read as strings.
1009 </summary>
1010 </member>
1011 <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1012 <summary>
1013 Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="T:System.DateTime"/>.
1014 </summary>
1015 </member>
1016 <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1017 <summary>
1018 Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="T:System.DateTimeOffset"/>.
1019 </summary>
1020 </member>
1021 <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1022 <summary>
1023 Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1024 </summary>
1025 </member>
1026 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1027 <summary>
1028 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.
1029 </summary>
1030 </member>
1031 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1032 <summary>
1033 Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1034 </summary>
1035 </member>
1036 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1037 <summary>
1038 Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
1039 If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1040 </summary>
1041 </member>
1042 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1043 <summary>
1044 Time zone information should be preserved when converting.
1045 </summary>
1046 </member>
1047 <member name="T:Newtonsoft.Json.DefaultJsonNameTable">
1048 <summary>
1049 The default JSON name table implementation.
1050 </summary>
1051 </member>
1052 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.#ctor">
1053 <summary>
1054 Initializes a new instance of the <see cref="T:Newtonsoft.Json.DefaultJsonNameTable"/> class.
1055 </summary>
1056 </member>
1057 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.Get(System.Char[],System.Int32,System.Int32)">
1058 <summary>
1059 Gets a string containing the same characters as the specified range of characters in the given array.
1060 </summary>
1061 <param name="key">The character array containing the name to find.</param>
1062 <param name="start">The zero-based index into the array specifying the first character of the name.</param>
1063 <param name="length">The number of characters in the name.</param>
1064 <returns>A string containing the same characters as the specified range of characters in the given array.</returns>
1065 </member>
1066 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.Add(System.String)">
1067 <summary>
1068 Adds the specified string into name table.
1069 </summary>
1070 <param name="key">The string to add.</param>
1071 <remarks>This method is not thread-safe.</remarks>
1072 <returns>The resolved string.</returns>
1073 </member>
1074 <member name="T:Newtonsoft.Json.DefaultValueHandling">
1075 <summary>
1076 Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1077 </summary>
1078 <example>
1079 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
1080 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
1081 </example>
1082 </member>
1083 <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
1084 <summary>
1085 Include members where the member value is the same as the member's default value when serializing objects.
1086 Included members are written to JSON. Has no effect when deserializing.
1087 </summary>
1088 </member>
1089 <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
1090 <summary>
1091 Ignore members where the member value is the same as the member's default value when serializing objects
1092 so that it is not written to JSON.
1093 This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
1094 decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
1095 placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
1096 </summary>
1097 </member>
1098 <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
1099 <summary>
1100 Members with a default value but no JSON will be set to their default value when deserializing.
1101 </summary>
1102 </member>
1103 <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
1104 <summary>
1105 Ignore members where the member value is the same as the member's default value when serializing objects
1106 and set members to their default value when deserializing.
1107 </summary>
1108 </member>
1109 <member name="T:Newtonsoft.Json.FloatFormatHandling">
1110 <summary>
1111 Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1112 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1113 </summary>
1114 </member>
1115 <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1116 <summary>
1117 Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
1118 </summary>
1119 </member>
1120 <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1121 <summary>
1122 Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>.
1123 Note that this will produce non-valid JSON.
1124 </summary>
1125 </member>
1126 <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1127 <summary>
1128 Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, <c>null</c> for a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> property.
1129 </summary>
1130 </member>
1131 <member name="T:Newtonsoft.Json.FloatParseHandling">
1132 <summary>
1133 Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1134 </summary>
1135 </member>
1136 <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1137 <summary>
1138 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1139 </summary>
1140 </member>
1141 <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1142 <summary>
1143 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1144 </summary>
1145 </member>
1146 <member name="T:Newtonsoft.Json.Formatting">
1147 <summary>
1148 Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1149 </summary>
1150 </member>
1151 <member name="F:Newtonsoft.Json.Formatting.None">
1152 <summary>
1153 No special formatting is applied. This is the default.
1154 </summary>
1155 </member>
1156 <member name="F:Newtonsoft.Json.Formatting.Indented">
1157 <summary>
1158 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.
1159 </summary>
1160 </member>
1161 <member name="T:Newtonsoft.Json.IArrayPool`1">
1162 <summary>
1163 Provides an interface for using pooled arrays.
1164 </summary>
1165 <typeparam name="T">The array type content.</typeparam>
1166 </member>
1167 <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
1168 <summary>
1169 Rent an array from the pool. This array must be returned when it is no longer needed.
1170 </summary>
1171 <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param>
1172 <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns>
1173 </member>
1174 <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
1175 <summary>
1176 Return an array to the pool.
1177 </summary>
1178 <param name="array">The array that is being returned.</param>
1179 </member>
1180 <member name="T:Newtonsoft.Json.IJsonLineInfo">
1181 <summary>
1182 Provides an interface to enable a class to return line and position information.
1183 </summary>
1184 </member>
1185 <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1186 <summary>
1187 Gets a value indicating whether the class can return line information.
1188 </summary>
1189 <returns>
1190 <c>true</c> if <see cref="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"/> and <see cref="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"/> can be provided; otherwise, <c>false</c>.
1191 </returns>
1192 </member>
1193 <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1194 <summary>
1195 Gets the current line number.
1196 </summary>
1197 <value>The current line number or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1198 </member>
1199 <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1200 <summary>
1201 Gets the current line position.
1202 </summary>
1203 <value>The current line position or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1204 </member>
1205 <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1206 <summary>
1207 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1208 </summary>
1209 </member>
1210 <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1211 <summary>
1212 Gets or sets a value indicating whether null items are allowed in the collection.
1213 </summary>
1214 <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1215 </member>
1216 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1217 <summary>
1218 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1219 </summary>
1220 </member>
1221 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1222 <summary>
1223 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items.
1224 </summary>
1225 <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1226 </member>
1227 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1228 <summary>
1229 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1230 </summary>
1231 <param name="id">The container Id.</param>
1232 </member>
1233 <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1234 <summary>
1235 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1236 </summary>
1237 </member>
1238 <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1239 <summary>
1240 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1241 </summary>
1242 </member>
1243 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1244 <summary>
1245 Gets or sets the id.
1246 </summary>
1247 <value>The id.</value>
1248 </member>
1249 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1250 <summary>
1251 Gets or sets the title.
1252 </summary>
1253 <value>The title.</value>
1254 </member>
1255 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1256 <summary>
1257 Gets or sets the description.
1258 </summary>
1259 <value>The description.</value>
1260 </member>
1261 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1262 <summary>
1263 Gets or sets the collection's items converter.
1264 </summary>
1265 <value>The collection's items converter.</value>
1266 </member>
1267 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1268 <summary>
1269 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"/>.
1270 If <c>null</c>, the default constructor is used.
1271 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1272 order, and type of these parameters.
1273 </summary>
1274 <example>
1275 <code>
1276 [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1277 </code>
1278 </example>
1279 </member>
1280 <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
1281 <summary>
1282 Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1283 </summary>
1284 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1285 </member>
1286 <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
1287 <summary>
1288 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"/>.
1289 If <c>null</c>, the default constructor is used.
1290 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
1291 order, and type of these parameters.
1292 </summary>
1293 <example>
1294 <code>
1295 [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1296 </code>
1297 </example>
1298 </member>
1299 <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1300 <summary>
1301 Gets or sets a value that indicates whether to preserve object references.
1302 </summary>
1303 <value>
1304 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1305 </value>
1306 </member>
1307 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1308 <summary>
1309 Gets or sets a value that indicates whether to preserve collection's items references.
1310 </summary>
1311 <value>
1312 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1313 </value>
1314 </member>
1315 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1316 <summary>
1317 Gets or sets the reference loop handling used when serializing the collection's items.
1318 </summary>
1319 <value>The reference loop handling.</value>
1320 </member>
1321 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1322 <summary>
1323 Gets or sets the type name handling used when serializing the collection's items.
1324 </summary>
1325 <value>The type name handling.</value>
1326 </member>
1327 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1328 <summary>
1329 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1330 </summary>
1331 </member>
1332 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1333 <summary>
1334 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1335 </summary>
1336 <param name="id">The container Id.</param>
1337 </member>
1338 <member name="T:Newtonsoft.Json.JsonConvert">
1339 <summary>
1340 Provides methods for converting between .NET types and JSON types.
1341 </summary>
1342 <example>
1343 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
1344 </example>
1345 </member>
1346 <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
1347 <summary>
1348 Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1349 Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
1350 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"/>.
1351 To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
1352 <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
1353 </summary>
1354 </member>
1355 <member name="F:Newtonsoft.Json.JsonConvert.True">
1356 <summary>
1357 Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
1358 </summary>
1359 </member>
1360 <member name="F:Newtonsoft.Json.JsonConvert.False">
1361 <summary>
1362 Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
1363 </summary>
1364 </member>
1365 <member name="F:Newtonsoft.Json.JsonConvert.Null">
1366 <summary>
1367 Represents JavaScript's <c>null</c> as a string. This field is read-only.
1368 </summary>
1369 </member>
1370 <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
1371 <summary>
1372 Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
1373 </summary>
1374 </member>
1375 <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
1376 <summary>
1377 Represents JavaScript's positive infinity as a string. This field is read-only.
1378 </summary>
1379 </member>
1380 <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
1381 <summary>
1382 Represents JavaScript's negative infinity as a string. This field is read-only.
1383 </summary>
1384 </member>
1385 <member name="F:Newtonsoft.Json.JsonConvert.NaN">
1386 <summary>
1387 Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
1388 </summary>
1389 </member>
1390 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
1391 <summary>
1392 Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
1393 </summary>
1394 <param name="value">The value to convert.</param>
1395 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1396 </member>
1397 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
1398 <summary>
1399 Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1400 </summary>
1401 <param name="value">The value to convert.</param>
1402 <param name="format">The format the date will be converted to.</param>
1403 <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
1404 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1405 </member>
1406 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
1407 <summary>
1408 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
1409 </summary>
1410 <param name="value">The value to convert.</param>
1411 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1412 </member>
1413 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
1414 <summary>
1415 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1416 </summary>
1417 <param name="value">The value to convert.</param>
1418 <param name="format">The format the date will be converted to.</param>
1419 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1420 </member>
1421 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
1422 <summary>
1423 Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
1424 </summary>
1425 <param name="value">The value to convert.</param>
1426 <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
1427 </member>
1428 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
1429 <summary>
1430 Converts the <see cref="T:System.Char"/> to its JSON string representation.
1431 </summary>
1432 <param name="value">The value to convert.</param>
1433 <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
1434 </member>
1435 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
1436 <summary>
1437 Converts the <see cref="T:System.Enum"/> to its JSON string representation.
1438 </summary>
1439 <param name="value">The value to convert.</param>
1440 <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
1441 </member>
1442 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
1443 <summary>
1444 Converts the <see cref="T:System.Int32"/> to its JSON string representation.
1445 </summary>
1446 <param name="value">The value to convert.</param>
1447 <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
1448 </member>
1449 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
1450 <summary>
1451 Converts the <see cref="T:System.Int16"/> to its JSON string representation.
1452 </summary>
1453 <param name="value">The value to convert.</param>
1454 <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
1455 </member>
1456 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
1457 <summary>
1458 Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
1459 </summary>
1460 <param name="value">The value to convert.</param>
1461 <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
1462 </member>
1463 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
1464 <summary>
1465 Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
1466 </summary>
1467 <param name="value">The value to convert.</param>
1468 <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
1469 </member>
1470 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
1471 <summary>
1472 Converts the <see cref="T:System.Int64"/> to its JSON string representation.
1473 </summary>
1474 <param name="value">The value to convert.</param>
1475 <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
1476 </member>
1477 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
1478 <summary>
1479 Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
1480 </summary>
1481 <param name="value">The value to convert.</param>
1482 <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
1483 </member>
1484 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
1485 <summary>
1486 Converts the <see cref="T:System.Single"/> to its JSON string representation.
1487 </summary>
1488 <param name="value">The value to convert.</param>
1489 <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
1490 </member>
1491 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
1492 <summary>
1493 Converts the <see cref="T:System.Double"/> to its JSON string representation.
1494 </summary>
1495 <param name="value">The value to convert.</param>
1496 <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
1497 </member>
1498 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
1499 <summary>
1500 Converts the <see cref="T:System.Byte"/> to its JSON string representation.
1501 </summary>
1502 <param name="value">The value to convert.</param>
1503 <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
1504 </member>
1505 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
1506 <summary>
1507 Converts the <see cref="T:System.SByte"/> to its JSON string representation.
1508 </summary>
1509 <param name="value">The value to convert.</param>
1510 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1511 </member>
1512 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
1513 <summary>
1514 Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
1515 </summary>
1516 <param name="value">The value to convert.</param>
1517 <returns>A JSON string representation of the <see cref="T:System.Decimal"/>.</returns>
1518 </member>
1519 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
1520 <summary>
1521 Converts the <see cref="T:System.Guid"/> to its JSON string representation.
1522 </summary>
1523 <param name="value">The value to convert.</param>
1524 <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
1525 </member>
1526 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
1527 <summary>
1528 Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
1529 </summary>
1530 <param name="value">The value to convert.</param>
1531 <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
1532 </member>
1533 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
1534 <summary>
1535 Converts the <see cref="T:System.Uri"/> to its JSON string representation.
1536 </summary>
1537 <param name="value">The value to convert.</param>
1538 <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
1539 </member>
1540 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
1541 <summary>
1542 Converts the <see cref="T:System.String"/> to its JSON string representation.
1543 </summary>
1544 <param name="value">The value to convert.</param>
1545 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1546 </member>
1547 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
1548 <summary>
1549 Converts the <see cref="T:System.String"/> to its JSON string representation.
1550 </summary>
1551 <param name="value">The value to convert.</param>
1552 <param name="delimiter">The string delimiter character.</param>
1553 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1554 </member>
1555 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
1556 <summary>
1557 Converts the <see cref="T:System.String"/> to its JSON string representation.
1558 </summary>
1559 <param name="value">The value to convert.</param>
1560 <param name="delimiter">The string delimiter character.</param>
1561 <param name="stringEscapeHandling">The string escape handling.</param>
1562 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
1563 </member>
1564 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
1565 <summary>
1566 Converts the <see cref="T:System.Object"/> to its JSON string representation.
1567 </summary>
1568 <param name="value">The value to convert.</param>
1569 <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
1570 </member>
1571 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
1572 <summary>
1573 Serializes the specified object to a JSON string.
1574 </summary>
1575 <param name="value">The object to serialize.</param>
1576 <returns>A JSON string representation of the object.</returns>
1577 </member>
1578 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
1579 <summary>
1580 Serializes the specified object to a JSON string using formatting.
1581 </summary>
1582 <param name="value">The object to serialize.</param>
1583 <param name="formatting">Indicates how the output should be formatted.</param>
1584 <returns>
1585 A JSON string representation of the object.
1586 </returns>
1587 </member>
1588 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
1589 <summary>
1590 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1591 </summary>
1592 <param name="value">The object to serialize.</param>
1593 <param name="converters">A collection of converters used while serializing.</param>
1594 <returns>A JSON string representation of the object.</returns>
1595 </member>
1596 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
1597 <summary>
1598 Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1599 </summary>
1600 <param name="value">The object to serialize.</param>
1601 <param name="formatting">Indicates how the output should be formatted.</param>
1602 <param name="converters">A collection of converters used while serializing.</param>
1603 <returns>A JSON string representation of the object.</returns>
1604 </member>
1605 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1606 <summary>
1607 Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1608 </summary>
1609 <param name="value">The object to serialize.</param>
1610 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1611 If this is <c>null</c>, default serialization settings will be used.</param>
1612 <returns>
1613 A JSON string representation of the object.
1614 </returns>
1615 </member>
1616 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1617 <summary>
1618 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1619 </summary>
1620 <param name="value">The object to serialize.</param>
1621 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1622 If this is <c>null</c>, default serialization settings will be used.</param>
1623 <param name="type">
1624 The type of the value being serialized.
1625 This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
1626 Specifying the type is optional.
1627 </param>
1628 <returns>
1629 A JSON string representation of the object.
1630 </returns>
1631 </member>
1632 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1633 <summary>
1634 Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1635 </summary>
1636 <param name="value">The object to serialize.</param>
1637 <param name="formatting">Indicates how the output should be formatted.</param>
1638 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1639 If this is <c>null</c>, default serialization settings will be used.</param>
1640 <returns>
1641 A JSON string representation of the object.
1642 </returns>
1643 </member>
1644 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
1645 <summary>
1646 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1647 </summary>
1648 <param name="value">The object to serialize.</param>
1649 <param name="formatting">Indicates how the output should be formatted.</param>
1650 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
1651 If this is <c>null</c>, default serialization settings will be used.</param>
1652 <param name="type">
1653 The type of the value being serialized.
1654 This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
1655 Specifying the type is optional.
1656 </param>
1657 <returns>
1658 A JSON string representation of the object.
1659 </returns>
1660 </member>
1661 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
1662 <summary>
1663 Deserializes the JSON to a .NET object.
1664 </summary>
1665 <param name="value">The JSON to deserialize.</param>
1666 <returns>The deserialized object from the JSON string.</returns>
1667 </member>
1668 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1669 <summary>
1670 Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1671 </summary>
1672 <param name="value">The JSON to deserialize.</param>
1673 <param name="settings">
1674 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1675 If this is <c>null</c>, default serialization settings will be used.
1676 </param>
1677 <returns>The deserialized object from the JSON string.</returns>
1678 </member>
1679 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
1680 <summary>
1681 Deserializes the JSON to the specified .NET type.
1682 </summary>
1683 <param name="value">The JSON to deserialize.</param>
1684 <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
1685 <returns>The deserialized object from the JSON string.</returns>
1686 </member>
1687 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
1688 <summary>
1689 Deserializes the JSON to the specified .NET type.
1690 </summary>
1691 <typeparam name="T">The type of the object to deserialize to.</typeparam>
1692 <param name="value">The JSON to deserialize.</param>
1693 <returns>The deserialized object from the JSON string.</returns>
1694 </member>
1695 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
1696 <summary>
1697 Deserializes the JSON to the given anonymous type.
1698 </summary>
1699 <typeparam name="T">
1700 The anonymous type to deserialize to. This can't be specified
1701 traditionally and must be inferred from the anonymous type passed
1702 as a parameter.
1703 </typeparam>
1704 <param name="value">The JSON to deserialize.</param>
1705 <param name="anonymousTypeObject">The anonymous type object.</param>
1706 <returns>The deserialized anonymous type from the JSON string.</returns>
1707 </member>
1708 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
1709 <summary>
1710 Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1711 </summary>
1712 <typeparam name="T">
1713 The anonymous type to deserialize to. This can't be specified
1714 traditionally and must be inferred from the anonymous type passed
1715 as a parameter.
1716 </typeparam>
1717 <param name="value">The JSON to deserialize.</param>
1718 <param name="anonymousTypeObject">The anonymous type object.</param>
1719 <param name="settings">
1720 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1721 If this is <c>null</c>, default serialization settings will be used.
1722 </param>
1723 <returns>The deserialized anonymous type from the JSON string.</returns>
1724 </member>
1725 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
1726 <summary>
1727 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1728 </summary>
1729 <typeparam name="T">The type of the object to deserialize to.</typeparam>
1730 <param name="value">The JSON to deserialize.</param>
1731 <param name="converters">Converters to use while deserializing.</param>
1732 <returns>The deserialized object from the JSON string.</returns>
1733 </member>
1734 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
1735 <summary>
1736 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1737 </summary>
1738 <typeparam name="T">The type of the object to deserialize to.</typeparam>
1739 <param name="value">The object to deserialize.</param>
1740 <param name="settings">
1741 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1742 If this is <c>null</c>, default serialization settings will be used.
1743 </param>
1744 <returns>The deserialized object from the JSON string.</returns>
1745 </member>
1746 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
1747 <summary>
1748 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
1749 </summary>
1750 <param name="value">The JSON to deserialize.</param>
1751 <param name="type">The type of the object to deserialize.</param>
1752 <param name="converters">Converters to use while deserializing.</param>
1753 <returns>The deserialized object from the JSON string.</returns>
1754 </member>
1755 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
1756 <summary>
1757 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1758 </summary>
1759 <param name="value">The JSON to deserialize.</param>
1760 <param name="type">The type of the object to deserialize to.</param>
1761 <param name="settings">
1762 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1763 If this is <c>null</c>, default serialization settings will be used.
1764 </param>
1765 <returns>The deserialized object from the JSON string.</returns>
1766 </member>
1767 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
1768 <summary>
1769 Populates the object with values from the JSON string.
1770 </summary>
1771 <param name="value">The JSON to populate values from.</param>
1772 <param name="target">The target object to populate values onto.</param>
1773 </member>
1774 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
1775 <summary>
1776 Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1777 </summary>
1778 <param name="value">The JSON to populate values from.</param>
1779 <param name="target">The target object to populate values onto.</param>
1780 <param name="settings">
1781 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
1782 If this is <c>null</c>, default serialization settings will be used.
1783 </param>
1784 </member>
1785 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
1786 <summary>
1787 Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string.
1788 </summary>
1789 <param name="node">The node to serialize.</param>
1790 <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1791 </member>
1792 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
1793 <summary>
1794 Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting.
1795 </summary>
1796 <param name="node">The node to serialize.</param>
1797 <param name="formatting">Indicates how the output should be formatted.</param>
1798 <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1799 </member>
1800 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
1801 <summary>
1802 Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
1803 </summary>
1804 <param name="node">The node to serialize.</param>
1805 <param name="formatting">Indicates how the output should be formatted.</param>
1806 <param name="omitRootObject">Omits writing the root object.</param>
1807 <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
1808 </member>
1809 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
1810 <summary>
1811 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string.
1812 </summary>
1813 <param name="value">The JSON string.</param>
1814 <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1815 </member>
1816 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
1817 <summary>
1818 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1819 </summary>
1820 <param name="value">The JSON string.</param>
1821 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1822 <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1823 </member>
1824 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
1825 <summary>
1826 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1827 and writes a Json.NET array attribute for collections.
1828 </summary>
1829 <param name="value">The JSON string.</param>
1830 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1831 <param name="writeArrayAttribute">
1832 A value to indicate whether to write the Json.NET array attribute.
1833 This attribute helps preserve arrays when converting the written XML back to JSON.
1834 </param>
1835 <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1836 </member>
1837 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean,System.Boolean)">
1838 <summary>
1839 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>,
1840 writes a Json.NET array attribute for collections, and encodes special characters.
1841 </summary>
1842 <param name="value">The JSON string.</param>
1843 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1844 <param name="writeArrayAttribute">
1845 A value to indicate whether to write the Json.NET array attribute.
1846 This attribute helps preserve arrays when converting the written XML back to JSON.
1847 </param>
1848 <param name="encodeSpecialCharacters">
1849 A value to indicate whether to encode special characters when converting JSON to XML.
1850 If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
1851 XML namespaces, attributes or processing directives. Instead special characters are encoded and written
1852 as part of the XML element name.
1853 </param>
1854 <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
1855 </member>
1856 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
1857 <summary>
1858 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
1859 </summary>
1860 <param name="node">The node to convert to JSON.</param>
1861 <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1862 </member>
1863 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
1864 <summary>
1865 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
1866 </summary>
1867 <param name="node">The node to convert to JSON.</param>
1868 <param name="formatting">Indicates how the output should be formatted.</param>
1869 <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1870 </member>
1871 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
1872 <summary>
1873 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>.
1874 </summary>
1875 <param name="node">The node to serialize.</param>
1876 <param name="formatting">Indicates how the output should be formatted.</param>
1877 <param name="omitRootObject">Omits writing the root object.</param>
1878 <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1879 </member>
1880 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
1881 <summary>
1882 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
1883 </summary>
1884 <param name="value">The JSON string.</param>
1885 <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1886 </member>
1887 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
1888 <summary>
1889 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
1890 </summary>
1891 <param name="value">The JSON string.</param>
1892 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1893 <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1894 </member>
1895 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
1896 <summary>
1897 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>
1898 and writes a Json.NET array attribute for collections.
1899 </summary>
1900 <param name="value">The JSON string.</param>
1901 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1902 <param name="writeArrayAttribute">
1903 A value to indicate whether to write the Json.NET array attribute.
1904 This attribute helps preserve arrays when converting the written XML back to JSON.
1905 </param>
1906 <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1907 </member>
1908 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean,System.Boolean)">
1909 <summary>
1910 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>,
1911 writes a Json.NET array attribute for collections, and encodes special characters.
1912 </summary>
1913 <param name="value">The JSON string.</param>
1914 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
1915 <param name="writeArrayAttribute">
1916 A value to indicate whether to write the Json.NET array attribute.
1917 This attribute helps preserve arrays when converting the written XML back to JSON.
1918 </param>
1919 <param name="encodeSpecialCharacters">
1920 A value to indicate whether to encode special characters when converting JSON to XML.
1921 If <c>true</c>, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
1922 XML namespaces, attributes or processing directives. Instead special characters are encoded and written
1923 as part of the XML element name.
1924 </param>
1925 <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
1926 </member>
1927 <member name="T:Newtonsoft.Json.JsonConverter">
1928 <summary>
1929 Converts an object to and from JSON.
1930 </summary>
1931 </member>
1932 <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1933 <summary>
1934 Writes the JSON representation of the object.
1935 </summary>
1936 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1937 <param name="value">The value.</param>
1938 <param name="serializer">The calling serializer.</param>
1939 </member>
1940 <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1941 <summary>
1942 Reads the JSON representation of the object.
1943 </summary>
1944 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1945 <param name="objectType">Type of the object.</param>
1946 <param name="existingValue">The existing value of object being read.</param>
1947 <param name="serializer">The calling serializer.</param>
1948 <returns>The object value.</returns>
1949 </member>
1950 <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
1951 <summary>
1952 Determines whether this instance can convert the specified object type.
1953 </summary>
1954 <param name="objectType">Type of the object.</param>
1955 <returns>
1956 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1957 </returns>
1958 </member>
1959 <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1960 <summary>
1961 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1962 </summary>
1963 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1964 </member>
1965 <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1966 <summary>
1967 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1968 </summary>
1969 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1970 </member>
1971 <member name="T:Newtonsoft.Json.JsonConverter`1">
1972 <summary>
1973 Converts an object to and from JSON.
1974 </summary>
1975 <typeparam name="T">The object type to convert.</typeparam>
1976 </member>
1977 <member name="M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1978 <summary>
1979 Writes the JSON representation of the object.
1980 </summary>
1981 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1982 <param name="value">The value.</param>
1983 <param name="serializer">The calling serializer.</param>
1984 </member>
1985 <member name="M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)">
1986 <summary>
1987 Writes the JSON representation of the object.
1988 </summary>
1989 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1990 <param name="value">The value.</param>
1991 <param name="serializer">The calling serializer.</param>
1992 </member>
1993 <member name="M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1994 <summary>
1995 Reads the JSON representation of the object.
1996 </summary>
1997 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1998 <param name="objectType">Type of the object.</param>
1999 <param name="existingValue">The existing value of object being read.</param>
2000 <param name="serializer">The calling serializer.</param>
2001 <returns>The object value.</returns>
2002 </member>
2003 <member name="M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)">
2004 <summary>
2005 Reads the JSON representation of the object.
2006 </summary>
2007 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
2008 <param name="objectType">Type of the object.</param>
2009 <param name="existingValue">The existing value of object being read. If there is no existing value then <c>null</c> will be used.</param>
2010 <param name="hasExistingValue">The existing value has a value.</param>
2011 <param name="serializer">The calling serializer.</param>
2012 <returns>The object value.</returns>
2013 </member>
2014 <member name="M:Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)">
2015 <summary>
2016 Determines whether this instance can convert the specified object type.
2017 </summary>
2018 <param name="objectType">Type of the object.</param>
2019 <returns>
2020 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
2021 </returns>
2022 </member>
2023 <member name="T:Newtonsoft.Json.JsonConverterAttribute">
2024 <summary>
2025 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
2026 </summary>
2027 </member>
2028 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
2029 <summary>
2030 Gets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2031 </summary>
2032 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
2033 </member>
2034 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
2035 <summary>
2036 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"/>.
2037 If <c>null</c>, the default constructor is used.
2038 </summary>
2039 </member>
2040 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
2041 <summary>
2042 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2043 </summary>
2044 <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
2045 </member>
2046 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
2047 <summary>
2048 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2049 </summary>
2050 <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
2051 <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/>. Can be <c>null</c>.</param>
2052 </member>
2053 <member name="T:Newtonsoft.Json.JsonConverterCollection">
2054 <summary>
2055 Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2056 </summary>
2057 </member>
2058 <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
2059 <summary>
2060 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
2061 </summary>
2062 </member>
2063 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
2064 <summary>
2065 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
2066 </summary>
2067 </member>
2068 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
2069 <summary>
2070 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
2071 </summary>
2072 <param name="id">The container Id.</param>
2073 </member>
2074 <member name="T:Newtonsoft.Json.JsonException">
2075 <summary>
2076 The exception thrown when an error occurs during JSON serialization or deserialization.
2077 </summary>
2078 </member>
2079 <member name="M:Newtonsoft.Json.JsonException.#ctor">
2080 <summary>
2081 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2082 </summary>
2083 </member>
2084 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
2085 <summary>
2086 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
2087 with a specified error message.
2088 </summary>
2089 <param name="message">The error message that explains the reason for the exception.</param>
2090 </member>
2091 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
2092 <summary>
2093 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
2094 with a specified error message and a reference to the inner exception that is the cause of this exception.
2095 </summary>
2096 <param name="message">The error message that explains the reason for the exception.</param>
2097 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2098 </member>
2099 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2100 <summary>
2101 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2102 </summary>
2103 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2104 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2105 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
2106 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
2107 </member>
2108 <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
2109 <summary>
2110 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
2111 and write values during serialization.
2112 </summary>
2113 </member>
2114 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
2115 <summary>
2116 Gets or sets a value that indicates whether to write extension data when serializing the object.
2117 </summary>
2118 <value>
2119 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2120 </value>
2121 </member>
2122 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
2123 <summary>
2124 Gets or sets a value that indicates whether to read extension data when deserializing the object.
2125 </summary>
2126 <value>
2127 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2128 </value>
2129 </member>
2130 <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
2131 <summary>
2132 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
2133 </summary>
2134 </member>
2135 <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
2136 <summary>
2137 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
2138 </summary>
2139 </member>
2140 <member name="T:Newtonsoft.Json.JsonNameTable">
2141 <summary>
2142 Base class for a table of atomized string objects.
2143 </summary>
2144 </member>
2145 <member name="M:Newtonsoft.Json.JsonNameTable.Get(System.Char[],System.Int32,System.Int32)">
2146 <summary>
2147 Gets a string containing the same characters as the specified range of characters in the given array.
2148 </summary>
2149 <param name="key">The character array containing the name to find.</param>
2150 <param name="start">The zero-based index into the array specifying the first character of the name.</param>
2151 <param name="length">The number of characters in the name.</param>
2152 <returns>A string containing the same characters as the specified range of characters in the given array.</returns>
2153 </member>
2154 <member name="T:Newtonsoft.Json.JsonObjectAttribute">
2155 <summary>
2156 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2157 </summary>
2158 </member>
2159 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
2160 <summary>
2161 Gets or sets the member serialization.
2162 </summary>
2163 <value>The member serialization.</value>
2164 </member>
2165 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MissingMemberHandling">
2166 <summary>
2167 Gets or sets the missing member handling used when deserializing this object.
2168 </summary>
2169 <value>The missing member handling.</value>
2170 </member>
2171 <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemNullValueHandling">
2172 <summary>
2173 Gets or sets how the object's properties with null values are handled during serialization and deserialization.
2174 </summary>
2175 <value>How the object's properties with null values are handled during serialization and deserialization.</value>
2176 </member>
2177 <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
2178 <summary>
2179 Gets or sets a value that indicates whether the object's properties are required.
2180 </summary>
2181 <value>
2182 A value indicating whether the object's properties are required.
2183 </value>
2184 </member>
2185 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
2186 <summary>
2187 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
2188 </summary>
2189 </member>
2190 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
2191 <summary>
2192 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
2193 </summary>
2194 <param name="memberSerialization">The member serialization.</param>
2195 </member>
2196 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
2197 <summary>
2198 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
2199 </summary>
2200 <param name="id">The container Id.</param>
2201 </member>
2202 <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
2203 <summary>
2204 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
2205 </summary>
2206 </member>
2207 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
2208 <summary>
2209 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> type used when serializing the property's collection items.
2210 </summary>
2211 <value>The collection's items <see cref="T:Newtonsoft.Json.JsonConverter"/> type.</value>
2212 </member>
2213 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
2214 <summary>
2215 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType"/>.
2216 If <c>null</c>, the default constructor is used.
2217 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
2218 order, and type of these parameters.
2219 </summary>
2220 <example>
2221 <code>
2222 [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
2223 </code>
2224 </example>
2225 </member>
2226 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType">
2227 <summary>
2228 Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
2229 </summary>
2230 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
2231 </member>
2232 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyParameters">
2233 <summary>
2234 The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType"/>.
2235 If <c>null</c>, the default constructor is used.
2236 When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
2237 order, and type of these parameters.
2238 </summary>
2239 <example>
2240 <code>
2241 [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
2242 </code>
2243 </example>
2244 </member>
2245 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
2246 <summary>
2247 Gets or sets the null value handling used when serializing this property.
2248 </summary>
2249 <value>The null value handling.</value>
2250 </member>
2251 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
2252 <summary>
2253 Gets or sets the default value handling used when serializing this property.
2254 </summary>
2255 <value>The default value handling.</value>
2256 </member>
2257 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
2258 <summary>
2259 Gets or sets the reference loop handling used when serializing this property.
2260 </summary>
2261 <value>The reference loop handling.</value>
2262 </member>
2263 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
2264 <summary>
2265 Gets or sets the object creation handling used when deserializing this property.
2266 </summary>
2267 <value>The object creation handling.</value>
2268 </member>
2269 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
2270 <summary>
2271 Gets or sets the type name handling used when serializing this property.
2272 </summary>
2273 <value>The type name handling.</value>
2274 </member>
2275 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
2276 <summary>
2277 Gets or sets whether this property's value is serialized as a reference.
2278 </summary>
2279 <value>Whether this property's value is serialized as a reference.</value>
2280 </member>
2281 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
2282 <summary>
2283 Gets or sets the order of serialization of a member.
2284 </summary>
2285 <value>The numeric order of serialization.</value>
2286 </member>
2287 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
2288 <summary>
2289 Gets or sets a value indicating whether this property is required.
2290 </summary>
2291 <value>
2292 A value indicating whether this property is required.
2293 </value>
2294 </member>
2295 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
2296 <summary>
2297 Gets or sets the name of the property.
2298 </summary>
2299 <value>The name of the property.</value>
2300 </member>
2301 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
2302 <summary>
2303 Gets or sets the reference loop handling used when serializing the property's collection items.
2304 </summary>
2305 <value>The collection's items reference loop handling.</value>
2306 </member>
2307 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
2308 <summary>
2309 Gets or sets the type name handling used when serializing the property's collection items.
2310 </summary>
2311 <value>The collection's items type name handling.</value>
2312 </member>
2313 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
2314 <summary>
2315 Gets or sets whether this property's collection items are serialized as a reference.
2316 </summary>
2317 <value>Whether this property's collection items are serialized as a reference.</value>
2318 </member>
2319 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
2320 <summary>
2321 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
2322 </summary>
2323 </member>
2324 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
2325 <summary>
2326 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
2327 </summary>
2328 <param name="propertyName">Name of the property.</param>
2329 </member>
2330 <member name="T:Newtonsoft.Json.JsonReader">
2331 <summary>
2332 Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2333 </summary>
2334 </member>
2335 <member name="M:Newtonsoft.Json.JsonReader.ReadAsync(System.Threading.CancellationToken)">
2336 <summary>
2337 Asynchronously reads the next JSON token from the source.
2338 </summary>
2339 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2340 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2341 property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
2342 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2343 classes can override this behaviour for true asynchronicity.</remarks>
2344 </member>
2345 <member name="M:Newtonsoft.Json.JsonReader.SkipAsync(System.Threading.CancellationToken)">
2346 <summary>
2347 Asynchronously skips the children of the current token.
2348 </summary>
2349 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2350 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
2351 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2352 classes can override this behaviour for true asynchronicity.</remarks>
2353 </member>
2354 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
2355 <summary>
2356 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2357 </summary>
2358 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2359 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2360 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns>
2361 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2362 classes can override this behaviour for true asynchronicity.</remarks>
2363 </member>
2364 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
2365 <summary>
2366 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2367 </summary>
2368 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2369 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2370 property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns>
2371 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2372 classes can override this behaviour for true asynchronicity.</remarks>
2373 </member>
2374 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
2375 <summary>
2376 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2377 </summary>
2378 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2379 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2380 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns>
2381 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2382 classes can override this behaviour for true asynchronicity.</remarks>
2383 </member>
2384 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
2385 <summary>
2386 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2387 </summary>
2388 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2389 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2390 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns>
2391 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2392 classes can override this behaviour for true asynchronicity.</remarks>
2393 </member>
2394 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
2395 <summary>
2396 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2397 </summary>
2398 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2399 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2400 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns>
2401 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2402 classes can override this behaviour for true asynchronicity.</remarks>
2403 </member>
2404 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
2405 <summary>
2406 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2407 </summary>
2408 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2409 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2410 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns>
2411 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2412 classes can override this behaviour for true asynchronicity.</remarks>
2413 </member>
2414 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32Async(System.Threading.CancellationToken)">
2415 <summary>
2416 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2417 </summary>
2418 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2419 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2420 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns>
2421 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2422 classes can override this behaviour for true asynchronicity.</remarks>
2423 </member>
2424 <member name="M:Newtonsoft.Json.JsonReader.ReadAsStringAsync(System.Threading.CancellationToken)">
2425 <summary>
2426 Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>.
2427 </summary>
2428 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2429 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
2430 property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns>
2431 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2432 classes can override this behaviour for true asynchronicity.</remarks>
2433 </member>
2434 <member name="T:Newtonsoft.Json.JsonReader.State">
2435 <summary>
2436 Specifies the state of the reader.
2437 </summary>
2438 </member>
2439 <member name="F:Newtonsoft.Json.JsonReader.State.Start">
2440 <summary>
2441 A <see cref="T:Newtonsoft.Json.JsonReader"/> read method has not been called.
2442 </summary>
2443 </member>
2444 <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
2445 <summary>
2446 The end of the file has been reached successfully.
2447 </summary>
2448 </member>
2449 <member name="F:Newtonsoft.Json.JsonReader.State.Property">
2450 <summary>
2451 Reader is at a property.
2452 </summary>
2453 </member>
2454 <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
2455 <summary>
2456 Reader is at the start of an object.
2457 </summary>
2458 </member>
2459 <member name="F:Newtonsoft.Json.JsonReader.State.Object">
2460 <summary>
2461 Reader is in an object.
2462 </summary>
2463 </member>
2464 <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
2465 <summary>
2466 Reader is at the start of an array.
2467 </summary>
2468 </member>
2469 <member name="F:Newtonsoft.Json.JsonReader.State.Array">
2470 <summary>
2471 Reader is in an array.
2472 </summary>
2473 </member>
2474 <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
2475 <summary>
2476 The <see cref="M:Newtonsoft.Json.JsonReader.Close"/> method has been called.
2477 </summary>
2478 </member>
2479 <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
2480 <summary>
2481 Reader has just read a value.
2482 </summary>
2483 </member>
2484 <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
2485 <summary>
2486 Reader is at the start of a constructor.
2487 </summary>
2488 </member>
2489 <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
2490 <summary>
2491 Reader is in a constructor.
2492 </summary>
2493 </member>
2494 <member name="F:Newtonsoft.Json.JsonReader.State.Error">
2495 <summary>
2496 An error occurred that prevents the read operation from continuing.
2497 </summary>
2498 </member>
2499 <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
2500 <summary>
2501 The end of the file has been reached successfully.
2502 </summary>
2503 </member>
2504 <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
2505 <summary>
2506 Gets the current reader state.
2507 </summary>
2508 <value>The current reader state.</value>
2509 </member>
2510 <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
2511 <summary>
2512 Gets or sets a value indicating whether the source should be closed when this reader is closed.
2513 </summary>
2514 <value>
2515 <c>true</c> to close the source when this reader is closed; otherwise <c>false</c>. The default is <c>true</c>.
2516 </value>
2517 </member>
2518 <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
2519 <summary>
2520 Gets or sets a value indicating whether multiple pieces of JSON content can
2521 be read from a continuous stream without erroring.
2522 </summary>
2523 <value>
2524 <c>true</c> to support reading multiple pieces of JSON content; otherwise <c>false</c>.
2525 The default is <c>false</c>.
2526 </value>
2527 </member>
2528 <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
2529 <summary>
2530 Gets the quotation mark character used to enclose the value of a string.
2531 </summary>
2532 </member>
2533 <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
2534 <summary>
2535 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON.
2536 </summary>
2537 </member>
2538 <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
2539 <summary>
2540 Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
2541 </summary>
2542 </member>
2543 <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
2544 <summary>
2545 Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2546 </summary>
2547 </member>
2548 <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
2549 <summary>
2550 Gets or sets how custom date formatted strings are parsed when reading JSON.
2551 </summary>
2552 </member>
2553 <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
2554 <summary>
2555 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
2556 </summary>
2557 </member>
2558 <member name="P:Newtonsoft.Json.JsonReader.TokenType">
2559 <summary>
2560 Gets the type of the current JSON token.
2561 </summary>
2562 </member>
2563 <member name="P:Newtonsoft.Json.JsonReader.Value">
2564 <summary>
2565 Gets the text value of the current JSON token.
2566 </summary>
2567 </member>
2568 <member name="P:Newtonsoft.Json.JsonReader.ValueType">
2569 <summary>
2570 Gets the .NET type for the current JSON token.
2571 </summary>
2572 </member>
2573 <member name="P:Newtonsoft.Json.JsonReader.Depth">
2574 <summary>
2575 Gets the depth of the current token in the JSON document.
2576 </summary>
2577 <value>The depth of the current token in the JSON document.</value>
2578 </member>
2579 <member name="P:Newtonsoft.Json.JsonReader.Path">
2580 <summary>
2581 Gets the path of the current JSON token.
2582 </summary>
2583 </member>
2584 <member name="P:Newtonsoft.Json.JsonReader.Culture">
2585 <summary>
2586 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
2587 </summary>
2588 </member>
2589 <member name="M:Newtonsoft.Json.JsonReader.#ctor">
2590 <summary>
2591 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class.
2592 </summary>
2593 </member>
2594 <member name="M:Newtonsoft.Json.JsonReader.Read">
2595 <summary>
2596 Reads the next JSON token from the source.
2597 </summary>
2598 <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
2599 </member>
2600 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
2601 <summary>
2602 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2603 </summary>
2604 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
2605 </member>
2606 <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
2607 <summary>
2608 Reads the next JSON token from the source as a <see cref="T:System.String"/>.
2609 </summary>
2610 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
2611 </member>
2612 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
2613 <summary>
2614 Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2615 </summary>
2616 <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
2617 </member>
2618 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDouble">
2619 <summary>
2620 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2621 </summary>
2622 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
2623 </member>
2624 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBoolean">
2625 <summary>
2626 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2627 </summary>
2628 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
2629 </member>
2630 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
2631 <summary>
2632 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2633 </summary>
2634 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
2635 </member>
2636 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
2637 <summary>
2638 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2639 </summary>
2640 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
2641 </member>
2642 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
2643 <summary>
2644 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2645 </summary>
2646 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
2647 </member>
2648 <member name="M:Newtonsoft.Json.JsonReader.Skip">
2649 <summary>
2650 Skips the children of the current token.
2651 </summary>
2652 </member>
2653 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
2654 <summary>
2655 Sets the current token.
2656 </summary>
2657 <param name="newToken">The new token.</param>
2658 </member>
2659 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
2660 <summary>
2661 Sets the current token and value.
2662 </summary>
2663 <param name="newToken">The new token.</param>
2664 <param name="value">The value.</param>
2665 </member>
2666 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)">
2667 <summary>
2668 Sets the current token and value.
2669 </summary>
2670 <param name="newToken">The new token.</param>
2671 <param name="value">The value.</param>
2672 <param name="updateIndex">A flag indicating whether the position index inside an array should be updated.</param>
2673 </member>
2674 <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
2675 <summary>
2676 Sets the state based on current token type.
2677 </summary>
2678 </member>
2679 <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
2680 <summary>
2681 Releases unmanaged and - optionally - managed resources.
2682 </summary>
2683 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
2684 </member>
2685 <member name="M:Newtonsoft.Json.JsonReader.Close">
2686 <summary>
2687 Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
2688 If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the source is also closed.
2689 </summary>
2690 </member>
2691 <member name="T:Newtonsoft.Json.JsonReaderException">
2692 <summary>
2693 The exception thrown when an error occurs while reading JSON text.
2694 </summary>
2695 </member>
2696 <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
2697 <summary>
2698 Gets the line number indicating where the error occurred.
2699 </summary>
2700 <value>The line number indicating where the error occurred.</value>
2701 </member>
2702 <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
2703 <summary>
2704 Gets the line position indicating where the error occurred.
2705 </summary>
2706 <value>The line position indicating where the error occurred.</value>
2707 </member>
2708 <member name="P:Newtonsoft.Json.JsonReaderException.Path">
2709 <summary>
2710 Gets the path to the JSON where the error occurred.
2711 </summary>
2712 <value>The path to the JSON where the error occurred.</value>
2713 </member>
2714 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
2715 <summary>
2716 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2717 </summary>
2718 </member>
2719 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
2720 <summary>
2721 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2722 with a specified error message.
2723 </summary>
2724 <param name="message">The error message that explains the reason for the exception.</param>
2725 </member>
2726 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
2727 <summary>
2728 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2729 with a specified error message and a reference to the inner exception that is the cause of this exception.
2730 </summary>
2731 <param name="message">The error message that explains the reason for the exception.</param>
2732 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2733 </member>
2734 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2735 <summary>
2736 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
2737 </summary>
2738 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2739 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2740 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
2741 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
2742 </member>
2743 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
2744 <summary>
2745 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2746 with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
2747 </summary>
2748 <param name="message">The error message that explains the reason for the exception.</param>
2749 <param name="path">The path to the JSON where the error occurred.</param>
2750 <param name="lineNumber">The line number indicating where the error occurred.</param>
2751 <param name="linePosition">The line position indicating where the error occurred.</param>
2752 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2753 </member>
2754 <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
2755 <summary>
2756 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value.
2757 </summary>
2758 </member>
2759 <member name="T:Newtonsoft.Json.JsonSerializationException">
2760 <summary>
2761 The exception thrown when an error occurs during JSON serialization or deserialization.
2762 </summary>
2763 </member>
2764 <member name="P:Newtonsoft.Json.JsonSerializationException.LineNumber">
2765 <summary>
2766 Gets the line number indicating where the error occurred.
2767 </summary>
2768 <value>The line number indicating where the error occurred.</value>
2769 </member>
2770 <member name="P:Newtonsoft.Json.JsonSerializationException.LinePosition">
2771 <summary>
2772 Gets the line position indicating where the error occurred.
2773 </summary>
2774 <value>The line position indicating where the error occurred.</value>
2775 </member>
2776 <member name="P:Newtonsoft.Json.JsonSerializationException.Path">
2777 <summary>
2778 Gets the path to the JSON where the error occurred.
2779 </summary>
2780 <value>The path to the JSON where the error occurred.</value>
2781 </member>
2782 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
2783 <summary>
2784 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2785 </summary>
2786 </member>
2787 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
2788 <summary>
2789 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2790 with a specified error message.
2791 </summary>
2792 <param name="message">The error message that explains the reason for the exception.</param>
2793 </member>
2794 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
2795 <summary>
2796 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2797 with a specified error message and a reference to the inner exception that is the cause of this exception.
2798 </summary>
2799 <param name="message">The error message that explains the reason for the exception.</param>
2800 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2801 </member>
2802 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2803 <summary>
2804 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
2805 </summary>
2806 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2807 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
2808 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
2809 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
2810 </member>
2811 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
2812 <summary>
2813 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2814 with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
2815 </summary>
2816 <param name="message">The error message that explains the reason for the exception.</param>
2817 <param name="path">The path to the JSON where the error occurred.</param>
2818 <param name="lineNumber">The line number indicating where the error occurred.</param>
2819 <param name="linePosition">The line position indicating where the error occurred.</param>
2820 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
2821 </member>
2822 <member name="T:Newtonsoft.Json.JsonSerializer">
2823 <summary>
2824 Serializes and deserializes objects into and from the JSON format.
2825 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
2826 </summary>
2827 </member>
2828 <member name="E:Newtonsoft.Json.JsonSerializer.Error">
2829 <summary>
2830 Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
2831 </summary>
2832 </member>
2833 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
2834 <summary>
2835 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2836 </summary>
2837 </member>
2838 <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
2839 <summary>
2840 Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/> used by the serializer when resolving type names.
2841 </summary>
2842 </member>
2843 <member name="P:Newtonsoft.Json.JsonSerializer.SerializationBinder">
2844 <summary>
2845 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
2846 </summary>
2847 </member>
2848 <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
2849 <summary>
2850 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
2851 </summary>
2852 <value>The trace writer.</value>
2853 </member>
2854 <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
2855 <summary>
2856 Gets or sets the equality comparer used by the serializer when comparing references.
2857 </summary>
2858 <value>The equality comparer.</value>
2859 </member>
2860 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
2861 <summary>
2862 Gets or sets how type name writing and reading is handled by the serializer.
2863 The default value is <see cref="F:Newtonsoft.Json.TypeNameHandling.None" />.
2864 </summary>
2865 <remarks>
2866 <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
2867 Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
2868 when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
2869 </remarks>
2870 </member>
2871 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
2872 <summary>
2873 Gets or sets how a type name assembly is written and resolved by the serializer.
2874 The default value is <see cref="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple" />.
2875 </summary>
2876 <value>The type name assembly format.</value>
2877 </member>
2878 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormatHandling">
2879 <summary>
2880 Gets or sets how a type name assembly is written and resolved by the serializer.
2881 The default value is <see cref="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple" />.
2882 </summary>
2883 <value>The type name assembly format.</value>
2884 </member>
2885 <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
2886 <summary>
2887 Gets or sets how object references are preserved by the serializer.
2888 The default value is <see cref="F:Newtonsoft.Json.PreserveReferencesHandling.None" />.
2889 </summary>
2890 </member>
2891 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
2892 <summary>
2893 Gets or sets how reference loops (e.g. a class referencing itself) is handled.
2894 The default value is <see cref="F:Newtonsoft.Json.ReferenceLoopHandling.Error" />.
2895 </summary>
2896 </member>
2897 <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
2898 <summary>
2899 Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2900 The default value is <see cref="F:Newtonsoft.Json.MissingMemberHandling.Ignore" />.
2901 </summary>
2902 </member>
2903 <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
2904 <summary>
2905 Gets or sets how null values are handled during serialization and deserialization.
2906 The default value is <see cref="F:Newtonsoft.Json.NullValueHandling.Include" />.
2907 </summary>
2908 </member>
2909 <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
2910 <summary>
2911 Gets or sets how default values are handled during serialization and deserialization.
2912 The default value is <see cref="F:Newtonsoft.Json.DefaultValueHandling.Include" />.
2913 </summary>
2914 </member>
2915 <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
2916 <summary>
2917 Gets or sets how objects are created during deserialization.
2918 The default value is <see cref="F:Newtonsoft.Json.ObjectCreationHandling.Auto" />.
2919 </summary>
2920 <value>The object creation handling.</value>
2921 </member>
2922 <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
2923 <summary>
2924 Gets or sets how constructors are used during deserialization.
2925 The default value is <see cref="F:Newtonsoft.Json.ConstructorHandling.Default" />.
2926 </summary>
2927 <value>The constructor handling.</value>
2928 </member>
2929 <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
2930 <summary>
2931 Gets or sets how metadata properties are used during deserialization.
2932 The default value is <see cref="F:Newtonsoft.Json.MetadataPropertyHandling.Default" />.
2933 </summary>
2934 <value>The metadata properties handling.</value>
2935 </member>
2936 <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
2937 <summary>
2938 Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
2939 </summary>
2940 <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
2941 </member>
2942 <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
2943 <summary>
2944 Gets or sets the contract resolver used by the serializer when
2945 serializing .NET objects to JSON and vice versa.
2946 </summary>
2947 </member>
2948 <member name="P:Newtonsoft.Json.JsonSerializer.Context">
2949 <summary>
2950 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
2951 </summary>
2952 <value>The context.</value>
2953 </member>
2954 <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
2955 <summary>
2956 Indicates how JSON text output is formatted.
2957 The default value is <see cref="F:Newtonsoft.Json.Formatting.None" />.
2958 </summary>
2959 </member>
2960 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
2961 <summary>
2962 Gets or sets how dates are written to JSON text.
2963 The default value is <see cref="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat" />.
2964 </summary>
2965 </member>
2966 <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
2967 <summary>
2968 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
2969 The default value is <see cref="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind" />.
2970 </summary>
2971 </member>
2972 <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
2973 <summary>
2974 Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON.
2975 The default value is <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime" />.
2976 </summary>
2977 </member>
2978 <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
2979 <summary>
2980 Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
2981 The default value is <see cref="F:Newtonsoft.Json.FloatParseHandling.Double" />.
2982 </summary>
2983 </member>
2984 <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
2985 <summary>
2986 Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
2987 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
2988 are written as JSON text.
2989 The default value is <see cref="F:Newtonsoft.Json.FloatFormatHandling.String" />.
2990 </summary>
2991 </member>
2992 <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
2993 <summary>
2994 Gets or sets how strings are escaped when writing JSON text.
2995 The default value is <see cref="F:Newtonsoft.Json.StringEscapeHandling.Default" />.
2996 </summary>
2997 </member>
2998 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
2999 <summary>
3000 Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
3001 and the expected date format when reading JSON text.
3002 The default value is <c>"yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"</c>.
3003 </summary>
3004 </member>
3005 <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
3006 <summary>
3007 Gets or sets the culture used when reading JSON.
3008 The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3009 </summary>
3010 </member>
3011 <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
3012 <summary>
3013 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3014 A null value means there is no maximum.
3015 The default value is <c>null</c>.
3016 </summary>
3017 </member>
3018 <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
3019 <summary>
3020 Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
3021 The default value is <c>false</c>.
3022 </summary>
3023 <value>
3024 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
3025 </value>
3026 </member>
3027 <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
3028 <summary>
3029 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
3030 </summary>
3031 </member>
3032 <member name="M:Newtonsoft.Json.JsonSerializer.Create">
3033 <summary>
3034 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3035 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings
3036 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3037 </summary>
3038 <returns>
3039 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3040 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings
3041 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3042 </returns>
3043 </member>
3044 <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
3045 <summary>
3046 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3047 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings
3048 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3049 </summary>
3050 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
3051 <returns>
3052 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3053 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings
3054 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3055 </returns>
3056 </member>
3057 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
3058 <summary>
3059 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3060 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings
3061 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3062 </summary>
3063 <returns>
3064 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3065 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings
3066 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3067 </returns>
3068 </member>
3069 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
3070 <summary>
3071 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3072 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings
3073 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3074 </summary>
3075 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
3076 <returns>
3077 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3078 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings
3079 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/> as well as the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
3080 </returns>
3081 </member>
3082 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
3083 <summary>
3084 Populates the JSON values onto the target object.
3085 </summary>
3086 <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to read values from.</param>
3087 <param name="target">The target object to populate values onto.</param>
3088 </member>
3089 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
3090 <summary>
3091 Populates the JSON values onto the target object.
3092 </summary>
3093 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to read values from.</param>
3094 <param name="target">The target object to populate values onto.</param>
3095 </member>
3096 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
3097 <summary>
3098 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
3099 </summary>
3100 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
3101 <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
3102 </member>
3103 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
3104 <summary>
3105 Deserializes the JSON structure contained by the specified <see cref="T:System.IO.TextReader"/>
3106 into an instance of the specified type.
3107 </summary>
3108 <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
3109 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
3110 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
3111 </member>
3112 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
3113 <summary>
3114 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3115 into an instance of the specified type.
3116 </summary>
3117 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
3118 <typeparam name="T">The type of the object to deserialize.</typeparam>
3119 <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
3120 </member>
3121 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
3122 <summary>
3123 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3124 into an instance of the specified type.
3125 </summary>
3126 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
3127 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
3128 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
3129 </member>
3130 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
3131 <summary>
3132 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3133 using the specified <see cref="T:System.IO.TextWriter"/>.
3134 </summary>
3135 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
3136 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3137 </member>
3138 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
3139 <summary>
3140 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3141 using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3142 </summary>
3143 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
3144 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3145 <param name="objectType">
3146 The type of the value being serialized.
3147 This parameter is used when <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> is <see cref="F:Newtonsoft.Json.TypeNameHandling.Auto"/> to write out the type name if the type of the value does not match.
3148 Specifying the type is optional.
3149 </param>
3150 </member>
3151 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
3152 <summary>
3153 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3154 using the specified <see cref="T:System.IO.TextWriter"/>.
3155 </summary>
3156 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the JSON structure.</param>
3157 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3158 <param name="objectType">
3159 The type of the value being serialized.
3160 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.
3161 Specifying the type is optional.
3162 </param>
3163 </member>
3164 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
3165 <summary>
3166 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3167 using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3168 </summary>
3169 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
3170 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3171 </member>
3172 <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3173 <summary>
3174 Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3175 </summary>
3176 </member>
3177 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3178 <summary>
3179 Gets or sets how reference loops (e.g. a class referencing itself) are handled.
3180 The default value is <see cref="F:Newtonsoft.Json.ReferenceLoopHandling.Error" />.
3181 </summary>
3182 <value>Reference loop handling.</value>
3183 </member>
3184 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3185 <summary>
3186 Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
3187 The default value is <see cref="F:Newtonsoft.Json.MissingMemberHandling.Ignore" />.
3188 </summary>
3189 <value>Missing member handling.</value>
3190 </member>
3191 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3192 <summary>
3193 Gets or sets how objects are created during deserialization.
3194 The default value is <see cref="F:Newtonsoft.Json.ObjectCreationHandling.Auto" />.
3195 </summary>
3196 <value>The object creation handling.</value>
3197 </member>
3198 <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3199 <summary>
3200 Gets or sets how null values are handled during serialization and deserialization.
3201 The default value is <see cref="F:Newtonsoft.Json.NullValueHandling.Include" />.
3202 </summary>
3203 <value>Null value handling.</value>
3204 </member>
3205 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3206 <summary>
3207 Gets or sets how default values are handled during serialization and deserialization.
3208 The default value is <see cref="F:Newtonsoft.Json.DefaultValueHandling.Include" />.
3209 </summary>
3210 <value>The default value handling.</value>
3211 </member>
3212 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3213 <summary>
3214 Gets or sets a <see cref="T:Newtonsoft.Json.JsonConverter"/> collection that will be used during serialization.
3215 </summary>
3216 <value>The converters.</value>
3217 </member>
3218 <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3219 <summary>
3220 Gets or sets how object references are preserved by the serializer.
3221 The default value is <see cref="F:Newtonsoft.Json.PreserveReferencesHandling.None" />.
3222 </summary>
3223 <value>The preserve references handling.</value>
3224 </member>
3225 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3226 <summary>
3227 Gets or sets how type name writing and reading is handled by the serializer.
3228 The default value is <see cref="F:Newtonsoft.Json.TypeNameHandling.None" />.
3229 </summary>
3230 <remarks>
3231 <see cref="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
3232 Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/>
3233 when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
3234 </remarks>
3235 <value>The type name handling.</value>
3236 </member>
3237 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3238 <summary>
3239 Gets or sets how metadata properties are used during deserialization.
3240 The default value is <see cref="F:Newtonsoft.Json.MetadataPropertyHandling.Default" />.
3241 </summary>
3242 <value>The metadata properties handling.</value>
3243 </member>
3244 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3245 <summary>
3246 Gets or sets how a type name assembly is written and resolved by the serializer.
3247 The default value is <see cref="F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple" />.
3248 </summary>
3249 <value>The type name assembly format.</value>
3250 </member>
3251 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormatHandling">
3252 <summary>
3253 Gets or sets how a type name assembly is written and resolved by the serializer.
3254 The default value is <see cref="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple" />.
3255 </summary>
3256 <value>The type name assembly format.</value>
3257 </member>
3258 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3259 <summary>
3260 Gets or sets how constructors are used during deserialization.
3261 The default value is <see cref="F:Newtonsoft.Json.ConstructorHandling.Default" />.
3262 </summary>
3263 <value>The constructor handling.</value>
3264 </member>
3265 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
3266 <summary>
3267 Gets or sets the contract resolver used by the serializer when
3268 serializing .NET objects to JSON and vice versa.
3269 </summary>
3270 <value>The contract resolver.</value>
3271 </member>
3272 <member name="P:Newtonsoft.Json.JsonSerializerSettings.EqualityComparer">
3273 <summary>
3274 Gets or sets the equality comparer used by the serializer when comparing references.
3275 </summary>
3276 <value>The equality comparer.</value>
3277 </member>
3278 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3279 <summary>
3280 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3281 </summary>
3282 <value>The reference resolver.</value>
3283 </member>
3284 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolverProvider">
3285 <summary>
3286 Gets or sets a function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3287 </summary>
3288 <value>A function that creates the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.</value>
3289 </member>
3290 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3291 <summary>
3292 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3293 </summary>
3294 <value>The trace writer.</value>
3295 </member>
3296 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3297 <summary>
3298 Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder"/> used by the serializer when resolving type names.
3299 </summary>
3300 <value>The binder.</value>
3301 </member>
3302 <member name="P:Newtonsoft.Json.JsonSerializerSettings.SerializationBinder">
3303 <summary>
3304 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
3305 </summary>
3306 <value>The binder.</value>
3307 </member>
3308 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
3309 <summary>
3310 Gets or sets the error handler called during serialization and deserialization.
3311 </summary>
3312 <value>The error handler called during serialization and deserialization.</value>
3313 </member>
3314 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
3315 <summary>
3316 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3317 </summary>
3318 <value>The context.</value>
3319 </member>
3320 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3321 <summary>
3322 Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text,
3323 and the expected date format when reading JSON text.
3324 The default value is <c>"yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"</c>.
3325 </summary>
3326 </member>
3327 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3328 <summary>
3329 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3330 A null value means there is no maximum.
3331 The default value is <c>null</c>.
3332 </summary>
3333 </member>
3334 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3335 <summary>
3336 Indicates how JSON text output is formatted.
3337 The default value is <see cref="F:Newtonsoft.Json.Formatting.None" />.
3338 </summary>
3339 </member>
3340 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3341 <summary>
3342 Gets or sets how dates are written to JSON text.
3343 The default value is <see cref="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat" />.
3344 </summary>
3345 </member>
3346 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3347 <summary>
3348 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled during serialization and deserialization.
3349 The default value is <see cref="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind" />.
3350 </summary>
3351 </member>
3352 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3353 <summary>
3354 Gets or sets how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON.
3355 The default value is <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime" />.
3356 </summary>
3357 </member>
3358 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3359 <summary>
3360 Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3361 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3362 are written as JSON.
3363 The default value is <see cref="F:Newtonsoft.Json.FloatFormatHandling.String" />.
3364 </summary>
3365 </member>
3366 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3367 <summary>
3368 Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3369 The default value is <see cref="F:Newtonsoft.Json.FloatParseHandling.Double" />.
3370 </summary>
3371 </member>
3372 <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3373 <summary>
3374 Gets or sets how strings are escaped when writing JSON text.
3375 The default value is <see cref="F:Newtonsoft.Json.StringEscapeHandling.Default" />.
3376 </summary>
3377 </member>
3378 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3379 <summary>
3380 Gets or sets the culture used when reading JSON.
3381 The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3382 </summary>
3383 </member>
3384 <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3385 <summary>
3386 Gets a value indicating whether there will be a check for additional content after deserializing an object.
3387 The default value is <c>false</c>.
3388 </summary>
3389 <value>
3390 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3391 </value>
3392 </member>
3393 <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3394 <summary>
3395 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3396 </summary>
3397 </member>
3398 <member name="T:Newtonsoft.Json.JsonTextReader">
3399 <summary>
3400 Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3401 </summary>
3402 </member>
3403 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsync(System.Threading.CancellationToken)">
3404 <summary>
3405 Asynchronously reads the next JSON token from the source.
3406 </summary>
3407 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3408 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3409 property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
3410 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3411 execute synchronously, returning an already-completed task.</remarks>
3412 </member>
3413 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
3414 <summary>
3415 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
3416 </summary>
3417 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3418 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3419 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This result will be <c>null</c> at the end of an array.</returns>
3420 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3421 execute synchronously, returning an already-completed task.</remarks>
3422 </member>
3423 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
3424 <summary>
3425 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
3426 </summary>
3427 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3428 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3429 property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns>
3430 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3431 execute synchronously, returning an already-completed task.</remarks>
3432 </member>
3433 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
3434 <summary>
3435 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
3436 </summary>
3437 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3438 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3439 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This result will be <c>null</c> at the end of an array.</returns>
3440 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3441 execute synchronously, returning an already-completed task.</remarks>
3442 </member>
3443 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
3444 <summary>
3445 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
3446 </summary>
3447 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3448 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3449 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This result will be <c>null</c> at the end of an array.</returns>
3450 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3451 execute synchronously, returning an already-completed task.</remarks>
3452 </member>
3453 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
3454 <summary>
3455 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
3456 </summary>
3457 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3458 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3459 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This result will be <c>null</c> at the end of an array.</returns>
3460 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3461 execute synchronously, returning an already-completed task.</remarks>
3462 </member>
3463 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
3464 <summary>
3465 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3466 </summary>
3467 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3468 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3469 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This result will be <c>null</c> at the end of an array.</returns>
3470 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3471 execute synchronously, returning an already-completed task.</remarks>
3472 </member>
3473 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32Async(System.Threading.CancellationToken)">
3474 <summary>
3475 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
3476 </summary>
3477 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3478 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3479 property returns the <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This result will be <c>null</c> at the end of an array.</returns>
3480 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3481 execute synchronously, returning an already-completed task.</remarks>
3482 </member>
3483 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsStringAsync(System.Threading.CancellationToken)">
3484 <summary>
3485 Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>.
3486 </summary>
3487 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3488 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
3489 property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns>
3490 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3491 execute synchronously, returning an already-completed task.</remarks>
3492 </member>
3493 <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3494 <summary>
3495 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3496 </summary>
3497 <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the JSON data to read.</param>
3498 </member>
3499 <member name="P:Newtonsoft.Json.JsonTextReader.PropertyNameTable">
3500 <summary>
3501 Gets or sets the reader's property name table.
3502 </summary>
3503 </member>
3504 <member name="P:Newtonsoft.Json.JsonTextReader.ArrayPool">
3505 <summary>
3506 Gets or sets the reader's character buffer pool.
3507 </summary>
3508 </member>
3509 <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3510 <summary>
3511 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/>.
3512 </summary>
3513 <returns>
3514 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
3515 </returns>
3516 </member>
3517 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3518 <summary>
3519 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
3520 </summary>
3521 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>. This method will return <c>null</c> at the end of an array.</returns>
3522 </member>
3523 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3524 <summary>
3525 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
3526 </summary>
3527 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
3528 </member>
3529 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3530 <summary>
3531 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>.
3532 </summary>
3533 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3534 </member>
3535 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3536 <summary>
3537 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[].
3538 </summary>
3539 <returns>A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
3540 </member>
3541 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBoolean">
3542 <summary>
3543 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
3544 </summary>
3545 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>. This method will return <c>null</c> at the end of an array.</returns>
3546 </member>
3547 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3548 <summary>
3549 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
3550 </summary>
3551 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns>
3552 </member>
3553 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3554 <summary>
3555 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
3556 </summary>
3557 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>. This method will return <c>null</c> at the end of an array.</returns>
3558 </member>
3559 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDouble">
3560 <summary>
3561 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3562 </summary>
3563 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>. This method will return <c>null</c> at the end of an array.</returns>
3564 </member>
3565 <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3566 <summary>
3567 Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
3568 If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextReader"/> is also closed.
3569 </summary>
3570 </member>
3571 <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3572 <summary>
3573 Gets a value indicating whether the class can return line information.
3574 </summary>
3575 <returns>
3576 <c>true</c> if <see cref="P:Newtonsoft.Json.JsonTextReader.LineNumber"/> and <see cref="P:Newtonsoft.Json.JsonTextReader.LinePosition"/> can be provided; otherwise, <c>false</c>.
3577 </returns>
3578 </member>
3579 <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3580 <summary>
3581 Gets the current line number.
3582 </summary>
3583 <value>
3584 The current line number or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
3585 </value>
3586 </member>
3587 <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3588 <summary>
3589 Gets the current line position.
3590 </summary>
3591 <value>
3592 The current line position or 0 if no line information is available (for example, <see cref="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"/> returns <c>false</c>).
3593 </value>
3594 </member>
3595 <member name="T:Newtonsoft.Json.JsonTextWriter">
3596 <summary>
3597 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3598 </summary>
3599 </member>
3600 <member name="M:Newtonsoft.Json.JsonTextWriter.FlushAsync(System.Threading.CancellationToken)">
3601 <summary>
3602 Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
3603 </summary>
3604 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3605 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3606 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3607 execute synchronously, returning an already-completed task.</remarks>
3608 </member>
3609 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
3610 <summary>
3611 Asynchronously writes the JSON value delimiter.
3612 </summary>
3613 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3614 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3615 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3616 execute synchronously, returning an already-completed task.</remarks>
3617 </member>
3618 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
3619 <summary>
3620 Asynchronously writes the specified end token.
3621 </summary>
3622 <param name="token">The end token to write.</param>
3623 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3624 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3625 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3626 execute synchronously, returning an already-completed task.</remarks>
3627 </member>
3628 <member name="M:Newtonsoft.Json.JsonTextWriter.CloseAsync(System.Threading.CancellationToken)">
3629 <summary>
3630 Asynchronously closes this writer.
3631 If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
3632 </summary>
3633 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3634 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3635 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3636 execute synchronously, returning an already-completed task.</remarks>
3637 </member>
3638 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(System.Threading.CancellationToken)">
3639 <summary>
3640 Asynchronously writes the end of the current JSON object or array.
3641 </summary>
3642 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3643 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3644 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3645 execute synchronously, returning an already-completed task.</remarks>
3646 </member>
3647 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentAsync(System.Threading.CancellationToken)">
3648 <summary>
3649 Asynchronously writes indent characters.
3650 </summary>
3651 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3652 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3653 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3654 execute synchronously, returning an already-completed task.</remarks>
3655 </member>
3656 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
3657 <summary>
3658 Asynchronously writes an indent space.
3659 </summary>
3660 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3661 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3662 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3663 execute synchronously, returning an already-completed task.</remarks>
3664 </member>
3665 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
3666 <summary>
3667 Asynchronously writes raw JSON without changing the writer's state.
3668 </summary>
3669 <param name="json">The raw JSON to write.</param>
3670 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3671 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3672 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3673 execute synchronously, returning an already-completed task.</remarks>
3674 </member>
3675 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNullAsync(System.Threading.CancellationToken)">
3676 <summary>
3677 Asynchronously writes a null value.
3678 </summary>
3679 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3680 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3681 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3682 execute synchronously, returning an already-completed task.</remarks>
3683 </member>
3684 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
3685 <summary>
3686 Asynchronously writes the property name of a name/value pair of a JSON object.
3687 </summary>
3688 <param name="name">The name of the property.</param>
3689 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3690 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3691 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3692 execute synchronously, returning an already-completed task.</remarks>
3693 </member>
3694 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
3695 <summary>
3696 Asynchronously writes the property name of a name/value pair of a JSON object.
3697 </summary>
3698 <param name="name">The name of the property.</param>
3699 <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
3700 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3701 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3702 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3703 execute synchronously, returning an already-completed task.</remarks>
3704 </member>
3705 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
3706 <summary>
3707 Asynchronously writes the beginning of a JSON array.
3708 </summary>
3709 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3710 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3711 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3712 execute synchronously, returning an already-completed task.</remarks>
3713 </member>
3714 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
3715 <summary>
3716 Asynchronously writes the beginning of a JSON object.
3717 </summary>
3718 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3719 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3720 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3721 execute synchronously, returning an already-completed task.</remarks>
3722 </member>
3723 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
3724 <summary>
3725 Asynchronously writes the start of a constructor with the given name.
3726 </summary>
3727 <param name="name">The name of the constructor.</param>
3728 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3729 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3730 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3731 execute synchronously, returning an already-completed task.</remarks>
3732 </member>
3733 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
3734 <summary>
3735 Asynchronously writes an undefined value.
3736 </summary>
3737 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3738 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3739 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3740 execute synchronously, returning an already-completed task.</remarks>
3741 </member>
3742 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
3743 <summary>
3744 Asynchronously writes the given white space.
3745 </summary>
3746 <param name="ws">The string of white space characters.</param>
3747 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3748 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3749 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3750 execute synchronously, returning an already-completed task.</remarks>
3751 </member>
3752 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
3753 <summary>
3754 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
3755 </summary>
3756 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
3757 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3758 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3759 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3760 execute synchronously, returning an already-completed task.</remarks>
3761 </member>
3762 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
3763 <summary>
3764 Asynchronously writes a <see cref="T:System.Boolean"/> value.
3765 </summary>
3766 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3767 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3768 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3769 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3770 execute synchronously, returning an already-completed task.</remarks>
3771 </member>
3772 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
3773 <summary>
3774 Asynchronously writes a <see cref="T:System.Byte"/> value.
3775 </summary>
3776 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3777 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3778 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3779 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3780 execute synchronously, returning an already-completed task.</remarks>
3781 </member>
3782 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
3783 <summary>
3784 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
3785 </summary>
3786 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
3787 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3788 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3789 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3790 execute synchronously, returning an already-completed task.</remarks>
3791 </member>
3792 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
3793 <summary>
3794 Asynchronously writes a <see cref="T:System.Byte"/>[] value.
3795 </summary>
3796 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
3797 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3798 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3799 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3800 execute synchronously, returning an already-completed task.</remarks>
3801 </member>
3802 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
3803 <summary>
3804 Asynchronously writes a <see cref="T:System.Char"/> value.
3805 </summary>
3806 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3807 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3808 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3809 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3810 execute synchronously, returning an already-completed task.</remarks>
3811 </member>
3812 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
3813 <summary>
3814 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
3815 </summary>
3816 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
3817 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3818 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3819 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3820 execute synchronously, returning an already-completed task.</remarks>
3821 </member>
3822 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
3823 <summary>
3824 Asynchronously writes a <see cref="T:System.DateTime"/> value.
3825 </summary>
3826 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3827 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3828 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3829 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3830 execute synchronously, returning an already-completed task.</remarks>
3831 </member>
3832 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
3833 <summary>
3834 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
3835 </summary>
3836 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
3837 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3838 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3839 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3840 execute synchronously, returning an already-completed task.</remarks>
3841 </member>
3842 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
3843 <summary>
3844 Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
3845 </summary>
3846 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3847 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3848 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3849 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3850 execute synchronously, returning an already-completed task.</remarks>
3851 </member>
3852 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
3853 <summary>
3854 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
3855 </summary>
3856 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
3857 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3858 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3859 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3860 execute synchronously, returning an already-completed task.</remarks>
3861 </member>
3862 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
3863 <summary>
3864 Asynchronously writes a <see cref="T:System.Decimal"/> value.
3865 </summary>
3866 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3867 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3868 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3869 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3870 execute synchronously, returning an already-completed task.</remarks>
3871 </member>
3872 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
3873 <summary>
3874 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
3875 </summary>
3876 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
3877 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3878 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3879 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3880 execute synchronously, returning an already-completed task.</remarks>
3881 </member>
3882 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
3883 <summary>
3884 Asynchronously writes a <see cref="T:System.Double"/> value.
3885 </summary>
3886 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3887 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3888 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3889 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3890 execute synchronously, returning an already-completed task.</remarks>
3891 </member>
3892 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
3893 <summary>
3894 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
3895 </summary>
3896 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
3897 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3898 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3899 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3900 execute synchronously, returning an already-completed task.</remarks>
3901 </member>
3902 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
3903 <summary>
3904 Asynchronously writes a <see cref="T:System.Single"/> value.
3905 </summary>
3906 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3907 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3908 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3909 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3910 execute synchronously, returning an already-completed task.</remarks>
3911 </member>
3912 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
3913 <summary>
3914 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
3915 </summary>
3916 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
3917 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3918 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3919 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3920 execute synchronously, returning an already-completed task.</remarks>
3921 </member>
3922 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
3923 <summary>
3924 Asynchronously writes a <see cref="T:System.Guid"/> value.
3925 </summary>
3926 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3927 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3928 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3929 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3930 execute synchronously, returning an already-completed task.</remarks>
3931 </member>
3932 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
3933 <summary>
3934 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
3935 </summary>
3936 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
3937 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3938 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3939 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3940 execute synchronously, returning an already-completed task.</remarks>
3941 </member>
3942 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
3943 <summary>
3944 Asynchronously writes a <see cref="T:System.Int32"/> value.
3945 </summary>
3946 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3947 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3948 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3949 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3950 execute synchronously, returning an already-completed task.</remarks>
3951 </member>
3952 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
3953 <summary>
3954 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
3955 </summary>
3956 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
3957 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3958 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3959 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3960 execute synchronously, returning an already-completed task.</remarks>
3961 </member>
3962 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
3963 <summary>
3964 Asynchronously writes a <see cref="T:System.Int64"/> value.
3965 </summary>
3966 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3967 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3968 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3969 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3970 execute synchronously, returning an already-completed task.</remarks>
3971 </member>
3972 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
3973 <summary>
3974 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
3975 </summary>
3976 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
3977 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3978 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3979 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3980 execute synchronously, returning an already-completed task.</remarks>
3981 </member>
3982 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
3983 <summary>
3984 Asynchronously writes a <see cref="T:System.Object"/> value.
3985 </summary>
3986 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
3987 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3988 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3989 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3990 execute synchronously, returning an already-completed task.</remarks>
3991 </member>
3992 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
3993 <summary>
3994 Asynchronously writes a <see cref="T:System.SByte"/> value.
3995 </summary>
3996 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3997 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3998 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3999 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4000 execute synchronously, returning an already-completed task.</remarks>
4001 </member>
4002 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
4003 <summary>
4004 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
4005 </summary>
4006 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
4007 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4008 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4009 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4010 execute synchronously, returning an already-completed task.</remarks>
4011 </member>
4012 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
4013 <summary>
4014 Asynchronously writes a <see cref="T:System.Int16"/> value.
4015 </summary>
4016 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4017 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4018 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4019 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4020 execute synchronously, returning an already-completed task.</remarks>
4021 </member>
4022 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
4023 <summary>
4024 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
4025 </summary>
4026 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
4027 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4028 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4029 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4030 execute synchronously, returning an already-completed task.</remarks>
4031 </member>
4032 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
4033 <summary>
4034 Asynchronously writes a <see cref="T:System.String"/> value.
4035 </summary>
4036 <param name="value">The <see cref="T:System.String"/> value to write.</param>
4037 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4038 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4039 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4040 execute synchronously, returning an already-completed task.</remarks>
4041 </member>
4042 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
4043 <summary>
4044 Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
4045 </summary>
4046 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4047 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4048 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4049 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4050 execute synchronously, returning an already-completed task.</remarks>
4051 </member>
4052 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
4053 <summary>
4054 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
4055 </summary>
4056 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
4057 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4058 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4059 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4060 execute synchronously, returning an already-completed task.</remarks>
4061 </member>
4062 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
4063 <summary>
4064 Asynchronously writes a <see cref="T:System.UInt32"/> value.
4065 </summary>
4066 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4067 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4068 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4069 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4070 execute synchronously, returning an already-completed task.</remarks>
4071 </member>
4072 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
4073 <summary>
4074 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
4075 </summary>
4076 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
4077 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4078 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4079 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4080 execute synchronously, returning an already-completed task.</remarks>
4081 </member>
4082 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
4083 <summary>
4084 Asynchronously writes a <see cref="T:System.UInt64"/> value.
4085 </summary>
4086 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4087 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4088 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4089 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4090 execute synchronously, returning an already-completed task.</remarks>
4091 </member>
4092 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
4093 <summary>
4094 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
4095 </summary>
4096 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
4097 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4098 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4099 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4100 execute synchronously, returning an already-completed task.</remarks>
4101 </member>
4102 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
4103 <summary>
4104 Asynchronously writes a <see cref="T:System.Uri"/> value.
4105 </summary>
4106 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4107 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4108 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4109 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4110 execute synchronously, returning an already-completed task.</remarks>
4111 </member>
4112 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
4113 <summary>
4114 Asynchronously writes a <see cref="T:System.UInt16"/> value.
4115 </summary>
4116 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4117 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4118 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4119 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4120 execute synchronously, returning an already-completed task.</remarks>
4121 </member>
4122 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
4123 <summary>
4124 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
4125 </summary>
4126 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
4127 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4128 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4129 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4130 execute synchronously, returning an already-completed task.</remarks>
4131 </member>
4132 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
4133 <summary>
4134 Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
4135 </summary>
4136 <param name="text">Text to place inside the comment.</param>
4137 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4138 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4139 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4140 execute synchronously, returning an already-completed task.</remarks>
4141 </member>
4142 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
4143 <summary>
4144 Asynchronously writes the end of an array.
4145 </summary>
4146 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4147 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4148 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4149 execute synchronously, returning an already-completed task.</remarks>
4150 </member>
4151 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
4152 <summary>
4153 Asynchronously writes the end of a constructor.
4154 </summary>
4155 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4156 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4157 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4158 execute synchronously, returning an already-completed task.</remarks>
4159 </member>
4160 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
4161 <summary>
4162 Asynchronously writes the end of a JSON object.
4163 </summary>
4164 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4165 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4166 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4167 execute synchronously, returning an already-completed task.</remarks>
4168 </member>
4169 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
4170 <summary>
4171 Asynchronously writes raw JSON where a value is expected and updates the writer's state.
4172 </summary>
4173 <param name="json">The raw JSON to write.</param>
4174 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4175 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4176 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4177 execute synchronously, returning an already-completed task.</remarks>
4178 </member>
4179 <member name="P:Newtonsoft.Json.JsonTextWriter.ArrayPool">
4180 <summary>
4181 Gets or sets the writer's character array pool.
4182 </summary>
4183 </member>
4184 <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
4185 <summary>
4186 Gets or sets how many <see cref="P:Newtonsoft.Json.JsonTextWriter.IndentChar"/>s to write for each level in the hierarchy when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
4187 </summary>
4188 </member>
4189 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
4190 <summary>
4191 Gets or sets which character to use to quote attribute values.
4192 </summary>
4193 </member>
4194 <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
4195 <summary>
4196 Gets or sets which character to use for indenting when <see cref="P:Newtonsoft.Json.JsonWriter.Formatting"/> is set to <see cref="F:Newtonsoft.Json.Formatting.Indented"/>.
4197 </summary>
4198 </member>
4199 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
4200 <summary>
4201 Gets or sets a value indicating whether object names will be surrounded with quotes.
4202 </summary>
4203 </member>
4204 <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4205 <summary>
4206 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextWriter"/> class using the specified <see cref="T:System.IO.TextWriter"/>.
4207 </summary>
4208 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> to write to.</param>
4209 </member>
4210 <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4211 <summary>
4212 Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.TextWriter"/> and also flushes the underlying <see cref="T:System.IO.TextWriter"/>.
4213 </summary>
4214 </member>
4215 <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4216 <summary>
4217 Closes this writer.
4218 If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.TextWriter"/> is also closed.
4219 If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
4220 </summary>
4221 </member>
4222 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4223 <summary>
4224 Writes the beginning of a JSON object.
4225 </summary>
4226 </member>
4227 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4228 <summary>
4229 Writes the beginning of a JSON array.
4230 </summary>
4231 </member>
4232 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
4233 <summary>
4234 Writes the start of a constructor with the given name.
4235 </summary>
4236 <param name="name">The name of the constructor.</param>
4237 </member>
4238 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
4239 <summary>
4240 Writes the specified end token.
4241 </summary>
4242 <param name="token">The end token to write.</param>
4243 </member>
4244 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4245 <summary>
4246 Writes the property name of a name/value pair on a JSON object.
4247 </summary>
4248 <param name="name">The name of the property.</param>
4249 </member>
4250 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String,System.Boolean)">
4251 <summary>
4252 Writes the property name of a name/value pair on a JSON object.
4253 </summary>
4254 <param name="name">The name of the property.</param>
4255 <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4256 </member>
4257 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
4258 <summary>
4259 Writes indent characters.
4260 </summary>
4261 </member>
4262 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
4263 <summary>
4264 Writes the JSON value delimiter.
4265 </summary>
4266 </member>
4267 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
4268 <summary>
4269 Writes an indent space.
4270 </summary>
4271 </member>
4272 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Object)">
4273 <summary>
4274 Writes a <see cref="T:System.Object"/> value.
4275 An error will raised if the value cannot be written as a single JSON token.
4276 </summary>
4277 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4278 </member>
4279 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
4280 <summary>
4281 Writes a null value.
4282 </summary>
4283 </member>
4284 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
4285 <summary>
4286 Writes an undefined value.
4287 </summary>
4288 </member>
4289 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
4290 <summary>
4291 Writes raw JSON.
4292 </summary>
4293 <param name="json">The raw JSON to write.</param>
4294 </member>
4295 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
4296 <summary>
4297 Writes a <see cref="T:System.String"/> value.
4298 </summary>
4299 <param name="value">The <see cref="T:System.String"/> value to write.</param>
4300 </member>
4301 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
4302 <summary>
4303 Writes a <see cref="T:System.Int32"/> value.
4304 </summary>
4305 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
4306 </member>
4307 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
4308 <summary>
4309 Writes a <see cref="T:System.UInt32"/> value.
4310 </summary>
4311 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
4312 </member>
4313 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
4314 <summary>
4315 Writes a <see cref="T:System.Int64"/> value.
4316 </summary>
4317 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
4318 </member>
4319 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
4320 <summary>
4321 Writes a <see cref="T:System.UInt64"/> value.
4322 </summary>
4323 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
4324 </member>
4325 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
4326 <summary>
4327 Writes a <see cref="T:System.Single"/> value.
4328 </summary>
4329 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4330 </member>
4331 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4332 <summary>
4333 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
4334 </summary>
4335 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
4336 </member>
4337 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4338 <summary>
4339 Writes a <see cref="T:System.Double"/> value.
4340 </summary>
4341 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
4342 </member>
4343 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4344 <summary>
4345 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
4346 </summary>
4347 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
4348 </member>
4349 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4350 <summary>
4351 Writes a <see cref="T:System.Boolean"/> value.
4352 </summary>
4353 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4354 </member>
4355 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
4356 <summary>
4357 Writes a <see cref="T:System.Int16"/> value.
4358 </summary>
4359 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
4360 </member>
4361 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
4362 <summary>
4363 Writes a <see cref="T:System.UInt16"/> value.
4364 </summary>
4365 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
4366 </member>
4367 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
4368 <summary>
4369 Writes a <see cref="T:System.Char"/> value.
4370 </summary>
4371 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4372 </member>
4373 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
4374 <summary>
4375 Writes a <see cref="T:System.Byte"/> value.
4376 </summary>
4377 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4378 </member>
4379 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
4380 <summary>
4381 Writes a <see cref="T:System.SByte"/> value.
4382 </summary>
4383 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4384 </member>
4385 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
4386 <summary>
4387 Writes a <see cref="T:System.Decimal"/> value.
4388 </summary>
4389 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
4390 </member>
4391 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
4392 <summary>
4393 Writes a <see cref="T:System.DateTime"/> value.
4394 </summary>
4395 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4396 </member>
4397 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4398 <summary>
4399 Writes a <see cref="T:System.Byte"/>[] value.
4400 </summary>
4401 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4402 </member>
4403 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4404 <summary>
4405 Writes a <see cref="T:System.DateTimeOffset"/> value.
4406 </summary>
4407 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4408 </member>
4409 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
4410 <summary>
4411 Writes a <see cref="T:System.Guid"/> value.
4412 </summary>
4413 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
4414 </member>
4415 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
4416 <summary>
4417 Writes a <see cref="T:System.TimeSpan"/> value.
4418 </summary>
4419 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
4420 </member>
4421 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
4422 <summary>
4423 Writes a <see cref="T:System.Uri"/> value.
4424 </summary>
4425 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
4426 </member>
4427 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4428 <summary>
4429 Writes a comment <c>/*...*/</c> containing the specified text.
4430 </summary>
4431 <param name="text">Text to place inside the comment.</param>
4432 </member>
4433 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4434 <summary>
4435 Writes the given white space.
4436 </summary>
4437 <param name="ws">The string of white space characters.</param>
4438 </member>
4439 <member name="T:Newtonsoft.Json.JsonToken">
4440 <summary>
4441 Specifies the type of JSON token.
4442 </summary>
4443 </member>
4444 <member name="F:Newtonsoft.Json.JsonToken.None">
4445 <summary>
4446 This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a read method has not been called.
4447 </summary>
4448 </member>
4449 <member name="F:Newtonsoft.Json.JsonToken.StartObject">
4450 <summary>
4451 An object start token.
4452 </summary>
4453 </member>
4454 <member name="F:Newtonsoft.Json.JsonToken.StartArray">
4455 <summary>
4456 An array start token.
4457 </summary>
4458 </member>
4459 <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
4460 <summary>
4461 A constructor start token.
4462 </summary>
4463 </member>
4464 <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
4465 <summary>
4466 An object property name.
4467 </summary>
4468 </member>
4469 <member name="F:Newtonsoft.Json.JsonToken.Comment">
4470 <summary>
4471 A comment.
4472 </summary>
4473 </member>
4474 <member name="F:Newtonsoft.Json.JsonToken.Raw">
4475 <summary>
4476 Raw JSON.
4477 </summary>
4478 </member>
4479 <member name="F:Newtonsoft.Json.JsonToken.Integer">
4480 <summary>
4481 An integer.
4482 </summary>
4483 </member>
4484 <member name="F:Newtonsoft.Json.JsonToken.Float">
4485 <summary>
4486 A float.
4487 </summary>
4488 </member>
4489 <member name="F:Newtonsoft.Json.JsonToken.String">
4490 <summary>
4491 A string.
4492 </summary>
4493 </member>
4494 <member name="F:Newtonsoft.Json.JsonToken.Boolean">
4495 <summary>
4496 A boolean.
4497 </summary>
4498 </member>
4499 <member name="F:Newtonsoft.Json.JsonToken.Null">
4500 <summary>
4501 A null token.
4502 </summary>
4503 </member>
4504 <member name="F:Newtonsoft.Json.JsonToken.Undefined">
4505 <summary>
4506 An undefined token.
4507 </summary>
4508 </member>
4509 <member name="F:Newtonsoft.Json.JsonToken.EndObject">
4510 <summary>
4511 An object end token.
4512 </summary>
4513 </member>
4514 <member name="F:Newtonsoft.Json.JsonToken.EndArray">
4515 <summary>
4516 An array end token.
4517 </summary>
4518 </member>
4519 <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
4520 <summary>
4521 A constructor end token.
4522 </summary>
4523 </member>
4524 <member name="F:Newtonsoft.Json.JsonToken.Date">
4525 <summary>
4526 A Date.
4527 </summary>
4528 </member>
4529 <member name="F:Newtonsoft.Json.JsonToken.Bytes">
4530 <summary>
4531 Byte data.
4532 </summary>
4533 </member>
4534 <member name="T:Newtonsoft.Json.JsonValidatingReader">
4535 <summary>
4536 <para>
4537 Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
4538 </para>
4539 <note type="caution">
4540 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
4541 </note>
4542 </summary>
4543 </member>
4544 <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4545 <summary>
4546 Sets an event handler for receiving schema validation errors.
4547 </summary>
4548 </member>
4549 <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4550 <summary>
4551 Gets the text value of the current JSON token.
4552 </summary>
4553 <value></value>
4554 </member>
4555 <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4556 <summary>
4557 Gets the depth of the current token in the JSON document.
4558 </summary>
4559 <value>The depth of the current token in the JSON document.</value>
4560 </member>
4561 <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4562 <summary>
4563 Gets the path of the current JSON token.
4564 </summary>
4565 </member>
4566 <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4567 <summary>
4568 Gets the quotation mark character used to enclose the value of a string.
4569 </summary>
4570 <value></value>
4571 </member>
4572 <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4573 <summary>
4574 Gets the type of the current JSON token.
4575 </summary>
4576 <value></value>
4577 </member>
4578 <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4579 <summary>
4580 Gets the .NET type for the current JSON token.
4581 </summary>
4582 <value></value>
4583 </member>
4584 <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
4585 <summary>
4586 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
4587 validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
4588 </summary>
4589 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
4590 </member>
4591 <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4592 <summary>
4593 Gets or sets the schema.
4594 </summary>
4595 <value>The schema.</value>
4596 </member>
4597 <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4598 <summary>
4599 Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4600 </summary>
4601 <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4602 </member>
4603 <member name="M:Newtonsoft.Json.JsonValidatingReader.Close">
4604 <summary>
4605 Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
4606 If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> is also closed.
4607 </summary>
4608 </member>
4609 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
4610 <summary>
4611 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
4612 </summary>
4613 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.</returns>
4614 </member>
4615 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4616 <summary>
4617 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Byte"/>[].
4618 </summary>
4619 <returns>
4620 A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null.
4621 </returns>
4622 </member>
4623 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4624 <summary>
4625 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
4626 </summary>
4627 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.</returns>
4628 </member>
4629 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDouble">
4630 <summary>
4631 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
4632 </summary>
4633 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.</returns>
4634 </member>
4635 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBoolean">
4636 <summary>
4637 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
4638 </summary>
4639 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.</returns>
4640 </member>
4641 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4642 <summary>
4643 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.String"/>.
4644 </summary>
4645 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4646 </member>
4647 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4648 <summary>
4649 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
4650 </summary>
4651 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>. This method will return <c>null</c> at the end of an array.</returns>
4652 </member>
4653 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
4654 <summary>
4655 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
4656 </summary>
4657 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.</returns>
4658 </member>
4659 <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4660 <summary>
4661 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/>.
4662 </summary>
4663 <returns>
4664 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
4665 </returns>
4666 </member>
4667 <member name="T:Newtonsoft.Json.JsonWriter">
4668 <summary>
4669 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
4670 </summary>
4671 </member>
4672 <member name="M:Newtonsoft.Json.JsonWriter.CloseAsync(System.Threading.CancellationToken)">
4673 <summary>
4674 Asynchronously closes this writer.
4675 If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
4676 </summary>
4677 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4678 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4679 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4680 classes can override this behaviour for true asynchronicity.</remarks>
4681 </member>
4682 <member name="M:Newtonsoft.Json.JsonWriter.FlushAsync(System.Threading.CancellationToken)">
4683 <summary>
4684 Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
4685 </summary>
4686 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4687 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4688 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4689 classes can override this behaviour for true asynchronicity.</remarks>
4690 </member>
4691 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
4692 <summary>
4693 Asynchronously writes the specified end token.
4694 </summary>
4695 <param name="token">The end token to write.</param>
4696 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4697 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4698 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4699 classes can override this behaviour for true asynchronicity.</remarks>
4700 </member>
4701 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentAsync(System.Threading.CancellationToken)">
4702 <summary>
4703 Asynchronously writes indent characters.
4704 </summary>
4705 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4706 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4707 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4708 classes can override this behaviour for true asynchronicity.</remarks>
4709 </member>
4710 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
4711 <summary>
4712 Asynchronously writes the JSON value delimiter.
4713 </summary>
4714 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4715 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4716 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4717 classes can override this behaviour for true asynchronicity.</remarks>
4718 </member>
4719 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
4720 <summary>
4721 Asynchronously writes an indent space.
4722 </summary>
4723 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4724 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4725 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4726 classes can override this behaviour for true asynchronicity.</remarks>
4727 </member>
4728 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
4729 <summary>
4730 Asynchronously writes raw JSON without changing the writer's state.
4731 </summary>
4732 <param name="json">The raw JSON to write.</param>
4733 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4734 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4735 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4736 classes can override this behaviour for true asynchronicity.</remarks>
4737 </member>
4738 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(System.Threading.CancellationToken)">
4739 <summary>
4740 Asynchronously writes the end of the current JSON object or array.
4741 </summary>
4742 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4743 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4744 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4745 classes can override this behaviour for true asynchronicity.</remarks>
4746 </member>
4747 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
4748 <summary>
4749 Asynchronously writes the end of an array.
4750 </summary>
4751 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4752 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4753 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4754 classes can override this behaviour for true asynchronicity.</remarks>
4755 </member>
4756 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
4757 <summary>
4758 Asynchronously writes the end of a constructor.
4759 </summary>
4760 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4761 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4762 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4763 classes can override this behaviour for true asynchronicity.</remarks>
4764 </member>
4765 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
4766 <summary>
4767 Asynchronously writes the end of a JSON object.
4768 </summary>
4769 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4770 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4771 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4772 classes can override this behaviour for true asynchronicity.</remarks>
4773 </member>
4774 <member name="M:Newtonsoft.Json.JsonWriter.WriteNullAsync(System.Threading.CancellationToken)">
4775 <summary>
4776 Asynchronously writes a null value.
4777 </summary>
4778 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4779 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4780 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4781 classes can override this behaviour for true asynchronicity.</remarks>
4782 </member>
4783 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
4784 <summary>
4785 Asynchronously writes the property name of a name/value pair of a JSON object.
4786 </summary>
4787 <param name="name">The name of the property.</param>
4788 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4789 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4790 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4791 classes can override this behaviour for true asynchronicity.</remarks>
4792 </member>
4793 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
4794 <summary>
4795 Asynchronously writes the property name of a name/value pair of a JSON object.
4796 </summary>
4797 <param name="name">The name of the property.</param>
4798 <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
4799 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4800 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4801 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4802 classes can override this behaviour for true asynchronicity.</remarks>
4803 </member>
4804 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
4805 <summary>
4806 Asynchronously writes the beginning of a JSON array.
4807 </summary>
4808 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4809 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4810 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4811 classes can override this behaviour for true asynchronicity.</remarks>
4812 </member>
4813 <member name="M:Newtonsoft.Json.JsonWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
4814 <summary>
4815 Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
4816 </summary>
4817 <param name="text">Text to place inside the comment.</param>
4818 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4819 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4820 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4821 classes can override this behaviour for true asynchronicity.</remarks>
4822 </member>
4823 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
4824 <summary>
4825 Asynchronously writes raw JSON where a value is expected and updates the writer's state.
4826 </summary>
4827 <param name="json">The raw JSON to write.</param>
4828 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4829 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4830 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4831 classes can override this behaviour for true asynchronicity.</remarks>
4832 </member>
4833 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
4834 <summary>
4835 Asynchronously writes the start of a constructor with the given name.
4836 </summary>
4837 <param name="name">The name of the constructor.</param>
4838 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4839 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4840 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4841 classes can override this behaviour for true asynchronicity.</remarks>
4842 </member>
4843 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
4844 <summary>
4845 Asynchronously writes the beginning of a JSON object.
4846 </summary>
4847 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4848 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4849 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4850 classes can override this behaviour for true asynchronicity.</remarks>
4851 </member>
4852 <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
4853 <summary>
4854 Asynchronously writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
4855 </summary>
4856 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
4857 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4858 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4859 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4860 classes can override this behaviour for true asynchronicity.</remarks>
4861 </member>
4862 <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonReader,System.Boolean,System.Threading.CancellationToken)">
4863 <summary>
4864 Asynchronously writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
4865 </summary>
4866 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
4867 <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
4868 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4869 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4870 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4871 classes can override this behaviour for true asynchronicity.</remarks>
4872 </member>
4873 <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
4874 <summary>
4875 Asynchronously writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
4876 </summary>
4877 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
4878 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4879 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4880 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4881 classes can override this behaviour for true asynchronicity.</remarks>
4882 </member>
4883 <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonToken,System.Object,System.Threading.CancellationToken)">
4884 <summary>
4885 Asynchronously writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
4886 </summary>
4887 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
4888 <param name="value">
4889 The value to write.
4890 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"/>.
4891 <c>null</c> can be passed to the method for tokens that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.
4892 </param>
4893 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4894 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4895 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4896 classes can override this behaviour for true asynchronicity.</remarks>
4897 </member>
4898 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
4899 <summary>
4900 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
4901 </summary>
4902 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
4903 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4904 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4905 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4906 classes can override this behaviour for true asynchronicity.</remarks>
4907 </member>
4908 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
4909 <summary>
4910 Asynchronously writes a <see cref="T:System.Boolean"/> value.
4911 </summary>
4912 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
4913 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4914 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4915 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4916 classes can override this behaviour for true asynchronicity.</remarks>
4917 </member>
4918 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
4919 <summary>
4920 Asynchronously writes a <see cref="T:System.Byte"/> value.
4921 </summary>
4922 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
4923 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4924 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4925 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4926 classes can override this behaviour for true asynchronicity.</remarks>
4927 </member>
4928 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
4929 <summary>
4930 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
4931 </summary>
4932 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
4933 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4934 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4935 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4936 classes can override this behaviour for true asynchronicity.</remarks>
4937 </member>
4938 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
4939 <summary>
4940 Asynchronously writes a <see cref="T:System.Byte"/>[] value.
4941 </summary>
4942 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4943 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4944 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4945 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4946 classes can override this behaviour for true asynchronicity.</remarks>
4947 </member>
4948 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
4949 <summary>
4950 Asynchronously writes a <see cref="T:System.Char"/> value.
4951 </summary>
4952 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
4953 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4954 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4955 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4956 classes can override this behaviour for true asynchronicity.</remarks>
4957 </member>
4958 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
4959 <summary>
4960 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
4961 </summary>
4962 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
4963 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4964 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4965 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4966 classes can override this behaviour for true asynchronicity.</remarks>
4967 </member>
4968 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
4969 <summary>
4970 Asynchronously writes a <see cref="T:System.DateTime"/> value.
4971 </summary>
4972 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4973 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4974 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4975 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4976 classes can override this behaviour for true asynchronicity.</remarks>
4977 </member>
4978 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
4979 <summary>
4980 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
4981 </summary>
4982 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
4983 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4984 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4985 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4986 classes can override this behaviour for true asynchronicity.</remarks>
4987 </member>
4988 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
4989 <summary>
4990 Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
4991 </summary>
4992 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4993 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4994 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4995 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4996 classes can override this behaviour for true asynchronicity.</remarks>
4997 </member>
4998 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
4999 <summary>
5000 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
5001 </summary>
5002 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
5003 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5004 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5005 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5006 classes can override this behaviour for true asynchronicity.</remarks>
5007 </member>
5008 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
5009 <summary>
5010 Asynchronously writes a <see cref="T:System.Decimal"/> value.
5011 </summary>
5012 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5013 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5014 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5015 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5016 classes can override this behaviour for true asynchronicity.</remarks>
5017 </member>
5018 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
5019 <summary>
5020 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
5021 </summary>
5022 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
5023 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5024 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5025 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5026 classes can override this behaviour for true asynchronicity.</remarks>
5027 </member>
5028 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
5029 <summary>
5030 Asynchronously writes a <see cref="T:System.Double"/> value.
5031 </summary>
5032 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5033 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5034 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5035 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5036 classes can override this behaviour for true asynchronicity.</remarks>
5037 </member>
5038 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
5039 <summary>
5040 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
5041 </summary>
5042 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
5043 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5044 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5045 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5046 classes can override this behaviour for true asynchronicity.</remarks>
5047 </member>
5048 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
5049 <summary>
5050 Asynchronously writes a <see cref="T:System.Single"/> value.
5051 </summary>
5052 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5053 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5054 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5055 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5056 classes can override this behaviour for true asynchronicity.</remarks>
5057 </member>
5058 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
5059 <summary>
5060 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
5061 </summary>
5062 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
5063 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5064 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5065 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5066 classes can override this behaviour for true asynchronicity.</remarks>
5067 </member>
5068 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
5069 <summary>
5070 Asynchronously writes a <see cref="T:System.Guid"/> value.
5071 </summary>
5072 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5073 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5074 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5075 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5076 classes can override this behaviour for true asynchronicity.</remarks>
5077 </member>
5078 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
5079 <summary>
5080 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
5081 </summary>
5082 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
5083 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5084 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5085 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5086 classes can override this behaviour for true asynchronicity.</remarks>
5087 </member>
5088 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
5089 <summary>
5090 Asynchronously writes a <see cref="T:System.Int32"/> value.
5091 </summary>
5092 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5093 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5094 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5095 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5096 classes can override this behaviour for true asynchronicity.</remarks>
5097 </member>
5098 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
5099 <summary>
5100 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
5101 </summary>
5102 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
5103 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5104 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5105 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5106 classes can override this behaviour for true asynchronicity.</remarks>
5107 </member>
5108 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
5109 <summary>
5110 Asynchronously writes a <see cref="T:System.Int64"/> value.
5111 </summary>
5112 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5113 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5114 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5115 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5116 classes can override this behaviour for true asynchronicity.</remarks>
5117 </member>
5118 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
5119 <summary>
5120 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
5121 </summary>
5122 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
5123 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5124 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5125 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5126 classes can override this behaviour for true asynchronicity.</remarks>
5127 </member>
5128 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
5129 <summary>
5130 Asynchronously writes a <see cref="T:System.Object"/> value.
5131 </summary>
5132 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5133 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5134 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5135 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5136 classes can override this behaviour for true asynchronicity.</remarks>
5137 </member>
5138 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
5139 <summary>
5140 Asynchronously writes a <see cref="T:System.SByte"/> value.
5141 </summary>
5142 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5143 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5144 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5145 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5146 classes can override this behaviour for true asynchronicity.</remarks>
5147 </member>
5148 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
5149 <summary>
5150 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
5151 </summary>
5152 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
5153 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5154 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5155 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5156 classes can override this behaviour for true asynchronicity.</remarks>
5157 </member>
5158 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
5159 <summary>
5160 Asynchronously writes a <see cref="T:System.Int16"/> value.
5161 </summary>
5162 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5163 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5164 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5165 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5166 classes can override this behaviour for true asynchronicity.</remarks>
5167 </member>
5168 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
5169 <summary>
5170 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
5171 </summary>
5172 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
5173 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5174 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5175 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5176 classes can override this behaviour for true asynchronicity.</remarks>
5177 </member>
5178 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
5179 <summary>
5180 Asynchronously writes a <see cref="T:System.String"/> value.
5181 </summary>
5182 <param name="value">The <see cref="T:System.String"/> value to write.</param>
5183 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5184 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5185 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5186 classes can override this behaviour for true asynchronicity.</remarks>
5187 </member>
5188 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
5189 <summary>
5190 Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
5191 </summary>
5192 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5193 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5194 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5195 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5196 classes can override this behaviour for true asynchronicity.</remarks>
5197 </member>
5198 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
5199 <summary>
5200 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
5201 </summary>
5202 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
5203 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5204 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5205 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5206 classes can override this behaviour for true asynchronicity.</remarks>
5207 </member>
5208 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
5209 <summary>
5210 Asynchronously writes a <see cref="T:System.UInt32"/> value.
5211 </summary>
5212 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5213 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5214 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5215 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5216 classes can override this behaviour for true asynchronicity.</remarks>
5217 </member>
5218 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
5219 <summary>
5220 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
5221 </summary>
5222 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
5223 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5224 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5225 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5226 classes can override this behaviour for true asynchronicity.</remarks>
5227 </member>
5228 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
5229 <summary>
5230 Asynchronously writes a <see cref="T:System.UInt64"/> value.
5231 </summary>
5232 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5233 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5234 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5235 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5236 classes can override this behaviour for true asynchronicity.</remarks>
5237 </member>
5238 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
5239 <summary>
5240 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
5241 </summary>
5242 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
5243 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5244 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5245 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5246 classes can override this behaviour for true asynchronicity.</remarks>
5247 </member>
5248 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
5249 <summary>
5250 Asynchronously writes a <see cref="T:System.Uri"/> value.
5251 </summary>
5252 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5253 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5254 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5255 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5256 classes can override this behaviour for true asynchronicity.</remarks>
5257 </member>
5258 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
5259 <summary>
5260 Asynchronously writes a <see cref="T:System.UInt16"/> value.
5261 </summary>
5262 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5263 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5264 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5265 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5266 classes can override this behaviour for true asynchronicity.</remarks>
5267 </member>
5268 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
5269 <summary>
5270 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
5271 </summary>
5272 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
5273 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5274 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5275 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5276 classes can override this behaviour for true asynchronicity.</remarks>
5277 </member>
5278 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
5279 <summary>
5280 Asynchronously writes an undefined value.
5281 </summary>
5282 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5283 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5284 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5285 classes can override this behaviour for true asynchronicity.</remarks>
5286 </member>
5287 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
5288 <summary>
5289 Asynchronously writes the given white space.
5290 </summary>
5291 <param name="ws">The string of white space characters.</param>
5292 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5293 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5294 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5295 classes can override this behaviour for true asynchronicity.</remarks>
5296 </member>
5297 <member name="M:Newtonsoft.Json.JsonWriter.SetWriteStateAsync(Newtonsoft.Json.JsonToken,System.Object,System.Threading.CancellationToken)">
5298 <summary>
5299 Asynchronously ets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5300 </summary>
5301 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
5302 <param name="value">The value being written.</param>
5303 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5304 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5305 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5306 classes can override this behaviour for true asynchronicity.</remarks>
5307 </member>
5308 <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
5309 <summary>
5310 Gets or sets a value indicating whether the destination should be closed when this writer is closed.
5311 </summary>
5312 <value>
5313 <c>true</c> to close the destination when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
5314 </value>
5315 </member>
5316 <member name="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose">
5317 <summary>
5318 Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
5319 </summary>
5320 <value>
5321 <c>true</c> to auto-complete the JSON when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
5322 </value>
5323 </member>
5324 <member name="P:Newtonsoft.Json.JsonWriter.Top">
5325 <summary>
5326 Gets the top.
5327 </summary>
5328 <value>The top.</value>
5329 </member>
5330 <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
5331 <summary>
5332 Gets the state of the writer.
5333 </summary>
5334 </member>
5335 <member name="P:Newtonsoft.Json.JsonWriter.Path">
5336 <summary>
5337 Gets the path of the writer.
5338 </summary>
5339 </member>
5340 <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
5341 <summary>
5342 Gets or sets a value indicating how JSON text output should be formatted.
5343 </summary>
5344 </member>
5345 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
5346 <summary>
5347 Gets or sets how dates are written to JSON text.
5348 </summary>
5349 </member>
5350 <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
5351 <summary>
5352 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when writing JSON text.
5353 </summary>
5354 </member>
5355 <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
5356 <summary>
5357 Gets or sets how strings are escaped when writing JSON text.
5358 </summary>
5359 </member>
5360 <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
5361 <summary>
5362 Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5363 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5364 are written to JSON text.
5365 </summary>
5366 </member>
5367 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
5368 <summary>
5369 Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text.
5370 </summary>
5371 </member>
5372 <member name="P:Newtonsoft.Json.JsonWriter.Culture">
5373 <summary>
5374 Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5375 </summary>
5376 </member>
5377 <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
5378 <summary>
5379 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriter"/> class.
5380 </summary>
5381 </member>
5382 <member name="M:Newtonsoft.Json.JsonWriter.Flush">
5383 <summary>
5384 Flushes whatever is in the buffer to the destination and also flushes the destination.
5385 </summary>
5386 </member>
5387 <member name="M:Newtonsoft.Json.JsonWriter.Close">
5388 <summary>
5389 Closes this writer.
5390 If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
5391 If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
5392 </summary>
5393 </member>
5394 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
5395 <summary>
5396 Writes the beginning of a JSON object.
5397 </summary>
5398 </member>
5399 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
5400 <summary>
5401 Writes the end of a JSON object.
5402 </summary>
5403 </member>
5404 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
5405 <summary>
5406 Writes the beginning of a JSON array.
5407 </summary>
5408 </member>
5409 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
5410 <summary>
5411 Writes the end of an array.
5412 </summary>
5413 </member>
5414 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
5415 <summary>
5416 Writes the start of a constructor with the given name.
5417 </summary>
5418 <param name="name">The name of the constructor.</param>
5419 </member>
5420 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
5421 <summary>
5422 Writes the end constructor.
5423 </summary>
5424 </member>
5425 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
5426 <summary>
5427 Writes the property name of a name/value pair of a JSON object.
5428 </summary>
5429 <param name="name">The name of the property.</param>
5430 </member>
5431 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
5432 <summary>
5433 Writes the property name of a name/value pair of a JSON object.
5434 </summary>
5435 <param name="name">The name of the property.</param>
5436 <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
5437 </member>
5438 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
5439 <summary>
5440 Writes the end of the current JSON object or array.
5441 </summary>
5442 </member>
5443 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
5444 <summary>
5445 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
5446 </summary>
5447 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
5448 </member>
5449 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
5450 <summary>
5451 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
5452 </summary>
5453 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
5454 <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
5455 </member>
5456 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken,System.Object)">
5457 <summary>
5458 Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token and its value.
5459 </summary>
5460 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
5461 <param name="value">
5462 The value to write.
5463 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"/>.
5464 <c>null</c> can be passed to the method for tokens that don't have a value, e.g. <see cref="F:Newtonsoft.Json.JsonToken.StartObject"/>.
5465 </param>
5466 </member>
5467 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
5468 <summary>
5469 Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
5470 </summary>
5471 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
5472 </member>
5473 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5474 <summary>
5475 Writes the specified end token.
5476 </summary>
5477 <param name="token">The end token to write.</param>
5478 </member>
5479 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
5480 <summary>
5481 Writes indent characters.
5482 </summary>
5483 </member>
5484 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
5485 <summary>
5486 Writes the JSON value delimiter.
5487 </summary>
5488 </member>
5489 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
5490 <summary>
5491 Writes an indent space.
5492 </summary>
5493 </member>
5494 <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
5495 <summary>
5496 Writes a null value.
5497 </summary>
5498 </member>
5499 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
5500 <summary>
5501 Writes an undefined value.
5502 </summary>
5503 </member>
5504 <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
5505 <summary>
5506 Writes raw JSON without changing the writer's state.
5507 </summary>
5508 <param name="json">The raw JSON to write.</param>
5509 </member>
5510 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
5511 <summary>
5512 Writes raw JSON where a value is expected and updates the writer's state.
5513 </summary>
5514 <param name="json">The raw JSON to write.</param>
5515 </member>
5516 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
5517 <summary>
5518 Writes a <see cref="T:System.String"/> value.
5519 </summary>
5520 <param name="value">The <see cref="T:System.String"/> value to write.</param>
5521 </member>
5522 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
5523 <summary>
5524 Writes a <see cref="T:System.Int32"/> value.
5525 </summary>
5526 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5527 </member>
5528 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
5529 <summary>
5530 Writes a <see cref="T:System.UInt32"/> value.
5531 </summary>
5532 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5533 </member>
5534 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
5535 <summary>
5536 Writes a <see cref="T:System.Int64"/> value.
5537 </summary>
5538 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5539 </member>
5540 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
5541 <summary>
5542 Writes a <see cref="T:System.UInt64"/> value.
5543 </summary>
5544 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5545 </member>
5546 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
5547 <summary>
5548 Writes a <see cref="T:System.Single"/> value.
5549 </summary>
5550 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5551 </member>
5552 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
5553 <summary>
5554 Writes a <see cref="T:System.Double"/> value.
5555 </summary>
5556 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5557 </member>
5558 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
5559 <summary>
5560 Writes a <see cref="T:System.Boolean"/> value.
5561 </summary>
5562 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5563 </member>
5564 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
5565 <summary>
5566 Writes a <see cref="T:System.Int16"/> value.
5567 </summary>
5568 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5569 </member>
5570 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
5571 <summary>
5572 Writes a <see cref="T:System.UInt16"/> value.
5573 </summary>
5574 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5575 </member>
5576 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
5577 <summary>
5578 Writes a <see cref="T:System.Char"/> value.
5579 </summary>
5580 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5581 </member>
5582 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
5583 <summary>
5584 Writes a <see cref="T:System.Byte"/> value.
5585 </summary>
5586 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5587 </member>
5588 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
5589 <summary>
5590 Writes a <see cref="T:System.SByte"/> value.
5591 </summary>
5592 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5593 </member>
5594 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
5595 <summary>
5596 Writes a <see cref="T:System.Decimal"/> value.
5597 </summary>
5598 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5599 </member>
5600 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
5601 <summary>
5602 Writes a <see cref="T:System.DateTime"/> value.
5603 </summary>
5604 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5605 </member>
5606 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
5607 <summary>
5608 Writes a <see cref="T:System.DateTimeOffset"/> value.
5609 </summary>
5610 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5611 </member>
5612 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
5613 <summary>
5614 Writes a <see cref="T:System.Guid"/> value.
5615 </summary>
5616 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5617 </member>
5618 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
5619 <summary>
5620 Writes a <see cref="T:System.TimeSpan"/> value.
5621 </summary>
5622 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5623 </member>
5624 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
5625 <summary>
5626 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
5627 </summary>
5628 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
5629 </member>
5630 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
5631 <summary>
5632 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
5633 </summary>
5634 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value to write.</param>
5635 </member>
5636 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
5637 <summary>
5638 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
5639 </summary>
5640 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
5641 </member>
5642 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
5643 <summary>
5644 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
5645 </summary>
5646 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value to write.</param>
5647 </member>
5648 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
5649 <summary>
5650 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
5651 </summary>
5652 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
5653 </member>
5654 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
5655 <summary>
5656 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
5657 </summary>
5658 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
5659 </member>
5660 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
5661 <summary>
5662 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
5663 </summary>
5664 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
5665 </member>
5666 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
5667 <summary>
5668 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
5669 </summary>
5670 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
5671 </member>
5672 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
5673 <summary>
5674 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
5675 </summary>
5676 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
5677 </member>
5678 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
5679 <summary>
5680 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
5681 </summary>
5682 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
5683 </member>
5684 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
5685 <summary>
5686 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
5687 </summary>
5688 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
5689 </member>
5690 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
5691 <summary>
5692 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
5693 </summary>
5694 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
5695 </member>
5696 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
5697 <summary>
5698 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
5699 </summary>
5700 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
5701 </member>
5702 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
5703 <summary>
5704 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
5705 </summary>
5706 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
5707 </member>
5708 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
5709 <summary>
5710 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
5711 </summary>
5712 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
5713 </member>
5714 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
5715 <summary>
5716 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
5717 </summary>
5718 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
5719 </member>
5720 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
5721 <summary>
5722 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
5723 </summary>
5724 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
5725 </member>
5726 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
5727 <summary>
5728 Writes a <see cref="T:System.Byte"/>[] value.
5729 </summary>
5730 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
5731 </member>
5732 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
5733 <summary>
5734 Writes a <see cref="T:System.Uri"/> value.
5735 </summary>
5736 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5737 </member>
5738 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
5739 <summary>
5740 Writes a <see cref="T:System.Object"/> value.
5741 An error will raised if the value cannot be written as a single JSON token.
5742 </summary>
5743 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5744 </member>
5745 <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
5746 <summary>
5747 Writes a comment <c>/*...*/</c> containing the specified text.
5748 </summary>
5749 <param name="text">Text to place inside the comment.</param>
5750 </member>
5751 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
5752 <summary>
5753 Writes the given white space.
5754 </summary>
5755 <param name="ws">The string of white space characters.</param>
5756 </member>
5757 <member name="M:Newtonsoft.Json.JsonWriter.Dispose(System.Boolean)">
5758 <summary>
5759 Releases unmanaged and - optionally - managed resources.
5760 </summary>
5761 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
5762 </member>
5763 <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
5764 <summary>
5765 Sets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5766 </summary>
5767 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
5768 <param name="value">The value being written.</param>
5769 </member>
5770 <member name="T:Newtonsoft.Json.JsonWriterException">
5771 <summary>
5772 The exception thrown when an error occurs while writing JSON text.
5773 </summary>
5774 </member>
5775 <member name="P:Newtonsoft.Json.JsonWriterException.Path">
5776 <summary>
5777 Gets the path to the JSON where the error occurred.
5778 </summary>
5779 <value>The path to the JSON where the error occurred.</value>
5780 </member>
5781 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
5782 <summary>
5783 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5784 </summary>
5785 </member>
5786 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
5787 <summary>
5788 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5789 with a specified error message.
5790 </summary>
5791 <param name="message">The error message that explains the reason for the exception.</param>
5792 </member>
5793 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
5794 <summary>
5795 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5796 with a specified error message and a reference to the inner exception that is the cause of this exception.
5797 </summary>
5798 <param name="message">The error message that explains the reason for the exception.</param>
5799 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
5800 </member>
5801 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5802 <summary>
5803 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
5804 </summary>
5805 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5806 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5807 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
5808 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
5809 </member>
5810 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.String,System.Exception)">
5811 <summary>
5812 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
5813 with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception.
5814 </summary>
5815 <param name="message">The error message that explains the reason for the exception.</param>
5816 <param name="path">The path to the JSON where the error occurred.</param>
5817 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
5818 </member>
5819 <member name="T:Newtonsoft.Json.Linq.CommentHandling">
5820 <summary>
5821 Specifies how JSON comments are handled when loading JSON.
5822 </summary>
5823 </member>
5824 <member name="F:Newtonsoft.Json.Linq.CommentHandling.Ignore">
5825 <summary>
5826 Ignore comments.
5827 </summary>
5828 </member>
5829 <member name="F:Newtonsoft.Json.Linq.CommentHandling.Load">
5830 <summary>
5831 Load comments as a <see cref="T:Newtonsoft.Json.Linq.JValue"/> with type <see cref="F:Newtonsoft.Json.Linq.JTokenType.Comment"/>.
5832 </summary>
5833 </member>
5834 <member name="T:Newtonsoft.Json.Linq.DuplicatePropertyNameHandling">
5835 <summary>
5836 Specifies how duplicate property names are handled when loading JSON.
5837 </summary>
5838 </member>
5839 <member name="F:Newtonsoft.Json.Linq.DuplicatePropertyNameHandling.Replace">
5840 <summary>
5841 Replace the existing value when there is a duplicate property. The value of the last property in the JSON object will be used.
5842 </summary>
5843 </member>
5844 <member name="F:Newtonsoft.Json.Linq.DuplicatePropertyNameHandling.Ignore">
5845 <summary>
5846 Ignore the new value when there is a duplicate property. The value of the first property in the JSON object will be used.
5847 </summary>
5848 </member>
5849 <member name="F:Newtonsoft.Json.Linq.DuplicatePropertyNameHandling.Error">
5850 <summary>
5851 Throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/> when a duplicate property is encountered.
5852 </summary>
5853 </member>
5854 <member name="T:Newtonsoft.Json.Linq.Extensions">
5855 <summary>
5856 Contains the LINQ to JSON extension methods.
5857 </summary>
5858 </member>
5859 <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
5860 <summary>
5861 Returns a collection of tokens that contains the ancestors of every token in the source collection.
5862 </summary>
5863 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5864 <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>
5865 <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>
5866 </member>
5867 <member name="M:Newtonsoft.Json.Linq.Extensions.AncestorsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5868 <summary>
5869 Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
5870 </summary>
5871 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5872 <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>
5873 <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>
5874 </member>
5875 <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5876 <summary>
5877 Returns a collection of tokens that contains the descendants of every token in the source collection.
5878 </summary>
5879 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5880 <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>
5881 <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>
5882 </member>
5883 <member name="M:Newtonsoft.Json.Linq.Extensions.DescendantsAndSelf``1(System.Collections.Generic.IEnumerable{``0})">
5884 <summary>
5885 Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
5886 </summary>
5887 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5888 <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>
5889 <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>
5890 </member>
5891 <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5892 <summary>
5893 Returns a collection of child properties of every object in the source collection.
5894 </summary>
5895 <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>
5896 <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>
5897 </member>
5898 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5899 <summary>
5900 Returns a collection of child values of every object in the source collection with the given key.
5901 </summary>
5902 <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>
5903 <param name="key">The token key.</param>
5904 <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>
5905 </member>
5906 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5907 <summary>
5908 Returns a collection of child values of every object in the source collection.
5909 </summary>
5910 <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>
5911 <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>
5912 </member>
5913 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5914 <summary>
5915 Returns a collection of converted child values of every object in the source collection with the given key.
5916 </summary>
5917 <typeparam name="U">The type to convert the values to.</typeparam>
5918 <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>
5919 <param name="key">The token key.</param>
5920 <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>
5921 </member>
5922 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5923 <summary>
5924 Returns a collection of converted child values of every object in the source collection.
5925 </summary>
5926 <typeparam name="U">The type to convert the values to.</typeparam>
5927 <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>
5928 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5929 </member>
5930 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5931 <summary>
5932 Converts the value.
5933 </summary>
5934 <typeparam name="U">The type to convert the value to.</typeparam>
5935 <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>
5936 <returns>A converted value.</returns>
5937 </member>
5938 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
5939 <summary>
5940 Converts the value.
5941 </summary>
5942 <typeparam name="T">The source collection type.</typeparam>
5943 <typeparam name="U">The type to convert the value to.</typeparam>
5944 <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>
5945 <returns>A converted value.</returns>
5946 </member>
5947 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
5948 <summary>
5949 Returns a collection of child tokens of every array in the source collection.
5950 </summary>
5951 <typeparam name="T">The source collection type.</typeparam>
5952 <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>
5953 <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>
5954 </member>
5955 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5956 <summary>
5957 Returns a collection of converted child tokens of every array in the source collection.
5958 </summary>
5959 <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>
5960 <typeparam name="U">The type to convert the values to.</typeparam>
5961 <typeparam name="T">The source collection type.</typeparam>
5962 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5963 </member>
5964 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5965 <summary>
5966 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5967 </summary>
5968 <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>
5969 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5970 </member>
5971 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
5972 <summary>
5973 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
5974 </summary>
5975 <typeparam name="T">The source collection type.</typeparam>
5976 <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>
5977 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5978 </member>
5979 <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
5980 <summary>
5981 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5982 </summary>
5983 <typeparam name="T">The type of token.</typeparam>
5984 </member>
5985 <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
5986 <summary>
5987 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5988 </summary>
5989 <value></value>
5990 </member>
5991 <member name="T:Newtonsoft.Json.Linq.JArray">
5992 <summary>
5993 Represents a JSON array.
5994 </summary>
5995 <example>
5996 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
5997 </example>
5998 </member>
5999 <member name="M:Newtonsoft.Json.Linq.JArray.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6000 <summary>
6001 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6002 </summary>
6003 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6004 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6005 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6006 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6007 </member>
6008 <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6009 <summary>
6010 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6011 </summary>
6012 <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"/>.
6013 If this is <c>null</c>, default load settings will be used.</param>
6014 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6015 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
6016 </member>
6017 <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6018 <summary>
6019 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6020 </summary>
6021 <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>
6022 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6023 If this is <c>null</c>, default load settings will be used.</param>
6024 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6025 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/> property contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
6026 </member>
6027 <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
6028 <summary>
6029 Gets the container's children tokens.
6030 </summary>
6031 <value>The container's children tokens.</value>
6032 </member>
6033 <member name="P:Newtonsoft.Json.Linq.JArray.Type">
6034 <summary>
6035 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6036 </summary>
6037 <value>The type.</value>
6038 </member>
6039 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
6040 <summary>
6041 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
6042 </summary>
6043 </member>
6044 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
6045 <summary>
6046 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
6047 </summary>
6048 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6049 </member>
6050 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
6051 <summary>
6052 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6053 </summary>
6054 <param name="content">The contents of the array.</param>
6055 </member>
6056 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
6057 <summary>
6058 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
6059 </summary>
6060 <param name="content">The contents of the array.</param>
6061 </member>
6062 <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
6063 <summary>
6064 Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6065 </summary>
6066 <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>
6067 <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>
6068 </member>
6069 <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6070 <summary>
6071 Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6072 </summary>
6073 <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>
6074 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6075 If this is <c>null</c>, default load settings will be used.</param>
6076 <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>
6077 </member>
6078 <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
6079 <summary>
6080 Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6081 </summary>
6082 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6083 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6084 <example>
6085 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6086 </example>
6087 </member>
6088 <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
6089 <summary>
6090 Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
6091 </summary>
6092 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6093 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6094 If this is <c>null</c>, default load settings will be used.</param>
6095 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6096 <example>
6097 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6098 </example>
6099 </member>
6100 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
6101 <summary>
6102 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6103 </summary>
6104 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6105 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
6106 </member>
6107 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6108 <summary>
6109 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
6110 </summary>
6111 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6112 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6113 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object.</returns>
6114 </member>
6115 <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6116 <summary>
6117 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6118 </summary>
6119 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6120 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6121 </member>
6122 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
6123 <summary>
6124 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6125 </summary>
6126 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6127 </member>
6128 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
6129 <summary>
6130 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
6131 </summary>
6132 <value></value>
6133 </member>
6134 <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
6135 <summary>
6136 Determines the index of a specific item in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6137 </summary>
6138 <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6139 <returns>
6140 The index of <paramref name="item"/> if found in the list; otherwise, -1.
6141 </returns>
6142 </member>
6143 <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
6144 <summary>
6145 Inserts an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/> at the specified index.
6146 </summary>
6147 <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
6148 <param name="item">The object to insert into the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6149 <exception cref="T:System.ArgumentOutOfRangeException">
6150 <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6151 </exception>
6152 </member>
6153 <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
6154 <summary>
6155 Removes the <see cref="T:Newtonsoft.Json.Linq.JArray"/> item at the specified index.
6156 </summary>
6157 <param name="index">The zero-based index of the item to remove.</param>
6158 <exception cref="T:System.ArgumentOutOfRangeException">
6159 <paramref name="index"/> is not a valid index in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6160 </exception>
6161 </member>
6162 <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator">
6163 <summary>
6164 Returns an enumerator that iterates through the collection.
6165 </summary>
6166 <returns>
6167 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that can be used to iterate through the collection.
6168 </returns>
6169 </member>
6170 <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
6171 <summary>
6172 Adds an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6173 </summary>
6174 <param name="item">The object to add to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6175 </member>
6176 <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
6177 <summary>
6178 Removes all items from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6179 </summary>
6180 </member>
6181 <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
6182 <summary>
6183 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> contains a specific value.
6184 </summary>
6185 <param name="item">The object to locate in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6186 <returns>
6187 <c>true</c> if <paramref name="item"/> is found in the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>.
6188 </returns>
6189 </member>
6190 <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
6191 <summary>
6192 Copies the elements of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> to an array, starting at a particular array index.
6193 </summary>
6194 <param name="array">The array.</param>
6195 <param name="arrayIndex">Index of the array.</param>
6196 </member>
6197 <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
6198 <summary>
6199 Gets a value indicating whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only.
6200 </summary>
6201 <returns><c>true</c> if the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only; otherwise, <c>false</c>.</returns>
6202 </member>
6203 <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
6204 <summary>
6205 Removes the first occurrence of a specific object from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6206 </summary>
6207 <param name="item">The object to remove from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
6208 <returns>
6209 <c>true</c> if <paramref name="item"/> was successfully removed from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>; otherwise, <c>false</c>. This method also returns <c>false</c> if <paramref name="item"/> is not found in the original <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
6210 </returns>
6211 </member>
6212 <member name="T:Newtonsoft.Json.Linq.JConstructor">
6213 <summary>
6214 Represents a JSON constructor.
6215 </summary>
6216 </member>
6217 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6218 <summary>
6219 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6220 </summary>
6221 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6222 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6223 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6224 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6225 </member>
6226 <member name="M:Newtonsoft.Json.Linq.JConstructor.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6227 <summary>
6228 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6229 </summary>
6230 <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>
6231 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6232 <returns>
6233 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6234 property 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>
6235 </member>
6236 <member name="M:Newtonsoft.Json.Linq.JConstructor.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6237 <summary>
6238 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6239 </summary>
6240 <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>
6241 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6242 If this is <c>null</c>, default load settings will be used.</param>
6243 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6244 <returns>
6245 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6246 property 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>
6247 </member>
6248 <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
6249 <summary>
6250 Gets the container's children tokens.
6251 </summary>
6252 <value>The container's children tokens.</value>
6253 </member>
6254 <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
6255 <summary>
6256 Gets or sets the name of this constructor.
6257 </summary>
6258 <value>The constructor name.</value>
6259 </member>
6260 <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
6261 <summary>
6262 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6263 </summary>
6264 <value>The type.</value>
6265 </member>
6266 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
6267 <summary>
6268 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
6269 </summary>
6270 </member>
6271 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
6272 <summary>
6273 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
6274 </summary>
6275 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
6276 </member>
6277 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
6278 <summary>
6279 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6280 </summary>
6281 <param name="name">The constructor name.</param>
6282 <param name="content">The contents of the constructor.</param>
6283 </member>
6284 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
6285 <summary>
6286 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
6287 </summary>
6288 <param name="name">The constructor name.</param>
6289 <param name="content">The contents of the constructor.</param>
6290 </member>
6291 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
6292 <summary>
6293 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
6294 </summary>
6295 <param name="name">The constructor name.</param>
6296 </member>
6297 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6298 <summary>
6299 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6300 </summary>
6301 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6302 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6303 </member>
6304 <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
6305 <summary>
6306 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6307 </summary>
6308 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6309 </member>
6310 <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
6311 <summary>
6312 Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6313 </summary>
6314 <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>
6315 <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>
6316 </member>
6317 <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6318 <summary>
6319 Loads a <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6320 </summary>
6321 <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>
6322 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6323 If this is <c>null</c>, default load settings will be used.</param>
6324 <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>
6325 </member>
6326 <member name="T:Newtonsoft.Json.Linq.JContainer">
6327 <summary>
6328 Represents a token that can contain other tokens.
6329 </summary>
6330 </member>
6331 <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
6332 <summary>
6333 Occurs when the list changes or an item in the list changes.
6334 </summary>
6335 </member>
6336 <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
6337 <summary>
6338 Occurs before an item is added to the collection.
6339 </summary>
6340 </member>
6341 <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged">
6342 <summary>
6343 Occurs when the items list of the collection has changed, or the collection is reset.
6344 </summary>
6345 </member>
6346 <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
6347 <summary>
6348 Gets the container's children tokens.
6349 </summary>
6350 <value>The container's children tokens.</value>
6351 </member>
6352 <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
6353 <summary>
6354 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
6355 </summary>
6356 <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
6357 </member>
6358 <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
6359 <summary>
6360 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
6361 </summary>
6362 <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
6363 </member>
6364 <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
6365 <summary>
6366 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event.
6367 </summary>
6368 <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
6369 </member>
6370 <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
6371 <summary>
6372 Gets a value indicating whether this token has child tokens.
6373 </summary>
6374 <value>
6375 <c>true</c> if this token has child values; otherwise, <c>false</c>.
6376 </value>
6377 </member>
6378 <member name="P:Newtonsoft.Json.Linq.JContainer.First">
6379 <summary>
6380 Get the first child token of this token.
6381 </summary>
6382 <value>
6383 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6384 </value>
6385 </member>
6386 <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
6387 <summary>
6388 Get the last child token of this token.
6389 </summary>
6390 <value>
6391 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6392 </value>
6393 </member>
6394 <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
6395 <summary>
6396 Returns a collection of the child tokens of this token, in document order.
6397 </summary>
6398 <returns>
6399 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.
6400 </returns>
6401 </member>
6402 <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
6403 <summary>
6404 Returns a collection of the child values of this token, in document order.
6405 </summary>
6406 <typeparam name="T">The type to convert the values to.</typeparam>
6407 <returns>
6408 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.
6409 </returns>
6410 </member>
6411 <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
6412 <summary>
6413 Returns a collection of the descendant tokens for this token in document order.
6414 </summary>
6415 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
6416 </member>
6417 <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
6418 <summary>
6419 Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
6420 </summary>
6421 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing this token, and all the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
6422 </member>
6423 <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
6424 <summary>
6425 Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6426 </summary>
6427 <param name="content">The content to be added.</param>
6428 </member>
6429 <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
6430 <summary>
6431 Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6432 </summary>
6433 <param name="content">The content to be added.</param>
6434 </member>
6435 <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
6436 <summary>
6437 Creates a <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6438 </summary>
6439 <returns>A <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
6440 </member>
6441 <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
6442 <summary>
6443 Replaces the child nodes of this token with the specified content.
6444 </summary>
6445 <param name="content">The content.</param>
6446 </member>
6447 <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6448 <summary>
6449 Removes the child nodes from this token.
6450 </summary>
6451 </member>
6452 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6453 <summary>
6454 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6455 </summary>
6456 <param name="content">The content to be merged.</param>
6457 </member>
6458 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6459 <summary>
6460 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6461 </summary>
6462 <param name="content">The content to be merged.</param>
6463 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
6464 </member>
6465 <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6466 <summary>
6467 Gets the count of child JSON tokens.
6468 </summary>
6469 <value>The count of child JSON tokens.</value>
6470 </member>
6471 <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6472 <summary>
6473 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6474 </summary>
6475 <typeparam name="T">The type of token.</typeparam>
6476 </member>
6477 <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6478 <summary>
6479 An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6480 </summary>
6481 </member>
6482 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
6483 <summary>
6484 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
6485 </summary>
6486 <param name="enumerable">The enumerable.</param>
6487 </member>
6488 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6489 <summary>
6490 Returns an enumerator that can be used to iterate through the collection.
6491 </summary>
6492 <returns>
6493 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6494 </returns>
6495 </member>
6496 <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6497 <summary>
6498 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6499 </summary>
6500 <value></value>
6501 </member>
6502 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
6503 <summary>
6504 Determines whether the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance.
6505 </summary>
6506 <param name="other">The <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> to compare with this instance.</param>
6507 <returns>
6508 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> is equal to this instance; otherwise, <c>false</c>.
6509 </returns>
6510 </member>
6511 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
6512 <summary>
6513 Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
6514 </summary>
6515 <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
6516 <returns>
6517 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
6518 </returns>
6519 </member>
6520 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
6521 <summary>
6522 Returns a hash code for this instance.
6523 </summary>
6524 <returns>
6525 A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
6526 </returns>
6527 </member>
6528 <member name="T:Newtonsoft.Json.Linq.JObject">
6529 <summary>
6530 Represents a JSON object.
6531 </summary>
6532 <example>
6533 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6534 </example>
6535 </member>
6536 <member name="M:Newtonsoft.Json.Linq.JObject.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6537 <summary>
6538 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6539 </summary>
6540 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6541 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6542 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6543 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6544 </member>
6545 <member name="M:Newtonsoft.Json.Linq.JObject.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6546 <summary>
6547 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6548 </summary>
6549 <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>
6550 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6551 <returns>
6552 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6553 property 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>
6554 </member>
6555 <member name="M:Newtonsoft.Json.Linq.JObject.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6556 <summary>
6557 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6558 </summary>
6559 <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>
6560 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6561 If this is <c>null</c>, default load settings will be used.</param>
6562 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6563 <returns>
6564 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous load. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6565 property 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>
6566 </member>
6567 <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
6568 <summary>
6569 Gets the container's children tokens.
6570 </summary>
6571 <value>The container's children tokens.</value>
6572 </member>
6573 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
6574 <summary>
6575 Occurs when a property value changes.
6576 </summary>
6577 </member>
6578 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
6579 <summary>
6580 Occurs when a property value is changing.
6581 </summary>
6582 </member>
6583 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6584 <summary>
6585 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
6586 </summary>
6587 </member>
6588 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
6589 <summary>
6590 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
6591 </summary>
6592 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
6593 </member>
6594 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
6595 <summary>
6596 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6597 </summary>
6598 <param name="content">The contents of the object.</param>
6599 </member>
6600 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
6601 <summary>
6602 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
6603 </summary>
6604 <param name="content">The contents of the object.</param>
6605 </member>
6606 <member name="P:Newtonsoft.Json.Linq.JObject.Type">
6607 <summary>
6608 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6609 </summary>
6610 <value>The type.</value>
6611 </member>
6612 <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6613 <summary>
6614 Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.
6615 </summary>
6616 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.</returns>
6617 </member>
6618 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6619 <summary>
6620 Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name.
6621 </summary>
6622 <param name="name">The property name.</param>
6623 <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or <c>null</c>.</returns>
6624 </member>
6625 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String,System.StringComparison)">
6626 <summary>
6627 Gets the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name.
6628 The exact name will be searched for first and if no matching property is found then
6629 the <see cref="T:System.StringComparison"/> will be used to match a property.
6630 </summary>
6631 <param name="name">The property name.</param>
6632 <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6633 <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> matched with the specified name or <c>null</c>.</returns>
6634 </member>
6635 <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6636 <summary>
6637 Gets a <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.
6638 </summary>
6639 <returns>A <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this object's property values.</returns>
6640 </member>
6641 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
6642 <summary>
6643 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6644 </summary>
6645 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
6646 </member>
6647 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
6648 <summary>
6649 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6650 </summary>
6651 <value></value>
6652 </member>
6653 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6654 <summary>
6655 Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6656 </summary>
6657 <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>
6658 <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>
6659 <exception cref="T:Newtonsoft.Json.JsonReaderException">
6660 <paramref name="reader"/> is not valid JSON.
6661 </exception>
6662 </member>
6663 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6664 <summary>
6665 Loads a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6666 </summary>
6667 <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>
6668 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6669 If this is <c>null</c>, default load settings will be used.</param>
6670 <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>
6671 <exception cref="T:Newtonsoft.Json.JsonReaderException">
6672 <paramref name="reader"/> is not valid JSON.
6673 </exception>
6674 </member>
6675 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6676 <summary>
6677 Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6678 </summary>
6679 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6680 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6681 <exception cref="T:Newtonsoft.Json.JsonReaderException">
6682 <paramref name="json"/> is not valid JSON.
6683 </exception>
6684 <example>
6685 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6686 </example>
6687 </member>
6688 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
6689 <summary>
6690 Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
6691 </summary>
6692 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6693 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6694 If this is <c>null</c>, default load settings will be used.</param>
6695 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
6696 <exception cref="T:Newtonsoft.Json.JsonReaderException">
6697 <paramref name="json"/> is not valid JSON.
6698 </exception>
6699 <example>
6700 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6701 </example>
6702 </member>
6703 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
6704 <summary>
6705 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6706 </summary>
6707 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6708 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6709 </member>
6710 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6711 <summary>
6712 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6713 </summary>
6714 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6715 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6716 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6717 </member>
6718 <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6719 <summary>
6720 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6721 </summary>
6722 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6723 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6724 </member>
6725 <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)">
6726 <summary>
6727 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6728 </summary>
6729 <param name="propertyName">Name of the property.</param>
6730 <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6731 </member>
6732 <member name="M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)">
6733 <summary>
6734 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6735 The exact property name will be searched for first and if no matching property is found then
6736 the <see cref="T:System.StringComparison"/> will be used to match a property.
6737 </summary>
6738 <param name="propertyName">Name of the property.</param>
6739 <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6740 <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.</returns>
6741 </member>
6742 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)">
6743 <summary>
6744 Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6745 The exact property name will be searched for first and if no matching property is found then
6746 the <see cref="T:System.StringComparison"/> will be used to match a property.
6747 </summary>
6748 <param name="propertyName">Name of the property.</param>
6749 <param name="value">The value.</param>
6750 <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6751 <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6752 </member>
6753 <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6754 <summary>
6755 Adds the specified property name.
6756 </summary>
6757 <param name="propertyName">Name of the property.</param>
6758 <param name="value">The value.</param>
6759 </member>
6760 <member name="M:Newtonsoft.Json.Linq.JObject.ContainsKey(System.String)">
6761 <summary>
6762 Determines whether the JSON object has the specified property name.
6763 </summary>
6764 <param name="propertyName">Name of the property.</param>
6765 <returns><c>true</c> if the JSON object has the specified property name; otherwise, <c>false</c>.</returns>
6766 </member>
6767 <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6768 <summary>
6769 Removes the property with the specified name.
6770 </summary>
6771 <param name="propertyName">Name of the property.</param>
6772 <returns><c>true</c> if item was successfully removed; otherwise, <c>false</c>.</returns>
6773 </member>
6774 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6775 <summary>
6776 Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6777 </summary>
6778 <param name="propertyName">Name of the property.</param>
6779 <param name="value">The value.</param>
6780 <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6781 </member>
6782 <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6783 <summary>
6784 Returns an enumerator that can be used to iterate through the collection.
6785 </summary>
6786 <returns>
6787 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6788 </returns>
6789 </member>
6790 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
6791 <summary>
6792 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
6793 </summary>
6794 <param name="propertyName">Name of the property.</param>
6795 </member>
6796 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
6797 <summary>
6798 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
6799 </summary>
6800 <param name="propertyName">Name of the property.</param>
6801 </member>
6802 <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
6803 <summary>
6804 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6805 </summary>
6806 <param name="parameter">The expression tree representation of the runtime value.</param>
6807 <returns>
6808 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6809 </returns>
6810 </member>
6811 <member name="T:Newtonsoft.Json.Linq.JProperty">
6812 <summary>
6813 Represents a JSON property.
6814 </summary>
6815 </member>
6816 <member name="M:Newtonsoft.Json.Linq.JProperty.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6817 <summary>
6818 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6819 </summary>
6820 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6821 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
6822 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6823 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
6824 </member>
6825 <member name="M:Newtonsoft.Json.Linq.JProperty.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6826 <summary>
6827 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6828 </summary>
6829 <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>
6830 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6831 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6832 property 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>
6833 </member>
6834 <member name="M:Newtonsoft.Json.Linq.JProperty.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6835 <summary>
6836 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6837 </summary>
6838 <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>
6839 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6840 If this is <c>null</c>, default load settings will be used.</param>
6841 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
6842 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
6843 property 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>
6844 </member>
6845 <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
6846 <summary>
6847 Gets the container's children tokens.
6848 </summary>
6849 <value>The container's children tokens.</value>
6850 </member>
6851 <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
6852 <summary>
6853 Gets the property name.
6854 </summary>
6855 <value>The property name.</value>
6856 </member>
6857 <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
6858 <summary>
6859 Gets or sets the property value.
6860 </summary>
6861 <value>The property value.</value>
6862 </member>
6863 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
6864 <summary>
6865 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
6866 </summary>
6867 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
6868 </member>
6869 <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
6870 <summary>
6871 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6872 </summary>
6873 <value>The type.</value>
6874 </member>
6875 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
6876 <summary>
6877 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6878 </summary>
6879 <param name="name">The property name.</param>
6880 <param name="content">The property content.</param>
6881 </member>
6882 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
6883 <summary>
6884 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
6885 </summary>
6886 <param name="name">The property name.</param>
6887 <param name="content">The property content.</param>
6888 </member>
6889 <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6890 <summary>
6891 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6892 </summary>
6893 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6894 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6895 </member>
6896 <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
6897 <summary>
6898 Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6899 </summary>
6900 <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>
6901 <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>
6902 </member>
6903 <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6904 <summary>
6905 Loads a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6906 </summary>
6907 <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>
6908 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
6909 If this is <c>null</c>, default load settings will be used.</param>
6910 <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>
6911 </member>
6912 <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
6913 <summary>
6914 Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
6915 </summary>
6916 </member>
6917 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)">
6918 <summary>
6919 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
6920 </summary>
6921 <param name="name">The name.</param>
6922 </member>
6923 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
6924 <summary>
6925 When overridden in a derived class, returns whether resetting an object changes its value.
6926 </summary>
6927 <returns>
6928 <c>true</c> if resetting the component changes its value; otherwise, <c>false</c>.
6929 </returns>
6930 <param name="component">The component to test for reset capability.</param>
6931 </member>
6932 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
6933 <summary>
6934 When overridden in a derived class, gets the current value of the property on a component.
6935 </summary>
6936 <returns>
6937 The value of a property for a given component.
6938 </returns>
6939 <param name="component">The component with the property for which to retrieve the value.</param>
6940 </member>
6941 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
6942 <summary>
6943 When overridden in a derived class, resets the value for this property of the component to the default value.
6944 </summary>
6945 <param name="component">The component with the property value that is to be reset to the default value.</param>
6946 </member>
6947 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
6948 <summary>
6949 When overridden in a derived class, sets the value of the component to a different value.
6950 </summary>
6951 <param name="component">The component with the property value that is to be set.</param>
6952 <param name="value">The new value.</param>
6953 </member>
6954 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
6955 <summary>
6956 When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
6957 </summary>
6958 <returns>
6959 <c>true</c> if the property should be persisted; otherwise, <c>false</c>.
6960 </returns>
6961 <param name="component">The component with the property to be examined for persistence.</param>
6962 </member>
6963 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
6964 <summary>
6965 When overridden in a derived class, gets the type of the component this property is bound to.
6966 </summary>
6967 <returns>
6968 A <see cref="T:System.Type"/> that represents the type of component this property is bound to.
6969 When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or
6970 <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/>
6971 methods are invoked, the object specified might be an instance of this type.
6972 </returns>
6973 </member>
6974 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
6975 <summary>
6976 When overridden in a derived class, gets a value indicating whether this property is read-only.
6977 </summary>
6978 <returns>
6979 <c>true</c> if the property is read-only; otherwise, <c>false</c>.
6980 </returns>
6981 </member>
6982 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
6983 <summary>
6984 When overridden in a derived class, gets the type of the property.
6985 </summary>
6986 <returns>
6987 A <see cref="T:System.Type"/> that represents the type of the property.
6988 </returns>
6989 </member>
6990 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
6991 <summary>
6992 Gets the hash code for the name of the member.
6993 </summary>
6994 <value></value>
6995 <returns>
6996 The hash code for the name of the member.
6997 </returns>
6998 </member>
6999 <member name="T:Newtonsoft.Json.Linq.JRaw">
7000 <summary>
7001 Represents a raw JSON string.
7002 </summary>
7003 </member>
7004 <member name="M:Newtonsoft.Json.Linq.JRaw.CreateAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
7005 <summary>
7006 Asynchronously creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
7007 </summary>
7008 <param name="reader">The reader.</param>
7009 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
7010 <returns>A <see cref="T:System.Threading.Tasks.Task`1"/> representing the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
7011 property returns an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
7012 </member>
7013 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
7014 <summary>
7015 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
7016 </summary>
7017 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
7018 </member>
7019 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
7020 <summary>
7021 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
7022 </summary>
7023 <param name="rawJson">The raw json.</param>
7024 </member>
7025 <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
7026 <summary>
7027 Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
7028 </summary>
7029 <param name="reader">The reader.</param>
7030 <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
7031 </member>
7032 <member name="T:Newtonsoft.Json.Linq.JsonLoadSettings">
7033 <summary>
7034 Specifies the settings used when loading JSON.
7035 </summary>
7036 </member>
7037 <member name="M:Newtonsoft.Json.Linq.JsonLoadSettings.#ctor">
7038 <summary>
7039 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> class.
7040 </summary>
7041 </member>
7042 <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.CommentHandling">
7043 <summary>
7044 Gets or sets how JSON comments are handled when loading JSON.
7045 The default value is <see cref="F:Newtonsoft.Json.Linq.CommentHandling.Ignore" />.
7046 </summary>
7047 <value>The JSON comment handling.</value>
7048 </member>
7049 <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.LineInfoHandling">
7050 <summary>
7051 Gets or sets how JSON line info is handled when loading JSON.
7052 The default value is <see cref="F:Newtonsoft.Json.Linq.LineInfoHandling.Load" />.
7053 </summary>
7054 <value>The JSON line info handling.</value>
7055 </member>
7056 <member name="P:Newtonsoft.Json.Linq.JsonLoadSettings.DuplicatePropertyNameHandling">
7057 <summary>
7058 Gets or sets how duplicate property names in JSON objects are handled when loading JSON.
7059 The default value is <see cref="F:Newtonsoft.Json.Linq.DuplicatePropertyNameHandling.Replace" />.
7060 </summary>
7061 <value>The JSON duplicate property name handling.</value>
7062 </member>
7063 <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
7064 <summary>
7065 Specifies the settings used when merging JSON.
7066 </summary>
7067 </member>
7068 <member name="M:Newtonsoft.Json.Linq.JsonMergeSettings.#ctor">
7069 <summary>
7070 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> class.
7071 </summary>
7072 </member>
7073 <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
7074 <summary>
7075 Gets or sets the method used when merging JSON arrays.
7076 </summary>
7077 <value>The method used when merging JSON arrays.</value>
7078 </member>
7079 <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeNullValueHandling">
7080 <summary>
7081 Gets or sets how null value properties are merged.
7082 </summary>
7083 <value>How null value properties are merged.</value>
7084 </member>
7085 <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.PropertyNameComparison">
7086 <summary>
7087 Gets or sets the comparison used to match property names while merging.
7088 The exact property name will be searched for first and if no matching property is found then
7089 the <see cref="T:System.StringComparison"/> will be used to match a property.
7090 </summary>
7091 <value>The comparison used to match property names while merging.</value>
7092 </member>
7093 <member name="T:Newtonsoft.Json.Linq.JToken">
7094 <summary>
7095 Represents an abstract JSON token.
7096 </summary>
7097 </member>
7098 <member name="M:Newtonsoft.Json.Linq.JToken.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
7099 <summary>
7100 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
7101 </summary>
7102 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7103 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
7104 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7105 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
7106 </member>
7107 <member name="M:Newtonsoft.Json.Linq.JToken.WriteToAsync(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7108 <summary>
7109 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
7110 </summary>
7111 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7112 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7113 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
7114 </member>
7115 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFromAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
7116 <summary>
7117 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7118 </summary>
7119 <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>
7120 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
7121 <returns>
7122 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The
7123 <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains
7124 the token and its descendant tokens
7125 that were read from the reader. The runtime type of the token is determined
7126 by the token type of the first token encountered in the reader.
7127 </returns>
7128 </member>
7129 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFromAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
7130 <summary>
7131 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7132 </summary>
7133 <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>
7134 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7135 If this is <c>null</c>, default load settings will be used.</param>
7136 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
7137 <returns>
7138 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The
7139 <see cref="P:System.Threading.Tasks.Task`1.Result"/> property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains
7140 the token and its descendant tokens
7141 that were read from the reader. The runtime type of the token is determined
7142 by the token type of the first token encountered in the reader.
7143 </returns>
7144 </member>
7145 <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
7146 <summary>
7147 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7148 </summary>
7149 <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7150 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
7151 <returns>
7152 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
7153 property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7154 that were read from the reader. The runtime type of the token is determined
7155 by the token type of the first token encountered in the reader.
7156 </returns>
7157 </member>
7158 <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
7159 <summary>
7160 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7161 </summary>
7162 <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7163 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7164 If this is <c>null</c>, default load settings will be used.</param>
7165 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
7166 <returns>
7167 A <see cref="T:System.Threading.Tasks.Task`1"/> that represents the asynchronous creation. The <see cref="P:System.Threading.Tasks.Task`1.Result"/>
7168 property returns a <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7169 that were read from the reader. The runtime type of the token is determined
7170 by the token type of the first token encountered in the reader.
7171 </returns>
7172 </member>
7173 <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
7174 <summary>
7175 Gets a comparer that can compare two tokens for value equality.
7176 </summary>
7177 <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
7178 </member>
7179 <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
7180 <summary>
7181 Gets or sets the parent.
7182 </summary>
7183 <value>The parent.</value>
7184 </member>
7185 <member name="P:Newtonsoft.Json.Linq.JToken.Root">
7186 <summary>
7187 Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7188 </summary>
7189 <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
7190 </member>
7191 <member name="P:Newtonsoft.Json.Linq.JToken.Type">
7192 <summary>
7193 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7194 </summary>
7195 <value>The type.</value>
7196 </member>
7197 <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
7198 <summary>
7199 Gets a value indicating whether this token has child tokens.
7200 </summary>
7201 <value>
7202 <c>true</c> if this token has child values; otherwise, <c>false</c>.
7203 </value>
7204 </member>
7205 <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
7206 <summary>
7207 Compares the values of two tokens, including the values of all descendant tokens.
7208 </summary>
7209 <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
7210 <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
7211 <returns><c>true</c> if the tokens are equal; otherwise <c>false</c>.</returns>
7212 </member>
7213 <member name="P:Newtonsoft.Json.Linq.JToken.Next">
7214 <summary>
7215 Gets the next sibling token of this node.
7216 </summary>
7217 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
7218 </member>
7219 <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
7220 <summary>
7221 Gets the previous sibling token of this node.
7222 </summary>
7223 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
7224 </member>
7225 <member name="P:Newtonsoft.Json.Linq.JToken.Path">
7226 <summary>
7227 Gets the path of the JSON token.
7228 </summary>
7229 </member>
7230 <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
7231 <summary>
7232 Adds the specified content immediately after this token.
7233 </summary>
7234 <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
7235 </member>
7236 <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
7237 <summary>
7238 Adds the specified content immediately before this token.
7239 </summary>
7240 <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
7241 </member>
7242 <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
7243 <summary>
7244 Returns a collection of the ancestor tokens of this token.
7245 </summary>
7246 <returns>A collection of the ancestor tokens of this token.</returns>
7247 </member>
7248 <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
7249 <summary>
7250 Returns a collection of tokens that contain this token, and the ancestors of this token.
7251 </summary>
7252 <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
7253 </member>
7254 <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
7255 <summary>
7256 Returns a collection of the sibling tokens after this token, in document order.
7257 </summary>
7258 <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
7259 </member>
7260 <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
7261 <summary>
7262 Returns a collection of the sibling tokens before this token, in document order.
7263 </summary>
7264 <returns>A collection of the sibling tokens before this token, in document order.</returns>
7265 </member>
7266 <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
7267 <summary>
7268 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
7269 </summary>
7270 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
7271 </member>
7272 <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
7273 <summary>
7274 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
7275 </summary>
7276 <typeparam name="T">The type to convert the token to.</typeparam>
7277 <param name="key">The token key.</param>
7278 <returns>The converted token value.</returns>
7279 </member>
7280 <member name="P:Newtonsoft.Json.Linq.JToken.First">
7281 <summary>
7282 Get the first child token of this token.
7283 </summary>
7284 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
7285 </member>
7286 <member name="P:Newtonsoft.Json.Linq.JToken.Last">
7287 <summary>
7288 Get the last child token of this token.
7289 </summary>
7290 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
7291 </member>
7292 <member name="M:Newtonsoft.Json.Linq.JToken.Children">
7293 <summary>
7294 Returns a collection of the child tokens of this token, in document order.
7295 </summary>
7296 <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>
7297 </member>
7298 <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
7299 <summary>
7300 Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
7301 </summary>
7302 <typeparam name="T">The type to filter the child tokens on.</typeparam>
7303 <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>
7304 </member>
7305 <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
7306 <summary>
7307 Returns a collection of the child values of this token, in document order.
7308 </summary>
7309 <typeparam name="T">The type to convert the values to.</typeparam>
7310 <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>
7311 </member>
7312 <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
7313 <summary>
7314 Removes this token from its parent.
7315 </summary>
7316 </member>
7317 <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
7318 <summary>
7319 Replaces this token with the specified token.
7320 </summary>
7321 <param name="value">The value.</param>
7322 </member>
7323 <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
7324 <summary>
7325 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
7326 </summary>
7327 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7328 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
7329 </member>
7330 <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
7331 <summary>
7332 Returns the indented JSON for this token.
7333 </summary>
7334 <returns>
7335 The indented JSON for this token.
7336 </returns>
7337 </member>
7338 <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
7339 <summary>
7340 Returns the JSON for this token using the given formatting and converters.
7341 </summary>
7342 <param name="formatting">Indicates how the output should be formatted.</param>
7343 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
7344 <returns>The JSON for this token using the given formatting and converters.</returns>
7345 </member>
7346 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
7347 <summary>
7348 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
7349 </summary>
7350 <param name="value">The value.</param>
7351 <returns>The result of the conversion.</returns>
7352 </member>
7353 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
7354 <summary>
7355 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
7356 </summary>
7357 <param name="value">The value.</param>
7358 <returns>The result of the conversion.</returns>
7359 </member>
7360 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
7361 <summary>
7362 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
7363 </summary>
7364 <param name="value">The value.</param>
7365 <returns>The result of the conversion.</returns>
7366 </member>
7367 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
7368 <summary>
7369 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
7370 </summary>
7371 <param name="value">The value.</param>
7372 <returns>The result of the conversion.</returns>
7373 </member>
7374 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
7375 <summary>
7376 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
7377 </summary>
7378 <param name="value">The value.</param>
7379 <returns>The result of the conversion.</returns>
7380 </member>
7381 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
7382 <summary>
7383 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
7384 </summary>
7385 <param name="value">The value.</param>
7386 <returns>The result of the conversion.</returns>
7387 </member>
7388 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
7389 <summary>
7390 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
7391 </summary>
7392 <param name="value">The value.</param>
7393 <returns>The result of the conversion.</returns>
7394 </member>
7395 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
7396 <summary>
7397 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
7398 </summary>
7399 <param name="value">The value.</param>
7400 <returns>The result of the conversion.</returns>
7401 </member>
7402 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}">
7403 <summary>
7404 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/>.
7405 </summary>
7406 <param name="value">The value.</param>
7407 <returns>The result of the conversion.</returns>
7408 </member>
7409 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
7410 <summary>
7411 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
7412 </summary>
7413 <param name="value">The value.</param>
7414 <returns>The result of the conversion.</returns>
7415 </member>
7416 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
7417 <summary>
7418 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
7419 </summary>
7420 <param name="value">The value.</param>
7421 <returns>The result of the conversion.</returns>
7422 </member>
7423 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
7424 <summary>
7425 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
7426 </summary>
7427 <param name="value">The value.</param>
7428 <returns>The result of the conversion.</returns>
7429 </member>
7430 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char">
7431 <summary>
7432 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>.
7433 </summary>
7434 <param name="value">The value.</param>
7435 <returns>The result of the conversion.</returns>
7436 </member>
7437 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte">
7438 <summary>
7439 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>.
7440 </summary>
7441 <param name="value">The value.</param>
7442 <returns>The result of the conversion.</returns>
7443 </member>
7444 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte">
7445 <summary>
7446 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>.
7447 </summary>
7448 <param name="value">The value.</param>
7449 <returns>The result of the conversion.</returns>
7450 </member>
7451 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
7452 <summary>
7453 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> .
7454 </summary>
7455 <param name="value">The value.</param>
7456 <returns>The result of the conversion.</returns>
7457 </member>
7458 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
7459 <summary>
7460 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/>.
7461 </summary>
7462 <param name="value">The value.</param>
7463 <returns>The result of the conversion.</returns>
7464 </member>
7465 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
7466 <summary>
7467 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/>.
7468 </summary>
7469 <param name="value">The value.</param>
7470 <returns>The result of the conversion.</returns>
7471 </member>
7472 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}">
7473 <summary>
7474 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/>.
7475 </summary>
7476 <param name="value">The value.</param>
7477 <returns>The result of the conversion.</returns>
7478 </member>
7479 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}">
7480 <summary>
7481 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/>.
7482 </summary>
7483 <param name="value">The value.</param>
7484 <returns>The result of the conversion.</returns>
7485 </member>
7486 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
7487 <summary>
7488 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
7489 </summary>
7490 <param name="value">The value.</param>
7491 <returns>The result of the conversion.</returns>
7492 </member>
7493 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
7494 <summary>
7495 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/>.
7496 </summary>
7497 <param name="value">The value.</param>
7498 <returns>The result of the conversion.</returns>
7499 </member>
7500 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
7501 <summary>
7502 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/>.
7503 </summary>
7504 <param name="value">The value.</param>
7505 <returns>The result of the conversion.</returns>
7506 </member>
7507 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
7508 <summary>
7509 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
7510 </summary>
7511 <param name="value">The value.</param>
7512 <returns>The result of the conversion.</returns>
7513 </member>
7514 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
7515 <summary>
7516 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/>.
7517 </summary>
7518 <param name="value">The value.</param>
7519 <returns>The result of the conversion.</returns>
7520 </member>
7521 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
7522 <summary>
7523 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/>.
7524 </summary>
7525 <param name="value">The value.</param>
7526 <returns>The result of the conversion.</returns>
7527 </member>
7528 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
7529 <summary>
7530 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
7531 </summary>
7532 <param name="value">The value.</param>
7533 <returns>The result of the conversion.</returns>
7534 </member>
7535 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
7536 <summary>
7537 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
7538 </summary>
7539 <param name="value">The value.</param>
7540 <returns>The result of the conversion.</returns>
7541 </member>
7542 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
7543 <summary>
7544 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
7545 </summary>
7546 <param name="value">The value.</param>
7547 <returns>The result of the conversion.</returns>
7548 </member>
7549 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
7550 <summary>
7551 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
7552 </summary>
7553 <param name="value">The value.</param>
7554 <returns>The result of the conversion.</returns>
7555 </member>
7556 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
7557 <summary>
7558 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
7559 </summary>
7560 <param name="value">The value.</param>
7561 <returns>The result of the conversion.</returns>
7562 </member>
7563 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
7564 <summary>
7565 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>[].
7566 </summary>
7567 <param name="value">The value.</param>
7568 <returns>The result of the conversion.</returns>
7569 </member>
7570 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid">
7571 <summary>
7572 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>.
7573 </summary>
7574 <param name="value">The value.</param>
7575 <returns>The result of the conversion.</returns>
7576 </member>
7577 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}">
7578 <summary>
7579 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> .
7580 </summary>
7581 <param name="value">The value.</param>
7582 <returns>The result of the conversion.</returns>
7583 </member>
7584 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan">
7585 <summary>
7586 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>.
7587 </summary>
7588 <param name="value">The value.</param>
7589 <returns>The result of the conversion.</returns>
7590 </member>
7591 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}">
7592 <summary>
7593 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/>.
7594 </summary>
7595 <param name="value">The value.</param>
7596 <returns>The result of the conversion.</returns>
7597 </member>
7598 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri">
7599 <summary>
7600 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>.
7601 </summary>
7602 <param name="value">The value.</param>
7603 <returns>The result of the conversion.</returns>
7604 </member>
7605 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
7606 <summary>
7607 Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7608 </summary>
7609 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7610 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7611 </member>
7612 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
7613 <summary>
7614 Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7615 </summary>
7616 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7617 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7618 </member>
7619 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken">
7620 <summary>
7621 Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7622 </summary>
7623 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7624 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7625 </member>
7626 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken">
7627 <summary>
7628 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7629 </summary>
7630 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7631 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7632 </member>
7633 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken">
7634 <summary>
7635 Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7636 </summary>
7637 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7638 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7639 </member>
7640 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken">
7641 <summary>
7642 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7643 </summary>
7644 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7645 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7646 </member>
7647 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
7648 <summary>
7649 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7650 </summary>
7651 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7652 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7653 </member>
7654 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
7655 <summary>
7656 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7657 </summary>
7658 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7659 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7660 </member>
7661 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
7662 <summary>
7663 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7664 </summary>
7665 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7666 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7667 </member>
7668 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
7669 <summary>
7670 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7671 </summary>
7672 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7673 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7674 </member>
7675 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
7676 <summary>
7677 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7678 </summary>
7679 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7680 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7681 </member>
7682 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
7683 <summary>
7684 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7685 </summary>
7686 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7687 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7688 </member>
7689 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
7690 <summary>
7691 Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7692 </summary>
7693 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7694 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7695 </member>
7696 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
7697 <summary>
7698 Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7699 </summary>
7700 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7701 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7702 </member>
7703 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
7704 <summary>
7705 Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7706 </summary>
7707 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7708 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7709 </member>
7710 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
7711 <summary>
7712 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7713 </summary>
7714 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7715 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7716 </member>
7717 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
7718 <summary>
7719 Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7720 </summary>
7721 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7722 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7723 </member>
7724 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
7725 <summary>
7726 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7727 </summary>
7728 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7729 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7730 </member>
7731 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
7732 <summary>
7733 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7734 </summary>
7735 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7736 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7737 </member>
7738 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
7739 <summary>
7740 Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7741 </summary>
7742 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7743 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7744 </member>
7745 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
7746 <summary>
7747 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7748 </summary>
7749 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7750 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7751 </member>
7752 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
7753 <summary>
7754 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7755 </summary>
7756 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7757 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7758 </member>
7759 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
7760 <summary>
7761 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7762 </summary>
7763 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7764 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7765 </member>
7766 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
7767 <summary>
7768 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7769 </summary>
7770 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7771 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7772 </member>
7773 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
7774 <summary>
7775 Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7776 </summary>
7777 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7778 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7779 </member>
7780 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
7781 <summary>
7782 Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7783 </summary>
7784 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7785 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7786 </member>
7787 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
7788 <summary>
7789 Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7790 </summary>
7791 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7792 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7793 </member>
7794 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
7795 <summary>
7796 Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7797 </summary>
7798 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7799 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7800 </member>
7801 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
7802 <summary>
7803 Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7804 </summary>
7805 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7806 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7807 </member>
7808 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
7809 <summary>
7810 Performs an implicit conversion from <see cref="T:System.Byte"/>[] to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7811 </summary>
7812 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7813 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7814 </member>
7815 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken">
7816 <summary>
7817 Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7818 </summary>
7819 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7820 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7821 </member>
7822 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken">
7823 <summary>
7824 Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7825 </summary>
7826 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7827 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7828 </member>
7829 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken">
7830 <summary>
7831 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7832 </summary>
7833 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7834 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7835 </member>
7836 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken">
7837 <summary>
7838 Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7839 </summary>
7840 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7841 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7842 </member>
7843 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken">
7844 <summary>
7845 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7846 </summary>
7847 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
7848 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
7849 </member>
7850 <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
7851 <summary>
7852 Creates a <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
7853 </summary>
7854 <returns>A <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
7855 </member>
7856 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
7857 <summary>
7858 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
7859 </summary>
7860 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7861 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
7862 </member>
7863 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
7864 <summary>
7865 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7866 </summary>
7867 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7868 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
7869 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object.</returns>
7870 </member>
7871 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
7872 <summary>
7873 Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7874 </summary>
7875 <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
7876 <returns>The new object created from the JSON value.</returns>
7877 </member>
7878 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)">
7879 <summary>
7880 Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
7881 </summary>
7882 <param name="objectType">The object type that the token will be deserialized to.</param>
7883 <returns>The new object created from the JSON value.</returns>
7884 </member>
7885 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
7886 <summary>
7887 Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7888 </summary>
7889 <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
7890 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
7891 <returns>The new object created from the JSON value.</returns>
7892 </member>
7893 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)">
7894 <summary>
7895 Creates an instance of the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7896 </summary>
7897 <param name="objectType">The object type that the token will be deserialized to.</param>
7898 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
7899 <returns>The new object created from the JSON value.</returns>
7900 </member>
7901 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
7902 <summary>
7903 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7904 </summary>
7905 <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7906 <returns>
7907 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7908 that were read from the reader. The runtime type of the token is determined
7909 by the token type of the first token encountered in the reader.
7910 </returns>
7911 </member>
7912 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
7913 <summary>
7914 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7915 </summary>
7916 <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>
7917 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7918 If this is <c>null</c>, default load settings will be used.</param>
7919 <returns>
7920 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7921 that were read from the reader. The runtime type of the token is determined
7922 by the token type of the first token encountered in the reader.
7923 </returns>
7924 </member>
7925 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
7926 <summary>
7927 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
7928 </summary>
7929 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7930 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
7931 </member>
7932 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
7933 <summary>
7934 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
7935 </summary>
7936 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
7937 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7938 If this is <c>null</c>, default load settings will be used.</param>
7939 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
7940 </member>
7941 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
7942 <summary>
7943 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7944 </summary>
7945 <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7946 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonLoadSettings"/> used to load the JSON.
7947 If this is <c>null</c>, default load settings will be used.</param>
7948 <returns>
7949 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7950 that were read from the reader. The runtime type of the token is determined
7951 by the token type of the first token encountered in the reader.
7952 </returns>
7953 </member>
7954 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
7955 <summary>
7956 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
7957 </summary>
7958 <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> positioned at the token to read into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
7959 <returns>
7960 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
7961 that were read from the reader. The runtime type of the token is determined
7962 by the token type of the first token encountered in the reader.
7963 </returns>
7964 </member>
7965 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
7966 <summary>
7967 Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
7968 </summary>
7969 <param name="path">
7970 A <see cref="T:System.String"/> that contains a JPath expression.
7971 </param>
7972 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or <c>null</c>.</returns>
7973 </member>
7974 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
7975 <summary>
7976 Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path.
7977 </summary>
7978 <param name="path">
7979 A <see cref="T:System.String"/> that contains a JPath expression.
7980 </param>
7981 <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>
7982 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
7983 </member>
7984 <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)">
7985 <summary>
7986 Selects a collection of elements using a JPath expression.
7987 </summary>
7988 <param name="path">
7989 A <see cref="T:System.String"/> that contains a JPath expression.
7990 </param>
7991 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
7992 </member>
7993 <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)">
7994 <summary>
7995 Selects a collection of elements using a JPath expression.
7996 </summary>
7997 <param name="path">
7998 A <see cref="T:System.String"/> that contains a JPath expression.
7999 </param>
8000 <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>
8001 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the selected elements.</returns>
8002 </member>
8003 <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)">
8004 <summary>
8005 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
8006 </summary>
8007 <param name="parameter">The expression tree representation of the runtime value.</param>
8008 <returns>
8009 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
8010 </returns>
8011 </member>
8012 <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
8013 <summary>
8014 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
8015 </summary>
8016 <param name="parameter">The expression tree representation of the runtime value.</param>
8017 <returns>
8018 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
8019 </returns>
8020 </member>
8021 <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
8022 <summary>
8023 Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
8024 </summary>
8025 <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
8026 </member>
8027 <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
8028 <summary>
8029 Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8030 </summary>
8031 <param name="annotation">The annotation to add.</param>
8032 </member>
8033 <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
8034 <summary>
8035 Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8036 </summary>
8037 <typeparam name="T">The type of the annotation to retrieve.</typeparam>
8038 <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
8039 </member>
8040 <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
8041 <summary>
8042 Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8043 </summary>
8044 <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotation to retrieve.</param>
8045 <returns>The first annotation object that matches the specified type, or <c>null</c> if no annotation is of the specified type.</returns>
8046 </member>
8047 <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
8048 <summary>
8049 Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8050 </summary>
8051 <typeparam name="T">The type of the annotations to retrieve.</typeparam>
8052 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the annotations for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
8053 </member>
8054 <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
8055 <summary>
8056 Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8057 </summary>
8058 <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of the annotations to retrieve.</param>
8059 <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>
8060 </member>
8061 <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations``1">
8062 <summary>
8063 Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8064 </summary>
8065 <typeparam name="T">The type of annotations to remove.</typeparam>
8066 </member>
8067 <member name="M:Newtonsoft.Json.Linq.JToken.RemoveAnnotations(System.Type)">
8068 <summary>
8069 Removes the annotations of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8070 </summary>
8071 <param name="type">The <see cref="P:Newtonsoft.Json.Linq.JToken.Type"/> of annotations to remove.</param>
8072 </member>
8073 <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
8074 <summary>
8075 Compares tokens to determine whether they are equal.
8076 </summary>
8077 </member>
8078 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
8079 <summary>
8080 Determines whether the specified objects are equal.
8081 </summary>
8082 <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
8083 <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
8084 <returns>
8085 <c>true</c> if the specified objects are equal; otherwise, <c>false</c>.
8086 </returns>
8087 </member>
8088 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
8089 <summary>
8090 Returns a hash code for the specified object.
8091 </summary>
8092 <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
8093 <returns>A hash code for the specified object.</returns>
8094 <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is <c>null</c>.</exception>
8095 </member>
8096 <member name="T:Newtonsoft.Json.Linq.JTokenReader">
8097 <summary>
8098 Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
8099 </summary>
8100 </member>
8101 <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
8102 <summary>
8103 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
8104 </summary>
8105 </member>
8106 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
8107 <summary>
8108 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
8109 </summary>
8110 <param name="token">The token to read from.</param>
8111 </member>
8112 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken,System.String)">
8113 <summary>
8114 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
8115 </summary>
8116 <param name="token">The token to read from.</param>
8117 <param name="initialPath">The initial path of the token. It is prepended to the returned <see cref="P:Newtonsoft.Json.Linq.JTokenReader.Path"/>.</param>
8118 </member>
8119 <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
8120 <summary>
8121 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8122 </summary>
8123 <returns>
8124 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
8125 </returns>
8126 </member>
8127 <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
8128 <summary>
8129 Gets the path of the current JSON token.
8130 </summary>
8131 </member>
8132 <member name="T:Newtonsoft.Json.Linq.JTokenType">
8133 <summary>
8134 Specifies the type of token.
8135 </summary>
8136 </member>
8137 <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
8138 <summary>
8139 No token type has been set.
8140 </summary>
8141 </member>
8142 <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
8143 <summary>
8144 A JSON object.
8145 </summary>
8146 </member>
8147 <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
8148 <summary>
8149 A JSON array.
8150 </summary>
8151 </member>
8152 <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
8153 <summary>
8154 A JSON constructor.
8155 </summary>
8156 </member>
8157 <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
8158 <summary>
8159 A JSON object property.
8160 </summary>
8161 </member>
8162 <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
8163 <summary>
8164 A comment.
8165 </summary>
8166 </member>
8167 <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
8168 <summary>
8169 An integer value.
8170 </summary>
8171 </member>
8172 <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
8173 <summary>
8174 A float value.
8175 </summary>
8176 </member>
8177 <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
8178 <summary>
8179 A string value.
8180 </summary>
8181 </member>
8182 <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
8183 <summary>
8184 A boolean value.
8185 </summary>
8186 </member>
8187 <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
8188 <summary>
8189 A null value.
8190 </summary>
8191 </member>
8192 <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
8193 <summary>
8194 An undefined value.
8195 </summary>
8196 </member>
8197 <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
8198 <summary>
8199 A date value.
8200 </summary>
8201 </member>
8202 <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
8203 <summary>
8204 A raw JSON value.
8205 </summary>
8206 </member>
8207 <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
8208 <summary>
8209 A collection of bytes value.
8210 </summary>
8211 </member>
8212 <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
8213 <summary>
8214 A Guid value.
8215 </summary>
8216 </member>
8217 <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
8218 <summary>
8219 A Uri value.
8220 </summary>
8221 </member>
8222 <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
8223 <summary>
8224 A TimeSpan value.
8225 </summary>
8226 </member>
8227 <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
8228 <summary>
8229 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
8230 </summary>
8231 </member>
8232 <member name="P:Newtonsoft.Json.Linq.JTokenWriter.CurrentToken">
8233 <summary>
8234 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the writer's current position.
8235 </summary>
8236 </member>
8237 <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
8238 <summary>
8239 Gets the token being written.
8240 </summary>
8241 <value>The token being written.</value>
8242 </member>
8243 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
8244 <summary>
8245 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"/>.
8246 </summary>
8247 <param name="container">The container being written to.</param>
8248 </member>
8249 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
8250 <summary>
8251 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
8252 </summary>
8253 </member>
8254 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
8255 <summary>
8256 Flushes whatever is in the buffer to the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
8257 </summary>
8258 </member>
8259 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
8260 <summary>
8261 Closes this writer.
8262 If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
8263 </summary>
8264 <remarks>
8265 Setting <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> to <c>true</c> has no additional effect, since the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/> is a type that cannot be closed.
8266 </remarks>
8267 </member>
8268 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
8269 <summary>
8270 Writes the beginning of a JSON object.
8271 </summary>
8272 </member>
8273 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
8274 <summary>
8275 Writes the beginning of a JSON array.
8276 </summary>
8277 </member>
8278 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
8279 <summary>
8280 Writes the start of a constructor with the given name.
8281 </summary>
8282 <param name="name">The name of the constructor.</param>
8283 </member>
8284 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
8285 <summary>
8286 Writes the end.
8287 </summary>
8288 <param name="token">The token.</param>
8289 </member>
8290 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
8291 <summary>
8292 Writes the property name of a name/value pair on a JSON object.
8293 </summary>
8294 <param name="name">The name of the property.</param>
8295 </member>
8296 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
8297 <summary>
8298 Writes a <see cref="T:System.Object"/> value.
8299 An error will be raised if the value cannot be written as a single JSON token.
8300 </summary>
8301 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
8302 </member>
8303 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
8304 <summary>
8305 Writes a null value.
8306 </summary>
8307 </member>
8308 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
8309 <summary>
8310 Writes an undefined value.
8311 </summary>
8312 </member>
8313 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
8314 <summary>
8315 Writes raw JSON.
8316 </summary>
8317 <param name="json">The raw JSON to write.</param>
8318 </member>
8319 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
8320 <summary>
8321 Writes a comment <c>/*...*/</c> containing the specified text.
8322 </summary>
8323 <param name="text">Text to place inside the comment.</param>
8324 </member>
8325 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
8326 <summary>
8327 Writes a <see cref="T:System.String"/> value.
8328 </summary>
8329 <param name="value">The <see cref="T:System.String"/> value to write.</param>
8330 </member>
8331 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
8332 <summary>
8333 Writes a <see cref="T:System.Int32"/> value.
8334 </summary>
8335 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
8336 </member>
8337 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
8338 <summary>
8339 Writes a <see cref="T:System.UInt32"/> value.
8340 </summary>
8341 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
8342 </member>
8343 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
8344 <summary>
8345 Writes a <see cref="T:System.Int64"/> value.
8346 </summary>
8347 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
8348 </member>
8349 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
8350 <summary>
8351 Writes a <see cref="T:System.UInt64"/> value.
8352 </summary>
8353 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
8354 </member>
8355 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
8356 <summary>
8357 Writes a <see cref="T:System.Single"/> value.
8358 </summary>
8359 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
8360 </member>
8361 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
8362 <summary>
8363 Writes a <see cref="T:System.Double"/> value.
8364 </summary>
8365 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
8366 </member>
8367 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
8368 <summary>
8369 Writes a <see cref="T:System.Boolean"/> value.
8370 </summary>
8371 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
8372 </member>
8373 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
8374 <summary>
8375 Writes a <see cref="T:System.Int16"/> value.
8376 </summary>
8377 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
8378 </member>
8379 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
8380 <summary>
8381 Writes a <see cref="T:System.UInt16"/> value.
8382 </summary>
8383 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
8384 </member>
8385 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
8386 <summary>
8387 Writes a <see cref="T:System.Char"/> value.
8388 </summary>
8389 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
8390 </member>
8391 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
8392 <summary>
8393 Writes a <see cref="T:System.Byte"/> value.
8394 </summary>
8395 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
8396 </member>
8397 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
8398 <summary>
8399 Writes a <see cref="T:System.SByte"/> value.
8400 </summary>
8401 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
8402 </member>
8403 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
8404 <summary>
8405 Writes a <see cref="T:System.Decimal"/> value.
8406 </summary>
8407 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
8408 </member>
8409 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
8410 <summary>
8411 Writes a <see cref="T:System.DateTime"/> value.
8412 </summary>
8413 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
8414 </member>
8415 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
8416 <summary>
8417 Writes a <see cref="T:System.DateTimeOffset"/> value.
8418 </summary>
8419 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
8420 </member>
8421 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
8422 <summary>
8423 Writes a <see cref="T:System.Byte"/>[] value.
8424 </summary>
8425 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
8426 </member>
8427 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
8428 <summary>
8429 Writes a <see cref="T:System.TimeSpan"/> value.
8430 </summary>
8431 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
8432 </member>
8433 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
8434 <summary>
8435 Writes a <see cref="T:System.Guid"/> value.
8436 </summary>
8437 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
8438 </member>
8439 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
8440 <summary>
8441 Writes a <see cref="T:System.Uri"/> value.
8442 </summary>
8443 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
8444 </member>
8445 <member name="T:Newtonsoft.Json.Linq.JValue">
8446 <summary>
8447 Represents a value in JSON (string, integer, date, etc).
8448 </summary>
8449 </member>
8450 <member name="M:Newtonsoft.Json.Linq.JValue.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
8451 <summary>
8452 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
8453 </summary>
8454 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8455 <param name="cancellationToken">The token to monitor for cancellation requests.</param>
8456 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
8457 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous write operation.</returns>
8458 </member>
8459 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
8460 <summary>
8461 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
8462 </summary>
8463 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
8464 </member>
8465 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
8466 <summary>
8467 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8468 </summary>
8469 <param name="value">The value.</param>
8470 </member>
8471 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
8472 <summary>
8473 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8474 </summary>
8475 <param name="value">The value.</param>
8476 </member>
8477 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
8478 <summary>
8479 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8480 </summary>
8481 <param name="value">The value.</param>
8482 </member>
8483 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
8484 <summary>
8485 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8486 </summary>
8487 <param name="value">The value.</param>
8488 </member>
8489 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
8490 <summary>
8491 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8492 </summary>
8493 <param name="value">The value.</param>
8494 </member>
8495 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
8496 <summary>
8497 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8498 </summary>
8499 <param name="value">The value.</param>
8500 </member>
8501 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
8502 <summary>
8503 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8504 </summary>
8505 <param name="value">The value.</param>
8506 </member>
8507 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)">
8508 <summary>
8509 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8510 </summary>
8511 <param name="value">The value.</param>
8512 </member>
8513 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
8514 <summary>
8515 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8516 </summary>
8517 <param name="value">The value.</param>
8518 </member>
8519 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
8520 <summary>
8521 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8522 </summary>
8523 <param name="value">The value.</param>
8524 </member>
8525 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
8526 <summary>
8527 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8528 </summary>
8529 <param name="value">The value.</param>
8530 </member>
8531 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
8532 <summary>
8533 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8534 </summary>
8535 <param name="value">The value.</param>
8536 </member>
8537 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
8538 <summary>
8539 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8540 </summary>
8541 <param name="value">The value.</param>
8542 </member>
8543 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
8544 <summary>
8545 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
8546 </summary>
8547 <param name="value">The value.</param>
8548 </member>
8549 <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
8550 <summary>
8551 Gets a value indicating whether this token has child tokens.
8552 </summary>
8553 <value>
8554 <c>true</c> if this token has child values; otherwise, <c>false</c>.
8555 </value>
8556 </member>
8557 <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
8558 <summary>
8559 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
8560 </summary>
8561 <param name="value">The value.</param>
8562 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
8563 </member>
8564 <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
8565 <summary>
8566 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
8567 </summary>
8568 <param name="value">The value.</param>
8569 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
8570 </member>
8571 <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull">
8572 <summary>
8573 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.
8574 </summary>
8575 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
8576 </member>
8577 <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined">
8578 <summary>
8579 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.
8580 </summary>
8581 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> undefined value.</returns>
8582 </member>
8583 <member name="P:Newtonsoft.Json.Linq.JValue.Type">
8584 <summary>
8585 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8586 </summary>
8587 <value>The type.</value>
8588 </member>
8589 <member name="P:Newtonsoft.Json.Linq.JValue.Value">
8590 <summary>
8591 Gets or sets the underlying token value.
8592 </summary>
8593 <value>The underlying token value.</value>
8594 </member>
8595 <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
8596 <summary>
8597 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
8598 </summary>
8599 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
8600 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
8601 </member>
8602 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
8603 <summary>
8604 Indicates whether the current object is equal to another object of the same type.
8605 </summary>
8606 <returns>
8607 <c>true</c> if the current object is equal to the <paramref name="other"/> parameter; otherwise, <c>false</c>.
8608 </returns>
8609 <param name="other">An object to compare with this object.</param>
8610 </member>
8611 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
8612 <summary>
8613 Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
8614 </summary>
8615 <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
8616 <returns>
8617 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, <c>false</c>.
8618 </returns>
8619 </member>
8620 <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
8621 <summary>
8622 Serves as a hash function for a particular type.
8623 </summary>
8624 <returns>
8625 A hash code for the current <see cref="T:System.Object"/>.
8626 </returns>
8627 </member>
8628 <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
8629 <summary>
8630 Returns a <see cref="T:System.String"/> that represents this instance.
8631 </summary>
8632 <returns>
8633 A <see cref="T:System.String"/> that represents this instance.
8634 </returns>
8635 </member>
8636 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
8637 <summary>
8638 Returns a <see cref="T:System.String"/> that represents this instance.
8639 </summary>
8640 <param name="format">The format.</param>
8641 <returns>
8642 A <see cref="T:System.String"/> that represents this instance.
8643 </returns>
8644 </member>
8645 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
8646 <summary>
8647 Returns a <see cref="T:System.String"/> that represents this instance.
8648 </summary>
8649 <param name="formatProvider">The format provider.</param>
8650 <returns>
8651 A <see cref="T:System.String"/> that represents this instance.
8652 </returns>
8653 </member>
8654 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
8655 <summary>
8656 Returns a <see cref="T:System.String"/> that represents this instance.
8657 </summary>
8658 <param name="format">The format.</param>
8659 <param name="formatProvider">The format provider.</param>
8660 <returns>
8661 A <see cref="T:System.String"/> that represents this instance.
8662 </returns>
8663 </member>
8664 <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
8665 <summary>
8666 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
8667 </summary>
8668 <param name="parameter">The expression tree representation of the runtime value.</param>
8669 <returns>
8670 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
8671 </returns>
8672 </member>
8673 <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
8674 <summary>
8675 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.
8676 </summary>
8677 <param name="obj">An object to compare with this instance.</param>
8678 <returns>
8679 A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
8680 Value
8681 Meaning
8682 Less than zero
8683 This instance is less than <paramref name="obj"/>.
8684 Zero
8685 This instance is equal to <paramref name="obj"/>.
8686 Greater than zero
8687 This instance is greater than <paramref name="obj"/>.
8688 </returns>
8689 <exception cref="T:System.ArgumentException">
8690 <paramref name="obj"/> is not of the same type as this instance.
8691 </exception>
8692 </member>
8693 <member name="T:Newtonsoft.Json.Linq.LineInfoHandling">
8694 <summary>
8695 Specifies how line information is handled when loading JSON.
8696 </summary>
8697 </member>
8698 <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Ignore">
8699 <summary>
8700 Ignore line information.
8701 </summary>
8702 </member>
8703 <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Load">
8704 <summary>
8705 Load line information.
8706 </summary>
8707 </member>
8708 <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
8709 <summary>
8710 Specifies how JSON arrays are merged together.
8711 </summary>
8712 </member>
8713 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat">
8714 <summary>Concatenate arrays.</summary>
8715 </member>
8716 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
8717 <summary>Union arrays, skipping items that already exist.</summary>
8718 </member>
8719 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
8720 <summary>Replace all array items.</summary>
8721 </member>
8722 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
8723 <summary>Merge array items together, matched by index.</summary>
8724 </member>
8725 <member name="T:Newtonsoft.Json.Linq.MergeNullValueHandling">
8726 <summary>
8727 Specifies how null value properties are merged.
8728 </summary>
8729 </member>
8730 <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Ignore">
8731 <summary>
8732 The content's null value properties will be ignored during merging.
8733 </summary>
8734 </member>
8735 <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Merge">
8736 <summary>
8737 The content's null value properties will be merged.
8738 </summary>
8739 </member>
8740 <member name="T:Newtonsoft.Json.MemberSerialization">
8741 <summary>
8742 Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8743 </summary>
8744 </member>
8745 <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
8746 <summary>
8747 All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
8748 This is the default member serialization mode.
8749 </summary>
8750 </member>
8751 <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
8752 <summary>
8753 Only members marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized.
8754 This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
8755 </summary>
8756 </member>
8757 <member name="F:Newtonsoft.Json.MemberSerialization.Fields">
8758 <summary>
8759 All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>.
8760 This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
8761 and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to <c>false</c>.
8762 </summary>
8763 </member>
8764 <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
8765 <summary>
8766 Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8767 </summary>
8768 </member>
8769 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default">
8770 <summary>
8771 Read metadata properties located at the start of a JSON object.
8772 </summary>
8773 </member>
8774 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead">
8775 <summary>
8776 Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
8777 </summary>
8778 </member>
8779 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore">
8780 <summary>
8781 Do not try to read metadata properties.
8782 </summary>
8783 </member>
8784 <member name="T:Newtonsoft.Json.MissingMemberHandling">
8785 <summary>
8786 Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8787 </summary>
8788 </member>
8789 <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
8790 <summary>
8791 Ignore a missing member and do not attempt to deserialize it.
8792 </summary>
8793 </member>
8794 <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
8795 <summary>
8796 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
8797 </summary>
8798 </member>
8799 <member name="T:Newtonsoft.Json.NullValueHandling">
8800 <summary>
8801 Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8802 </summary>
8803 <example>
8804 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class" />
8805 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example" />
8806 </example>
8807 </member>
8808 <member name="F:Newtonsoft.Json.NullValueHandling.Include">
8809 <summary>
8810 Include null values when serializing and deserializing objects.
8811 </summary>
8812 </member>
8813 <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
8814 <summary>
8815 Ignore null values when serializing and deserializing objects.
8816 </summary>
8817 </member>
8818 <member name="T:Newtonsoft.Json.ObjectCreationHandling">
8819 <summary>
8820 Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8821 </summary>
8822 </member>
8823 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
8824 <summary>
8825 Reuse existing objects, create new objects when needed.
8826 </summary>
8827 </member>
8828 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
8829 <summary>
8830 Only reuse existing objects.
8831 </summary>
8832 </member>
8833 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
8834 <summary>
8835 Always create new objects.
8836 </summary>
8837 </member>
8838 <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
8839 <summary>
8840 Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8841 Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement <see cref="T:System.Runtime.Serialization.ISerializable"/>.
8842 </summary>
8843 <example>
8844 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References" />
8845 </example>
8846 </member>
8847 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
8848 <summary>
8849 Do not preserve references when serializing types.
8850 </summary>
8851 </member>
8852 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
8853 <summary>
8854 Preserve references when serializing into a JSON object structure.
8855 </summary>
8856 </member>
8857 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
8858 <summary>
8859 Preserve references when serializing into a JSON array structure.
8860 </summary>
8861 </member>
8862 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
8863 <summary>
8864 Preserve references when serializing.
8865 </summary>
8866 </member>
8867 <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
8868 <summary>
8869 Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8870 </summary>
8871 </member>
8872 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
8873 <summary>
8874 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
8875 </summary>
8876 </member>
8877 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
8878 <summary>
8879 Ignore loop references and do not serialize.
8880 </summary>
8881 </member>
8882 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
8883 <summary>
8884 Serialize loop references.
8885 </summary>
8886 </member>
8887 <member name="T:Newtonsoft.Json.Required">
8888 <summary>
8889 Indicating whether a property is required.
8890 </summary>
8891 </member>
8892 <member name="F:Newtonsoft.Json.Required.Default">
8893 <summary>
8894 The property is not required. The default state.
8895 </summary>
8896 </member>
8897 <member name="F:Newtonsoft.Json.Required.AllowNull">
8898 <summary>
8899 The property must be defined in JSON but can be a null value.
8900 </summary>
8901 </member>
8902 <member name="F:Newtonsoft.Json.Required.Always">
8903 <summary>
8904 The property must be defined in JSON and cannot be a null value.
8905 </summary>
8906 </member>
8907 <member name="F:Newtonsoft.Json.Required.DisallowNull">
8908 <summary>
8909 The property is not required but it cannot be a null value.
8910 </summary>
8911 </member>
8912 <member name="T:Newtonsoft.Json.Schema.Extensions">
8913 <summary>
8914 <para>
8915 Contains the JSON schema extension methods.
8916 </para>
8917 <note type="caution">
8918 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8919 </note>
8920 </summary>
8921 </member>
8922 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8923 <summary>
8924 <para>
8925 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8926 </para>
8927 <note type="caution">
8928 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8929 </note>
8930 </summary>
8931 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8932 <param name="schema">The schema to test with.</param>
8933 <returns>
8934 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8935 </returns>
8936 </member>
8937 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
8938 <summary>
8939 <para>
8940 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
8941 </para>
8942 <note type="caution">
8943 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8944 </note>
8945 </summary>
8946 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8947 <param name="schema">The schema to test with.</param>
8948 <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
8949 <returns>
8950 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
8951 </returns>
8952 </member>
8953 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
8954 <summary>
8955 <para>
8956 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8957 </para>
8958 <note type="caution">
8959 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8960 </note>
8961 </summary>
8962 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8963 <param name="schema">The schema to test with.</param>
8964 </member>
8965 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
8966 <summary>
8967 <para>
8968 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
8969 </para>
8970 <note type="caution">
8971 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8972 </note>
8973 </summary>
8974 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
8975 <param name="schema">The schema to test with.</param>
8976 <param name="validationEventHandler">The validation event handler.</param>
8977 </member>
8978 <member name="T:Newtonsoft.Json.Schema.JsonSchema">
8979 <summary>
8980 <para>
8981 An in-memory representation of a JSON Schema.
8982 </para>
8983 <note type="caution">
8984 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
8985 </note>
8986 </summary>
8987 </member>
8988 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
8989 <summary>
8990 Gets or sets the id.
8991 </summary>
8992 </member>
8993 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
8994 <summary>
8995 Gets or sets the title.
8996 </summary>
8997 </member>
8998 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
8999 <summary>
9000 Gets or sets whether the object is required.
9001 </summary>
9002 </member>
9003 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
9004 <summary>
9005 Gets or sets whether the object is read-only.
9006 </summary>
9007 </member>
9008 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
9009 <summary>
9010 Gets or sets whether the object is visible to users.
9011 </summary>
9012 </member>
9013 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
9014 <summary>
9015 Gets or sets whether the object is transient.
9016 </summary>
9017 </member>
9018 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
9019 <summary>
9020 Gets or sets the description of the object.
9021 </summary>
9022 </member>
9023 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
9024 <summary>
9025 Gets or sets the types of values allowed by the object.
9026 </summary>
9027 <value>The type.</value>
9028 </member>
9029 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
9030 <summary>
9031 Gets or sets the pattern.
9032 </summary>
9033 <value>The pattern.</value>
9034 </member>
9035 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
9036 <summary>
9037 Gets or sets the minimum length.
9038 </summary>
9039 <value>The minimum length.</value>
9040 </member>
9041 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
9042 <summary>
9043 Gets or sets the maximum length.
9044 </summary>
9045 <value>The maximum length.</value>
9046 </member>
9047 <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
9048 <summary>
9049 Gets or sets a number that the value should be divisible by.
9050 </summary>
9051 <value>A number that the value should be divisible by.</value>
9052 </member>
9053 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
9054 <summary>
9055 Gets or sets the minimum.
9056 </summary>
9057 <value>The minimum.</value>
9058 </member>
9059 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
9060 <summary>
9061 Gets or sets the maximum.
9062 </summary>
9063 <value>The maximum.</value>
9064 </member>
9065 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
9066 <summary>
9067 Gets or sets a flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).
9068 </summary>
9069 <value>A flag indicating whether the value can not equal the number defined by the <c>minimum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"/>).</value>
9070 </member>
9071 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
9072 <summary>
9073 Gets or sets a flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).
9074 </summary>
9075 <value>A flag indicating whether the value can not equal the number defined by the <c>maximum</c> attribute (<see cref="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"/>).</value>
9076 </member>
9077 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
9078 <summary>
9079 Gets or sets the minimum number of items.
9080 </summary>
9081 <value>The minimum number of items.</value>
9082 </member>
9083 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
9084 <summary>
9085 Gets or sets the maximum number of items.
9086 </summary>
9087 <value>The maximum number of items.</value>
9088 </member>
9089 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
9090 <summary>
9091 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
9092 </summary>
9093 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
9094 </member>
9095 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation">
9096 <summary>
9097 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"/>.
9098 </summary>
9099 <value>
9100 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
9101 </value>
9102 </member>
9103 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems">
9104 <summary>
9105 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.
9106 </summary>
9107 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value>
9108 </member>
9109 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems">
9110 <summary>
9111 Gets or sets a value indicating whether additional items are allowed.
9112 </summary>
9113 <value>
9114 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
9115 </value>
9116 </member>
9117 <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems">
9118 <summary>
9119 Gets or sets whether the array items must be unique.
9120 </summary>
9121 </member>
9122 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
9123 <summary>
9124 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
9125 </summary>
9126 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
9127 </member>
9128 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
9129 <summary>
9130 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
9131 </summary>
9132 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
9133 </member>
9134 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
9135 <summary>
9136 Gets or sets the pattern properties.
9137 </summary>
9138 <value>The pattern properties.</value>
9139 </member>
9140 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
9141 <summary>
9142 Gets or sets a value indicating whether additional properties are allowed.
9143 </summary>
9144 <value>
9145 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
9146 </value>
9147 </member>
9148 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
9149 <summary>
9150 Gets or sets the required property if this property is present.
9151 </summary>
9152 <value>The required property if this property is present.</value>
9153 </member>
9154 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
9155 <summary>
9156 Gets or sets the a collection of valid enum values allowed.
9157 </summary>
9158 <value>A collection of valid enum values allowed.</value>
9159 </member>
9160 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
9161 <summary>
9162 Gets or sets disallowed types.
9163 </summary>
9164 <value>The disallowed types.</value>
9165 </member>
9166 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
9167 <summary>
9168 Gets or sets the default value.
9169 </summary>
9170 <value>The default value.</value>
9171 </member>
9172 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
9173 <summary>
9174 Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.
9175 </summary>
9176 <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value>
9177 </member>
9178 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
9179 <summary>
9180 Gets or sets the format.
9181 </summary>
9182 <value>The format.</value>
9183 </member>
9184 <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
9185 <summary>
9186 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
9187 </summary>
9188 </member>
9189 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
9190 <summary>
9191 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
9192 </summary>
9193 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
9194 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
9195 </member>
9196 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
9197 <summary>
9198 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
9199 </summary>
9200 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
9201 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
9202 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
9203 </member>
9204 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
9205 <summary>
9206 Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema.
9207 </summary>
9208 <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
9209 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
9210 </member>
9211 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
9212 <summary>
9213 Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains JSON Schema using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
9214 </summary>
9215 <param name="json">A <see cref="T:System.String"/> that contains JSON Schema.</param>
9216 <param name="resolver">The resolver.</param>
9217 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON Schema.</returns>
9218 </member>
9219 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
9220 <summary>
9221 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
9222 </summary>
9223 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
9224 </member>
9225 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
9226 <summary>
9227 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
9228 </summary>
9229 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
9230 <param name="resolver">The resolver used.</param>
9231 </member>
9232 <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
9233 <summary>
9234 Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
9235 </summary>
9236 <returns>
9237 A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
9238 </returns>
9239 </member>
9240 <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
9241 <summary>
9242 <para>
9243 Returns detailed information about the schema exception.
9244 </para>
9245 <note type="caution">
9246 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9247 </note>
9248 </summary>
9249 </member>
9250 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
9251 <summary>
9252 Gets the line number indicating where the error occurred.
9253 </summary>
9254 <value>The line number indicating where the error occurred.</value>
9255 </member>
9256 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
9257 <summary>
9258 Gets the line position indicating where the error occurred.
9259 </summary>
9260 <value>The line position indicating where the error occurred.</value>
9261 </member>
9262 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path">
9263 <summary>
9264 Gets the path to the JSON where the error occurred.
9265 </summary>
9266 <value>The path to the JSON where the error occurred.</value>
9267 </member>
9268 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
9269 <summary>
9270 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
9271 </summary>
9272 </member>
9273 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
9274 <summary>
9275 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
9276 with a specified error message.
9277 </summary>
9278 <param name="message">The error message that explains the reason for the exception.</param>
9279 </member>
9280 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
9281 <summary>
9282 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
9283 with a specified error message and a reference to the inner exception that is the cause of this exception.
9284 </summary>
9285 <param name="message">The error message that explains the reason for the exception.</param>
9286 <param name="innerException">The exception that is the cause of the current exception, or <c>null</c> if no inner exception is specified.</param>
9287 </member>
9288 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
9289 <summary>
9290 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
9291 </summary>
9292 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
9293 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
9294 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
9295 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <c>null</c> or <see cref="P:System.Exception.HResult"/> is zero (0).</exception>
9296 </member>
9297 <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
9298 <summary>
9299 <para>
9300 Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
9301 </para>
9302 <note type="caution">
9303 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9304 </note>
9305 </summary>
9306 </member>
9307 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
9308 <summary>
9309 Gets or sets how undefined schemas are handled by the serializer.
9310 </summary>
9311 </member>
9312 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
9313 <summary>
9314 Gets or sets the contract resolver.
9315 </summary>
9316 <value>The contract resolver.</value>
9317 </member>
9318 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
9319 <summary>
9320 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
9321 </summary>
9322 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
9323 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
9324 </member>
9325 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
9326 <summary>
9327 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
9328 </summary>
9329 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
9330 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
9331 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
9332 </member>
9333 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
9334 <summary>
9335 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
9336 </summary>
9337 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
9338 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
9339 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
9340 </member>
9341 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
9342 <summary>
9343 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
9344 </summary>
9345 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
9346 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
9347 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
9348 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
9349 </member>
9350 <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
9351 <summary>
9352 <para>
9353 Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
9354 </para>
9355 <note type="caution">
9356 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9357 </note>
9358 </summary>
9359 </member>
9360 <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
9361 <summary>
9362 Gets or sets the loaded schemas.
9363 </summary>
9364 <value>The loaded schemas.</value>
9365 </member>
9366 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
9367 <summary>
9368 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
9369 </summary>
9370 </member>
9371 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
9372 <summary>
9373 Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.
9374 </summary>
9375 <param name="reference">The id.</param>
9376 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
9377 </member>
9378 <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
9379 <summary>
9380 <para>
9381 The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
9382 </para>
9383 <note type="caution">
9384 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9385 </note>
9386 </summary>
9387 </member>
9388 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
9389 <summary>
9390 No type specified.
9391 </summary>
9392 </member>
9393 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
9394 <summary>
9395 String type.
9396 </summary>
9397 </member>
9398 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
9399 <summary>
9400 Float type.
9401 </summary>
9402 </member>
9403 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
9404 <summary>
9405 Integer type.
9406 </summary>
9407 </member>
9408 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
9409 <summary>
9410 Boolean type.
9411 </summary>
9412 </member>
9413 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
9414 <summary>
9415 Object type.
9416 </summary>
9417 </member>
9418 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
9419 <summary>
9420 Array type.
9421 </summary>
9422 </member>
9423 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
9424 <summary>
9425 Null type.
9426 </summary>
9427 </member>
9428 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
9429 <summary>
9430 Any type.
9431 </summary>
9432 </member>
9433 <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
9434 <summary>
9435 <para>
9436 Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
9437 </para>
9438 <note type="caution">
9439 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9440 </note>
9441 </summary>
9442 </member>
9443 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
9444 <summary>
9445 Do not infer a schema Id.
9446 </summary>
9447 </member>
9448 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
9449 <summary>
9450 Use the .NET type name as the schema Id.
9451 </summary>
9452 </member>
9453 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
9454 <summary>
9455 Use the assembly qualified .NET type name as the schema Id.
9456 </summary>
9457 </member>
9458 <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
9459 <summary>
9460 <para>
9461 Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
9462 </para>
9463 <note type="caution">
9464 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9465 </note>
9466 </summary>
9467 </member>
9468 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
9469 <summary>
9470 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation error.
9471 </summary>
9472 <value>The JsonSchemaException associated with the validation error.</value>
9473 </member>
9474 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Path">
9475 <summary>
9476 Gets the path of the JSON location where the validation error occurred.
9477 </summary>
9478 <value>The path of the JSON location where the validation error occurred.</value>
9479 </member>
9480 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
9481 <summary>
9482 Gets the text description corresponding to the validation error.
9483 </summary>
9484 <value>The text description.</value>
9485 </member>
9486 <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
9487 <summary>
9488 <para>
9489 Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
9490 </para>
9491 <note type="caution">
9492 JSON Schema validation has been moved to its own package. See <see href="https://www.newtonsoft.com/jsonschema">https://www.newtonsoft.com/jsonschema</see> for more details.
9493 </note>
9494 </summary>
9495 </member>
9496 <member name="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy">
9497 <summary>
9498 A camel case naming strategy.
9499 </summary>
9500 </member>
9501 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
9502 <summary>
9503 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9504 </summary>
9505 <param name="processDictionaryKeys">
9506 A flag indicating whether dictionary keys should be processed.
9507 </param>
9508 <param name="overrideSpecifiedNames">
9509 A flag indicating whether explicitly specified property names should be processed,
9510 e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9511 </param>
9512 </member>
9513 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
9514 <summary>
9515 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9516 </summary>
9517 <param name="processDictionaryKeys">
9518 A flag indicating whether dictionary keys should be processed.
9519 </param>
9520 <param name="overrideSpecifiedNames">
9521 A flag indicating whether explicitly specified property names should be processed,
9522 e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
9523 </param>
9524 <param name="processExtensionDataNames">
9525 A flag indicating whether extension data names should be processed.
9526 </param>
9527 </member>
9528 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor">
9529 <summary>
9530 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
9531 </summary>
9532 </member>
9533 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.ResolvePropertyName(System.String)">
9534 <summary>
9535 Resolves the specified property name.
9536 </summary>
9537 <param name="name">The property name to resolve.</param>
9538 <returns>The resolved property name.</returns>
9539 </member>
9540 <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
9541 <summary>
9542 Resolves member mappings for a type, camel casing property names.
9543 </summary>
9544 </member>
9545 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
9546 <summary>
9547 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
9548 </summary>
9549 </member>
9550 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolveContract(System.Type)">
9551 <summary>
9552 Resolves the contract for a given type.
9553 </summary>
9554 <param name="type">The type to resolve a contract for.</param>
9555 <returns>The contract for a given type.</returns>
9556 </member>
9557 <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
9558 <summary>
9559 Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
9560 </summary>
9561 </member>
9562 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
9563 <summary>
9564 Gets a value indicating whether members are being get and set using dynamic code generation.
9565 This value is determined by the runtime permissions available.
9566 </summary>
9567 <value>
9568 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
9569 </value>
9570 </member>
9571 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
9572 <summary>
9573 Gets or sets the default members search flags.
9574 </summary>
9575 <value>The default members search flags.</value>
9576 </member>
9577 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
9578 <summary>
9579 Gets or sets a value indicating whether compiler generated members should be serialized.
9580 </summary>
9581 <value>
9582 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
9583 </value>
9584 </member>
9585 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface">
9586 <summary>
9587 Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types.
9588 </summary>
9589 <value>
9590 <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>.
9591 </value>
9592 </member>
9593 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute">
9594 <summary>
9595 Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types.
9596 </summary>
9597 <value>
9598 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
9599 </value>
9600 </member>
9601 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreIsSpecifiedMembers">
9602 <summary>
9603 Gets or sets a value indicating whether to ignore IsSpecified members when serializing and deserializing types.
9604 </summary>
9605 <value>
9606 <c>true</c> if the IsSpecified members will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
9607 </value>
9608 </member>
9609 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreShouldSerializeMembers">
9610 <summary>
9611 Gets or sets a value indicating whether to ignore ShouldSerialize members when serializing and deserializing types.
9612 </summary>
9613 <value>
9614 <c>true</c> if the ShouldSerialize members will be ignored when serializing and deserializing types; otherwise, <c>false</c>.
9615 </value>
9616 </member>
9617 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.NamingStrategy">
9618 <summary>
9619 Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized.
9620 </summary>
9621 <value>The naming strategy used to resolve how property names and dictionary keys are serialized.</value>
9622 </member>
9623 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
9624 <summary>
9625 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
9626 </summary>
9627 </member>
9628 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
9629 <summary>
9630 Resolves the contract for a given type.
9631 </summary>
9632 <param name="type">The type to resolve a contract for.</param>
9633 <returns>The contract for a given type.</returns>
9634 </member>
9635 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
9636 <summary>
9637 Gets the serializable members for the type.
9638 </summary>
9639 <param name="objectType">The type to get serializable members for.</param>
9640 <returns>The serializable members for the type.</returns>
9641 </member>
9642 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
9643 <summary>
9644 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
9645 </summary>
9646 <param name="objectType">Type of the object.</param>
9647 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
9648 </member>
9649 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
9650 <summary>
9651 Creates the constructor parameters.
9652 </summary>
9653 <param name="constructor">The constructor to create properties for.</param>
9654 <param name="memberProperties">The type's member properties.</param>
9655 <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
9656 </member>
9657 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
9658 <summary>
9659 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
9660 </summary>
9661 <param name="matchingMemberProperty">The matching member property.</param>
9662 <param name="parameterInfo">The constructor parameter.</param>
9663 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
9664 </member>
9665 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
9666 <summary>
9667 Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
9668 </summary>
9669 <param name="objectType">Type of the object.</param>
9670 <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
9671 </member>
9672 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
9673 <summary>
9674 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
9675 </summary>
9676 <param name="objectType">Type of the object.</param>
9677 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
9678 </member>
9679 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
9680 <summary>
9681 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
9682 </summary>
9683 <param name="objectType">Type of the object.</param>
9684 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
9685 </member>
9686 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
9687 <summary>
9688 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
9689 </summary>
9690 <param name="objectType">Type of the object.</param>
9691 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
9692 </member>
9693 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
9694 <summary>
9695 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
9696 </summary>
9697 <param name="objectType">Type of the object.</param>
9698 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
9699 </member>
9700 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
9701 <summary>
9702 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
9703 </summary>
9704 <param name="objectType">Type of the object.</param>
9705 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
9706 </member>
9707 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)">
9708 <summary>
9709 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.
9710 </summary>
9711 <param name="objectType">Type of the object.</param>
9712 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns>
9713 </member>
9714 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
9715 <summary>
9716 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
9717 </summary>
9718 <param name="objectType">Type of the object.</param>
9719 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
9720 </member>
9721 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
9722 <summary>
9723 Determines which contract type is created for the given type.
9724 </summary>
9725 <param name="objectType">Type of the object.</param>
9726 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
9727 </member>
9728 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
9729 <summary>
9730 Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
9731 </summary>
9732 <param name="type">The type to create properties for.</param>
9733 /// <param name="memberSerialization">The member serialization mode for the type.</param>
9734 <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
9735 </member>
9736 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
9737 <summary>
9738 Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
9739 </summary>
9740 <param name="member">The member.</param>
9741 <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
9742 </member>
9743 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
9744 <summary>
9745 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
9746 </summary>
9747 <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
9748 <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
9749 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
9750 </member>
9751 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
9752 <summary>
9753 Resolves the name of the property.
9754 </summary>
9755 <param name="propertyName">Name of the property.</param>
9756 <returns>Resolved name of the property.</returns>
9757 </member>
9758 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveExtensionDataName(System.String)">
9759 <summary>
9760 Resolves the name of the extension data. By default no changes are made to extension data names.
9761 </summary>
9762 <param name="extensionDataName">Name of the extension data.</param>
9763 <returns>Resolved name of the extension data.</returns>
9764 </member>
9765 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveDictionaryKey(System.String)">
9766 <summary>
9767 Resolves the key of the dictionary. By default <see cref="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"/> is used to resolve dictionary keys.
9768 </summary>
9769 <param name="dictionaryKey">Key of the dictionary.</param>
9770 <returns>Resolved key of the dictionary.</returns>
9771 </member>
9772 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
9773 <summary>
9774 Gets the resolved name of the property.
9775 </summary>
9776 <param name="propertyName">Name of the property.</param>
9777 <returns>Name of the property.</returns>
9778 </member>
9779 <member name="T:Newtonsoft.Json.Serialization.DefaultNamingStrategy">
9780 <summary>
9781 The default naming strategy. Property names and dictionary keys are unchanged.
9782 </summary>
9783 </member>
9784 <member name="M:Newtonsoft.Json.Serialization.DefaultNamingStrategy.ResolvePropertyName(System.String)">
9785 <summary>
9786 Resolves the specified property name.
9787 </summary>
9788 <param name="name">The property name to resolve.</param>
9789 <returns>The resolved property name.</returns>
9790 </member>
9791 <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
9792 <summary>
9793 The default serialization binder used when resolving and loading classes from type names.
9794 </summary>
9795 </member>
9796 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.#ctor">
9797 <summary>
9798 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"/> class.
9799 </summary>
9800 </member>
9801 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
9802 <summary>
9803 When overridden in a derived class, controls the binding of a serialized object to a type.
9804 </summary>
9805 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9806 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
9807 <returns>
9808 The type of the object the formatter creates a new instance of.
9809 </returns>
9810 </member>
9811 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)">
9812 <summary>
9813 When overridden in a derived class, controls the binding of a serialized object to a type.
9814 </summary>
9815 <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
9816 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
9817 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
9818 </member>
9819 <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter">
9820 <summary>
9821 Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances.
9822 </summary>
9823 </member>
9824 <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter">
9825 <summary>
9826 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
9827 For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
9828 <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
9829 </summary>
9830 <value>
9831 The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
9832 </value>
9833 </member>
9834 <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
9835 <summary>
9836 Writes the specified trace level, message and optional exception.
9837 </summary>
9838 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
9839 <param name="message">The trace message.</param>
9840 <param name="ex">The trace exception. This parameter is optional.</param>
9841 </member>
9842 <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
9843 <summary>
9844 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
9845 </summary>
9846 </member>
9847 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
9848 <summary>
9849 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
9850 </summary>
9851 <param name="memberInfo">The member info.</param>
9852 </member>
9853 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
9854 <summary>
9855 Sets the value.
9856 </summary>
9857 <param name="target">The target to set the value on.</param>
9858 <param name="value">The value to set on the target.</param>
9859 </member>
9860 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
9861 <summary>
9862 Gets the value.
9863 </summary>
9864 <param name="target">The target to get the value from.</param>
9865 <returns>The value.</returns>
9866 </member>
9867 <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
9868 <summary>
9869 Provides information surrounding an error.
9870 </summary>
9871 </member>
9872 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
9873 <summary>
9874 Gets the error.
9875 </summary>
9876 <value>The error.</value>
9877 </member>
9878 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
9879 <summary>
9880 Gets the original object that caused the error.
9881 </summary>
9882 <value>The original object that caused the error.</value>
9883 </member>
9884 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
9885 <summary>
9886 Gets the member that caused the error.
9887 </summary>
9888 <value>The member that caused the error.</value>
9889 </member>
9890 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Path">
9891 <summary>
9892 Gets the path of the JSON location where the error occurred.
9893 </summary>
9894 <value>The path of the JSON location where the error occurred.</value>
9895 </member>
9896 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
9897 <summary>
9898 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
9899 </summary>
9900 <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
9901 </member>
9902 <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
9903 <summary>
9904 Provides data for the Error event.
9905 </summary>
9906 </member>
9907 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
9908 <summary>
9909 Gets the current object the error event is being raised against.
9910 </summary>
9911 <value>The current object the error event is being raised against.</value>
9912 </member>
9913 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
9914 <summary>
9915 Gets the error context.
9916 </summary>
9917 <value>The error context.</value>
9918 </member>
9919 <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
9920 <summary>
9921 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
9922 </summary>
9923 <param name="currentObject">The current object.</param>
9924 <param name="errorContext">The error context.</param>
9925 </member>
9926 <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
9927 <summary>
9928 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
9929 </summary>
9930 </member>
9931 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
9932 <summary>
9933 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
9934 </summary>
9935 <param name="memberInfo">The member info.</param>
9936 </member>
9937 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
9938 <summary>
9939 Sets the value.
9940 </summary>
9941 <param name="target">The target to set the value on.</param>
9942 <param name="value">The value to set on the target.</param>
9943 </member>
9944 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
9945 <summary>
9946 Gets the value.
9947 </summary>
9948 <param name="target">The target to get the value from.</param>
9949 <returns>The value.</returns>
9950 </member>
9951 <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
9952 <summary>
9953 Provides methods to get attributes.
9954 </summary>
9955 </member>
9956 <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
9957 <summary>
9958 Returns a collection of all of the attributes, or an empty collection if there are no attributes.
9959 </summary>
9960 <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
9961 <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
9962 </member>
9963 <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
9964 <summary>
9965 Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
9966 </summary>
9967 <param name="attributeType">The type of the attributes.</param>
9968 <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
9969 <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
9970 </member>
9971 <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
9972 <summary>
9973 Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolve a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>.
9974 </summary>
9975 <example>
9976 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class" />
9977 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example" />
9978 </example>
9979 </member>
9980 <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
9981 <summary>
9982 Resolves the contract for a given type.
9983 </summary>
9984 <param name="type">The type to resolve a contract for.</param>
9985 <returns>The contract for a given type.</returns>
9986 </member>
9987 <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
9988 <summary>
9989 Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
9990 </summary>
9991 </member>
9992 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
9993 <summary>
9994 Resolves a reference to its object.
9995 </summary>
9996 <param name="context">The serialization context.</param>
9997 <param name="reference">The reference to resolve.</param>
9998 <returns>The object that was resolved from the reference.</returns>
9999 </member>
10000 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
10001 <summary>
10002 Gets the reference for the specified object.
10003 </summary>
10004 <param name="context">The serialization context.</param>
10005 <param name="value">The object to get a reference for.</param>
10006 <returns>The reference to the object.</returns>
10007 </member>
10008 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
10009 <summary>
10010 Determines whether the specified object is referenced.
10011 </summary>
10012 <param name="context">The serialization context.</param>
10013 <param name="value">The object to test for a reference.</param>
10014 <returns>
10015 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
10016 </returns>
10017 </member>
10018 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
10019 <summary>
10020 Adds a reference to the specified object.
10021 </summary>
10022 <param name="context">The serialization context.</param>
10023 <param name="reference">The reference.</param>
10024 <param name="value">The object to reference.</param>
10025 </member>
10026 <member name="T:Newtonsoft.Json.Serialization.ISerializationBinder">
10027 <summary>
10028 Allows users to control class loading and mandate what class to load.
10029 </summary>
10030 </member>
10031 <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToType(System.String,System.String)">
10032 <summary>
10033 When implemented, controls the binding of a serialized object to a type.
10034 </summary>
10035 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
10036 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object</param>
10037 <returns>The type of the object the formatter creates a new instance of.</returns>
10038 </member>
10039 <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToName(System.Type,System.String@,System.String@)">
10040 <summary>
10041 When implemented, controls the binding of a serialized object to a type.
10042 </summary>
10043 <param name="serializedType">The type of the object the formatter creates a new instance of.</param>
10044 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
10045 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
10046 </member>
10047 <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
10048 <summary>
10049 Represents a trace writer.
10050 </summary>
10051 </member>
10052 <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
10053 <summary>
10054 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
10055 For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
10056 <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
10057 </summary>
10058 <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
10059 </member>
10060 <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
10061 <summary>
10062 Writes the specified trace level, message and optional exception.
10063 </summary>
10064 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
10065 <param name="message">The trace message.</param>
10066 <param name="ex">The trace exception. This parameter is optional.</param>
10067 </member>
10068 <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
10069 <summary>
10070 Provides methods to get and set values.
10071 </summary>
10072 </member>
10073 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
10074 <summary>
10075 Sets the value.
10076 </summary>
10077 <param name="target">The target to set the value on.</param>
10078 <param name="value">The value to set on the target.</param>
10079 </member>
10080 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
10081 <summary>
10082 Gets the value.
10083 </summary>
10084 <param name="target">The target to get the value from.</param>
10085 <returns>The value.</returns>
10086 </member>
10087 <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
10088 <summary>
10089 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10090 </summary>
10091 </member>
10092 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
10093 <summary>
10094 Gets the <see cref="T:System.Type"/> of the collection items.
10095 </summary>
10096 <value>The <see cref="T:System.Type"/> of the collection items.</value>
10097 </member>
10098 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
10099 <summary>
10100 Gets a value indicating whether the collection type is a multidimensional array.
10101 </summary>
10102 <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
10103 </member>
10104 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
10105 <summary>
10106 Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
10107 </summary>
10108 <value>The function used to create the object.</value>
10109 </member>
10110 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
10111 <summary>
10112 Gets a value indicating whether the creator has a parameter with the collection values.
10113 </summary>
10114 <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
10115 </member>
10116 <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
10117 <summary>
10118 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
10119 </summary>
10120 <param name="underlyingType">The underlying type for the contract.</param>
10121 </member>
10122 <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
10123 <summary>
10124 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10125 </summary>
10126 </member>
10127 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
10128 <summary>
10129 Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
10130 </summary>
10131 <value>The converter.</value>
10132 </member>
10133 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
10134 <summary>
10135 Gets or sets a value indicating whether the collection items preserve object references.
10136 </summary>
10137 <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
10138 </member>
10139 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
10140 <summary>
10141 Gets or sets the collection item reference loop handling.
10142 </summary>
10143 <value>The reference loop handling.</value>
10144 </member>
10145 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling">
10146 <summary>
10147 Gets or sets the collection item type name handling.
10148 </summary>
10149 <value>The type name handling.</value>
10150 </member>
10151 <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
10152 <summary>
10153 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
10154 </summary>
10155 <param name="underlyingType">The underlying type for the contract.</param>
10156 </member>
10157 <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
10158 <summary>
10159 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
10160 </summary>
10161 <param name="o">The object that raised the callback event.</param>
10162 <param name="context">The streaming context.</param>
10163 </member>
10164 <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
10165 <summary>
10166 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
10167 </summary>
10168 <param name="o">The object that raised the callback event.</param>
10169 <param name="context">The streaming context.</param>
10170 <param name="errorContext">The error context.</param>
10171 </member>
10172 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
10173 <summary>
10174 Sets extension data for an object during deserialization.
10175 </summary>
10176 <param name="o">The object to set extension data on.</param>
10177 <param name="key">The extension data key.</param>
10178 <param name="value">The extension data value.</param>
10179 </member>
10180 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
10181 <summary>
10182 Gets extension data for an object during serialization.
10183 </summary>
10184 <param name="o">The object to set extension data on.</param>
10185 </member>
10186 <member name="T:Newtonsoft.Json.Serialization.JsonContract">
10187 <summary>
10188 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10189 </summary>
10190 </member>
10191 <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
10192 <summary>
10193 Gets the underlying type for the contract.
10194 </summary>
10195 <value>The underlying type for the contract.</value>
10196 </member>
10197 <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
10198 <summary>
10199 Gets or sets the type created during deserialization.
10200 </summary>
10201 <value>The type created during deserialization.</value>
10202 </member>
10203 <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
10204 <summary>
10205 Gets or sets whether this type contract is serialized as a reference.
10206 </summary>
10207 <value>Whether this type contract is serialized as a reference.</value>
10208 </member>
10209 <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
10210 <summary>
10211 Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
10212 </summary>
10213 <value>The converter.</value>
10214 </member>
10215 <member name="P:Newtonsoft.Json.Serialization.JsonContract.InternalConverter">
10216 <summary>
10217 Gets the internally resolved <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract's type.
10218 This converter is used as a fallback converter when no other converter is resolved.
10219 Setting <see cref="P:Newtonsoft.Json.Serialization.JsonContract.Converter"/> will always override this converter.
10220 </summary>
10221 </member>
10222 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
10223 <summary>
10224 Gets or sets all methods called immediately after deserialization of the object.
10225 </summary>
10226 <value>The methods called immediately after deserialization of the object.</value>
10227 </member>
10228 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
10229 <summary>
10230 Gets or sets all methods called during deserialization of the object.
10231 </summary>
10232 <value>The methods called during deserialization of the object.</value>
10233 </member>
10234 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
10235 <summary>
10236 Gets or sets all methods called after serialization of the object graph.
10237 </summary>
10238 <value>The methods called after serialization of the object graph.</value>
10239 </member>
10240 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
10241 <summary>
10242 Gets or sets all methods called before serialization of the object.
10243 </summary>
10244 <value>The methods called before serialization of the object.</value>
10245 </member>
10246 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
10247 <summary>
10248 Gets or sets all method called when an error is thrown during the serialization of the object.
10249 </summary>
10250 <value>The methods called when an error is thrown during the serialization of the object.</value>
10251 </member>
10252 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
10253 <summary>
10254 Gets or sets the default creator method used to create the object.
10255 </summary>
10256 <value>The default creator method used to create the object.</value>
10257 </member>
10258 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
10259 <summary>
10260 Gets or sets a value indicating whether the default creator is non-public.
10261 </summary>
10262 <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
10263 </member>
10264 <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
10265 <summary>
10266 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10267 </summary>
10268 </member>
10269 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
10270 <summary>
10271 Gets or sets the dictionary key resolver.
10272 </summary>
10273 <value>The dictionary key resolver.</value>
10274 </member>
10275 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
10276 <summary>
10277 Gets the <see cref="T:System.Type"/> of the dictionary keys.
10278 </summary>
10279 <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
10280 </member>
10281 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
10282 <summary>
10283 Gets the <see cref="T:System.Type"/> of the dictionary values.
10284 </summary>
10285 <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
10286 </member>
10287 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
10288 <summary>
10289 Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
10290 </summary>
10291 <value>The function used to create the object.</value>
10292 </member>
10293 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
10294 <summary>
10295 Gets a value indicating whether the creator has a parameter with the dictionary values.
10296 </summary>
10297 <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
10298 </member>
10299 <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
10300 <summary>
10301 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
10302 </summary>
10303 <param name="underlyingType">The underlying type for the contract.</param>
10304 </member>
10305 <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
10306 <summary>
10307 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10308 </summary>
10309 </member>
10310 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
10311 <summary>
10312 Gets the object's properties.
10313 </summary>
10314 <value>The object's properties.</value>
10315 </member>
10316 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
10317 <summary>
10318 Gets or sets the property name resolver.
10319 </summary>
10320 <value>The property name resolver.</value>
10321 </member>
10322 <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
10323 <summary>
10324 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
10325 </summary>
10326 <param name="underlyingType">The underlying type for the contract.</param>
10327 </member>
10328 <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
10329 <summary>
10330 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10331 </summary>
10332 </member>
10333 <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
10334 <summary>
10335 Gets or sets the <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.
10336 </summary>
10337 <value>The <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.</value>
10338 </member>
10339 <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
10340 <summary>
10341 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
10342 </summary>
10343 <param name="underlyingType">The underlying type for the contract.</param>
10344 </member>
10345 <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
10346 <summary>
10347 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10348 </summary>
10349 </member>
10350 <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
10351 <summary>
10352 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
10353 </summary>
10354 <param name="underlyingType">The underlying type for the contract.</param>
10355 </member>
10356 <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
10357 <summary>
10358 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10359 </summary>
10360 </member>
10361 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
10362 <summary>
10363 Gets or sets the object member serialization.
10364 </summary>
10365 <value>The member object serialization.</value>
10366 </member>
10367 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MissingMemberHandling">
10368 <summary>
10369 Gets or sets the missing member handling used when deserializing this object.
10370 </summary>
10371 <value>The missing member handling.</value>
10372 </member>
10373 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
10374 <summary>
10375 Gets or sets a value that indicates whether the object's properties are required.
10376 </summary>
10377 <value>
10378 A value indicating whether the object's properties are required.
10379 </value>
10380 </member>
10381 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemNullValueHandling">
10382 <summary>
10383 Gets or sets how the object's properties with null values are handled during serialization and deserialization.
10384 </summary>
10385 <value>How the object's properties with null values are handled during serialization and deserialization.</value>
10386 </member>
10387 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
10388 <summary>
10389 Gets the object's properties.
10390 </summary>
10391 <value>The object's properties.</value>
10392 </member>
10393 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
10394 <summary>
10395 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"/>.
10396 </summary>
10397 </member>
10398 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
10399 <summary>
10400 Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>.
10401 This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection.
10402 </summary>
10403 <value>The function used to create the object.</value>
10404 </member>
10405 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
10406 <summary>
10407 Gets or sets the extension data setter.
10408 </summary>
10409 </member>
10410 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
10411 <summary>
10412 Gets or sets the extension data getter.
10413 </summary>
10414 </member>
10415 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataValueType">
10416 <summary>
10417 Gets or sets the extension data value type.
10418 </summary>
10419 </member>
10420 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataNameResolver">
10421 <summary>
10422 Gets or sets the extension data name resolver.
10423 </summary>
10424 <value>The extension data name resolver.</value>
10425 </member>
10426 <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
10427 <summary>
10428 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
10429 </summary>
10430 <param name="underlyingType">The underlying type for the contract.</param>
10431 </member>
10432 <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
10433 <summary>
10434 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10435 </summary>
10436 </member>
10437 <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
10438 <summary>
10439 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
10440 </summary>
10441 <param name="underlyingType">The underlying type for the contract.</param>
10442 </member>
10443 <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
10444 <summary>
10445 Maps a JSON property to a .NET member or constructor parameter.
10446 </summary>
10447 </member>
10448 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
10449 <summary>
10450 Gets or sets the name of the property.
10451 </summary>
10452 <value>The name of the property.</value>
10453 </member>
10454 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
10455 <summary>
10456 Gets or sets the type that declared this property.
10457 </summary>
10458 <value>The type that declared this property.</value>
10459 </member>
10460 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
10461 <summary>
10462 Gets or sets the order of serialization of a member.
10463 </summary>
10464 <value>The numeric order of serialization.</value>
10465 </member>
10466 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
10467 <summary>
10468 Gets or sets the name of the underlying member or parameter.
10469 </summary>
10470 <value>The name of the underlying member or parameter.</value>
10471 </member>
10472 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
10473 <summary>
10474 Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
10475 </summary>
10476 <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>
10477 </member>
10478 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
10479 <summary>
10480 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
10481 </summary>
10482 <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
10483 </member>
10484 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
10485 <summary>
10486 Gets or sets the type of the property.
10487 </summary>
10488 <value>The type of the property.</value>
10489 </member>
10490 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
10491 <summary>
10492 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter" /> for the property.
10493 If set this converter takes precedence over the contract converter for the property type.
10494 </summary>
10495 <value>The converter.</value>
10496 </member>
10497 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
10498 <summary>
10499 Gets or sets the member converter.
10500 </summary>
10501 <value>The member converter.</value>
10502 </member>
10503 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
10504 <summary>
10505 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
10506 </summary>
10507 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
10508 </member>
10509 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
10510 <summary>
10511 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
10512 </summary>
10513 <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
10514 </member>
10515 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
10516 <summary>
10517 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
10518 </summary>
10519 <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
10520 </member>
10521 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
10522 <summary>
10523 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
10524 </summary>
10525 <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
10526 </member>
10527 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
10528 <summary>
10529 Gets the default value.
10530 </summary>
10531 <value>The default value.</value>
10532 </member>
10533 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
10534 <summary>
10535 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
10536 </summary>
10537 <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
10538 </member>
10539 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsRequiredSpecified">
10540 <summary>
10541 Gets a value indicating whether <see cref="P:Newtonsoft.Json.Serialization.JsonProperty.Required"/> has a value specified.
10542 </summary>
10543 </member>
10544 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
10545 <summary>
10546 Gets or sets a value indicating whether this property preserves object references.
10547 </summary>
10548 <value>
10549 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
10550 </value>
10551 </member>
10552 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
10553 <summary>
10554 Gets or sets the property null value handling.
10555 </summary>
10556 <value>The null value handling.</value>
10557 </member>
10558 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
10559 <summary>
10560 Gets or sets the property default value handling.
10561 </summary>
10562 <value>The default value handling.</value>
10563 </member>
10564 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
10565 <summary>
10566 Gets or sets the property reference loop handling.
10567 </summary>
10568 <value>The reference loop handling.</value>
10569 </member>
10570 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
10571 <summary>
10572 Gets or sets the property object creation handling.
10573 </summary>
10574 <value>The object creation handling.</value>
10575 </member>
10576 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
10577 <summary>
10578 Gets or sets or sets the type name handling.
10579 </summary>
10580 <value>The type name handling.</value>
10581 </member>
10582 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
10583 <summary>
10584 Gets or sets a predicate used to determine whether the property should be serialized.
10585 </summary>
10586 <value>A predicate used to determine whether the property should be serialized.</value>
10587 </member>
10588 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
10589 <summary>
10590 Gets or sets a predicate used to determine whether the property should be deserialized.
10591 </summary>
10592 <value>A predicate used to determine whether the property should be deserialized.</value>
10593 </member>
10594 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
10595 <summary>
10596 Gets or sets a predicate used to determine whether the property should be serialized.
10597 </summary>
10598 <value>A predicate used to determine whether the property should be serialized.</value>
10599 </member>
10600 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
10601 <summary>
10602 Gets or sets an action used to set whether the property has been deserialized.
10603 </summary>
10604 <value>An action used to set whether the property has been deserialized.</value>
10605 </member>
10606 <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
10607 <summary>
10608 Returns a <see cref="T:System.String"/> that represents this instance.
10609 </summary>
10610 <returns>
10611 A <see cref="T:System.String"/> that represents this instance.
10612 </returns>
10613 </member>
10614 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
10615 <summary>
10616 Gets or sets the converter used when serializing the property's collection items.
10617 </summary>
10618 <value>The collection's items converter.</value>
10619 </member>
10620 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
10621 <summary>
10622 Gets or sets whether this property's collection items are serialized as a reference.
10623 </summary>
10624 <value>Whether this property's collection items are serialized as a reference.</value>
10625 </member>
10626 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
10627 <summary>
10628 Gets or sets the type name handling used when serializing the property's collection items.
10629 </summary>
10630 <value>The collection's items type name handling.</value>
10631 </member>
10632 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
10633 <summary>
10634 Gets or sets the reference loop handling used when serializing the property's collection items.
10635 </summary>
10636 <value>The collection's items reference loop handling.</value>
10637 </member>
10638 <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
10639 <summary>
10640 A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
10641 </summary>
10642 </member>
10643 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
10644 <summary>
10645 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
10646 </summary>
10647 <param name="type">The type.</param>
10648 </member>
10649 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
10650 <summary>
10651 When implemented in a derived class, extracts the key from the specified element.
10652 </summary>
10653 <param name="item">The element from which to extract the key.</param>
10654 <returns>The key for the specified element.</returns>
10655 </member>
10656 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
10657 <summary>
10658 Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
10659 </summary>
10660 <param name="property">The property to add to the collection.</param>
10661 </member>
10662 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
10663 <summary>
10664 Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
10665 First attempts to get an exact case match of <paramref name="propertyName"/> and then
10666 a case insensitive match.
10667 </summary>
10668 <param name="propertyName">Name of the property.</param>
10669 <returns>A matching property if found.</returns>
10670 </member>
10671 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
10672 <summary>
10673 Gets a property by property name.
10674 </summary>
10675 <param name="propertyName">The name of the property to get.</param>
10676 <param name="comparisonType">Type property name string comparison.</param>
10677 <returns>A matching property if found.</returns>
10678 </member>
10679 <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
10680 <summary>
10681 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10682 </summary>
10683 </member>
10684 <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
10685 <summary>
10686 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
10687 </summary>
10688 <param name="underlyingType">The underlying type for the contract.</param>
10689 </member>
10690 <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
10691 <summary>
10692 Lookup and create an instance of the <see cref="T:Newtonsoft.Json.JsonConverter"/> type described by the argument.
10693 </summary>
10694 <param name="converterType">The <see cref="T:Newtonsoft.Json.JsonConverter"/> type to create.</param>
10695 <param name="args">Optional arguments to pass to an initializing constructor of the JsonConverter.
10696 If <c>null</c>, the default constructor is used.</param>
10697 </member>
10698 <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
10699 <summary>
10700 Represents a trace writer that writes to memory. When the trace message limit is
10701 reached then old trace messages will be removed as new messages are added.
10702 </summary>
10703 </member>
10704 <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
10705 <summary>
10706 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
10707 For example a filter level of <see cref="F:System.Diagnostics.TraceLevel.Info"/> will exclude <see cref="F:System.Diagnostics.TraceLevel.Verbose"/> messages and include <see cref="F:System.Diagnostics.TraceLevel.Info"/>,
10708 <see cref="F:System.Diagnostics.TraceLevel.Warning"/> and <see cref="F:System.Diagnostics.TraceLevel.Error"/> messages.
10709 </summary>
10710 <value>
10711 The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
10712 </value>
10713 </member>
10714 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
10715 <summary>
10716 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
10717 </summary>
10718 </member>
10719 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
10720 <summary>
10721 Writes the specified trace level, message and optional exception.
10722 </summary>
10723 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
10724 <param name="message">The trace message.</param>
10725 <param name="ex">The trace exception. This parameter is optional.</param>
10726 </member>
10727 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
10728 <summary>
10729 Returns an enumeration of the most recent trace messages.
10730 </summary>
10731 <returns>An enumeration of the most recent trace messages.</returns>
10732 </member>
10733 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
10734 <summary>
10735 Returns a <see cref="T:System.String"/> of the most recent trace messages.
10736 </summary>
10737 <returns>
10738 A <see cref="T:System.String"/> of the most recent trace messages.
10739 </returns>
10740 </member>
10741 <member name="T:Newtonsoft.Json.Serialization.NamingStrategy">
10742 <summary>
10743 A base class for resolving how property names and dictionary keys are serialized.
10744 </summary>
10745 </member>
10746 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessDictionaryKeys">
10747 <summary>
10748 A flag indicating whether dictionary keys should be processed.
10749 Defaults to <c>false</c>.
10750 </summary>
10751 </member>
10752 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessExtensionDataNames">
10753 <summary>
10754 A flag indicating whether extension data names should be processed.
10755 Defaults to <c>false</c>.
10756 </summary>
10757 </member>
10758 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.OverrideSpecifiedNames">
10759 <summary>
10760 A flag indicating whether explicitly specified property names,
10761 e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>, should be processed.
10762 Defaults to <c>false</c>.
10763 </summary>
10764 </member>
10765 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetPropertyName(System.String,System.Boolean)">
10766 <summary>
10767 Gets the serialized name for a given property name.
10768 </summary>
10769 <param name="name">The initial property name.</param>
10770 <param name="hasSpecifiedName">A flag indicating whether the property has had a name explicitly specified.</param>
10771 <returns>The serialized property name.</returns>
10772 </member>
10773 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetExtensionDataName(System.String)">
10774 <summary>
10775 Gets the serialized name for a given extension data name.
10776 </summary>
10777 <param name="name">The initial extension data name.</param>
10778 <returns>The serialized extension data name.</returns>
10779 </member>
10780 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetDictionaryKey(System.String)">
10781 <summary>
10782 Gets the serialized key for a given dictionary key.
10783 </summary>
10784 <param name="key">The initial dictionary key.</param>
10785 <returns>The serialized dictionary key.</returns>
10786 </member>
10787 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.ResolvePropertyName(System.String)">
10788 <summary>
10789 Resolves the specified property name.
10790 </summary>
10791 <param name="name">The property name to resolve.</param>
10792 <returns>The resolved property name.</returns>
10793 </member>
10794 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetHashCode">
10795 <summary>
10796 Hash code calculation
10797 </summary>
10798 <returns></returns>
10799 </member>
10800 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.Equals(System.Object)">
10801 <summary>
10802 Object equality implementation
10803 </summary>
10804 <param name="obj"></param>
10805 <returns></returns>
10806 </member>
10807 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.Equals(Newtonsoft.Json.Serialization.NamingStrategy)">
10808 <summary>
10809 Compare to another NamingStrategy
10810 </summary>
10811 <param name="other"></param>
10812 <returns></returns>
10813 </member>
10814 <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
10815 <summary>
10816 Represents a method that constructs an object.
10817 </summary>
10818 <typeparam name="T">The object type to create.</typeparam>
10819 </member>
10820 <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
10821 <summary>
10822 When applied to a method, specifies that the method is called when an error occurs serializing an object.
10823 </summary>
10824 </member>
10825 <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
10826 <summary>
10827 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"/>.
10828 </summary>
10829 </member>
10830 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
10831 <summary>
10832 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
10833 </summary>
10834 <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>
10835 </member>
10836 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
10837 <summary>
10838 Returns a collection of all of the attributes, or an empty collection if there are no attributes.
10839 </summary>
10840 <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
10841 <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
10842 </member>
10843 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
10844 <summary>
10845 Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
10846 </summary>
10847 <param name="attributeType">The type of the attributes.</param>
10848 <param name="inherit">When <c>true</c>, look up the hierarchy chain for the inherited custom attribute.</param>
10849 <returns>A collection of <see cref="T:System.Attribute"/>s, or an empty collection.</returns>
10850 </member>
10851 <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
10852 <summary>
10853 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
10854 </summary>
10855 </member>
10856 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
10857 <summary>
10858 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
10859 </summary>
10860 <param name="memberInfo">The member info.</param>
10861 </member>
10862 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
10863 <summary>
10864 Sets the value.
10865 </summary>
10866 <param name="target">The target to set the value on.</param>
10867 <param name="value">The value to set on the target.</param>
10868 </member>
10869 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
10870 <summary>
10871 Gets the value.
10872 </summary>
10873 <param name="target">The target to get the value from.</param>
10874 <returns>The value.</returns>
10875 </member>
10876 <member name="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy">
10877 <summary>
10878 A snake case naming strategy.
10879 </summary>
10880 </member>
10881 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
10882 <summary>
10883 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
10884 </summary>
10885 <param name="processDictionaryKeys">
10886 A flag indicating whether dictionary keys should be processed.
10887 </param>
10888 <param name="overrideSpecifiedNames">
10889 A flag indicating whether explicitly specified property names should be processed,
10890 e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
10891 </param>
10892 </member>
10893 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
10894 <summary>
10895 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
10896 </summary>
10897 <param name="processDictionaryKeys">
10898 A flag indicating whether dictionary keys should be processed.
10899 </param>
10900 <param name="overrideSpecifiedNames">
10901 A flag indicating whether explicitly specified property names should be processed,
10902 e.g. a property name customized with a <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/>.
10903 </param>
10904 <param name="processExtensionDataNames">
10905 A flag indicating whether extension data names should be processed.
10906 </param>
10907 </member>
10908 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor">
10909 <summary>
10910 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
10911 </summary>
10912 </member>
10913 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.ResolvePropertyName(System.String)">
10914 <summary>
10915 Resolves the specified property name.
10916 </summary>
10917 <param name="name">The property name to resolve.</param>
10918 <returns>The resolved property name.</returns>
10919 </member>
10920 <member name="T:Newtonsoft.Json.StringEscapeHandling">
10921 <summary>
10922 Specifies how strings are escaped when writing JSON text.
10923 </summary>
10924 </member>
10925 <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
10926 <summary>
10927 Only control characters (e.g. newline) are escaped.
10928 </summary>
10929 </member>
10930 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
10931 <summary>
10932 All non-ASCII and control characters (e.g. newline) are escaped.
10933 </summary>
10934 </member>
10935 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
10936 <summary>
10937 HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
10938 </summary>
10939 </member>
10940 <member name="T:Newtonsoft.Json.TypeNameAssemblyFormatHandling">
10941 <summary>
10942 Indicates the method that will be used during deserialization for locating and loading assemblies.
10943 </summary>
10944 </member>
10945 <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple">
10946 <summary>
10947 In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the <c>LoadWithPartialName</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
10948 </summary>
10949 </member>
10950 <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Full">
10951 <summary>
10952 In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The <c>Load</c> method of the <see cref="T:System.Reflection.Assembly"/> class is used to load the assembly.
10953 </summary>
10954 </member>
10955 <member name="T:Newtonsoft.Json.TypeNameHandling">
10956 <summary>
10957 Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
10958 </summary>
10959 <remarks>
10960 <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
10961 Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
10962 when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
10963 </remarks>
10964 </member>
10965 <member name="F:Newtonsoft.Json.TypeNameHandling.None">
10966 <summary>
10967 Do not include the .NET type name when serializing types.
10968 </summary>
10969 </member>
10970 <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
10971 <summary>
10972 Include the .NET type name when serializing into a JSON object structure.
10973 </summary>
10974 </member>
10975 <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
10976 <summary>
10977 Include the .NET type name when serializing into a JSON array structure.
10978 </summary>
10979 </member>
10980 <member name="F:Newtonsoft.Json.TypeNameHandling.All">
10981 <summary>
10982 Always include the .NET type name when serializing.
10983 </summary>
10984 </member>
10985 <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
10986 <summary>
10987 Include the .NET type name when the type of the object being serialized is not the same as its declared type.
10988 Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON
10989 you must specify a root type object with <see cref="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"/>
10990 or <see cref="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)"/>.
10991 </summary>
10992 </member>
10993 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
10994 <summary>
10995 Determines whether the collection is <c>null</c> or empty.
10996 </summary>
10997 <param name="collection">The collection.</param>
10998 <returns>
10999 <c>true</c> if the collection is <c>null</c> or empty; otherwise, <c>false</c>.
11000 </returns>
11001 </member>
11002 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
11003 <summary>
11004 Adds the elements of the specified collection to the specified generic <see cref="T:System.Collections.Generic.IList`1"/>.
11005 </summary>
11006 <param name="initial">The list to add to.</param>
11007 <param name="collection">The collection of elements to add.</param>
11008 </member>
11009 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
11010 <summary>
11011 Converts the value to the specified type. If the value is unable to be converted, the
11012 value is checked whether it assignable to the specified type.
11013 </summary>
11014 <param name="initialValue">The value to convert.</param>
11015 <param name="culture">The culture to use when converting.</param>
11016 <param name="targetType">The type to convert or cast the value to.</param>
11017 <returns>
11018 The converted type. If conversion was unsuccessful, the initial value
11019 is returned if assignable to the target type.
11020 </returns>
11021 </member>
11022 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
11023 <summary>
11024 Helper method for generating a MetaObject which calls a
11025 specific method on Dynamic that returns a result
11026 </summary>
11027 </member>
11028 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression},Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
11029 <summary>
11030 Helper method for generating a MetaObject which calls a
11031 specific method on Dynamic, but uses one of the arguments for
11032 the result.
11033 </summary>
11034 </member>
11035 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)">
11036 <summary>
11037 Helper method for generating a MetaObject which calls a
11038 specific method on Dynamic, but uses one of the arguments for
11039 the result.
11040 </summary>
11041 </member>
11042 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions">
11043 <summary>
11044 Returns a Restrictions object which includes our current restrictions merged
11045 with a restriction limiting our type
11046 </summary>
11047 </member>
11048 <member name="T:Newtonsoft.Json.Utilities.ImmutableCollectionsUtils">
11049 <summary>
11050 Helper class for serializing immutable collections.
11051 Note that this is used by all builds, even those that don't support immutable collections, in case the DLL is GACed
11052 https://github.com/JamesNK/Newtonsoft.Json/issues/652
11053 </summary>
11054 </member>
11055 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
11056 <summary>
11057 Gets the type of the typed collection's items.
11058 </summary>
11059 <param name="type">The type.</param>
11060 <returns>The type of the typed collection's items.</returns>
11061 </member>
11062 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
11063 <summary>
11064 Gets the member's underlying type.
11065 </summary>
11066 <param name="member">The member.</param>
11067 <returns>The underlying type of the member.</returns>
11068 </member>
11069 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
11070 <summary>
11071 Determines whether the property is an indexed property.
11072 </summary>
11073 <param name="property">The property.</param>
11074 <returns>
11075 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
11076 </returns>
11077 </member>
11078 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
11079 <summary>
11080 Gets the member's value on the object.
11081 </summary>
11082 <param name="member">The member.</param>
11083 <param name="target">The target object.</param>
11084 <returns>The member's value on the object.</returns>
11085 </member>
11086 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
11087 <summary>
11088 Sets the member's value on the target object.
11089 </summary>
11090 <param name="member">The member.</param>
11091 <param name="target">The target.</param>
11092 <param name="value">The value.</param>
11093 </member>
11094 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
11095 <summary>
11096 Determines whether the specified MemberInfo can be read.
11097 </summary>
11098 <param name="member">The MemberInfo to determine whether can be read.</param>
11099 /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
11100 <returns>
11101 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
11102 </returns>
11103 </member>
11104 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
11105 <summary>
11106 Determines whether the specified MemberInfo can be set.
11107 </summary>
11108 <param name="member">The MemberInfo to determine whether can be set.</param>
11109 <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
11110 <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
11111 <returns>
11112 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
11113 </returns>
11114 </member>
11115 <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
11116 <summary>
11117 Builds a string. Unlike <see cref="T:System.Text.StringBuilder"/> this class lets you reuse its internal buffer.
11118 </summary>
11119 </member>
11120 <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
11121 <summary>
11122 Determines whether the string is all white space. Empty string will return <c>false</c>.
11123 </summary>
11124 <param name="s">The string to test whether it is all white space.</param>
11125 <returns>
11126 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
11127 </returns>
11128 </member>
11129 <member name="T:Newtonsoft.Json.WriteState">
11130 <summary>
11131 Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
11132 </summary>
11133 </member>
11134 <member name="F:Newtonsoft.Json.WriteState.Error">
11135 <summary>
11136 An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
11137 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.
11138 Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls result in an <see cref="T:System.InvalidOperationException"/> being thrown.
11139 </summary>
11140 </member>
11141 <member name="F:Newtonsoft.Json.WriteState.Closed">
11142 <summary>
11143 The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
11144 </summary>
11145 </member>
11146 <member name="F:Newtonsoft.Json.WriteState.Object">
11147 <summary>
11148 An object is being written.
11149 </summary>
11150 </member>
11151 <member name="F:Newtonsoft.Json.WriteState.Array">
11152 <summary>
11153 An array is being written.
11154 </summary>
11155 </member>
11156 <member name="F:Newtonsoft.Json.WriteState.Constructor">
11157 <summary>
11158 A constructor is being written.
11159 </summary>
11160 </member>
11161 <member name="F:Newtonsoft.Json.WriteState.Property">
11162 <summary>
11163 A property is being written.
11164 </summary>
11165 </member>
11166 <member name="F:Newtonsoft.Json.WriteState.Start">
11167 <summary>
11168 A <see cref="T:Newtonsoft.Json.JsonWriter"/> write method has not been called.
11169 </summary>
11170 </member>
11171 <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
11172 <summary>Specifies that an output will not be null even if the corresponding type allows it.</summary>
11173 </member>
11174 <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
11175 <summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.</summary>
11176 </member>
11177 <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
11178 <summary>Initializes the attribute with the specified return value condition.</summary>
11179 <param name="returnValue">
11180 The return value condition. If the method returns this value, the associated parameter will not be null.
11181 </param>
11182 </member>
11183 <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
11184 <summary>Gets the return value condition.</summary>
11185 </member>
11186 <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
11187 <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
11188 </member>
11189 <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
11190 <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
11191 </member>
11192 </members>
11193</doc>