aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Newtonsoft.Json.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/Newtonsoft.Json.xml10575
1 files changed, 6571 insertions, 4004 deletions
diff --git a/bin/Newtonsoft.Json.xml b/bin/Newtonsoft.Json.xml
index 2a75b44..6ca7190 100644
--- a/bin/Newtonsoft.Json.xml
+++ b/bin/Newtonsoft.Json.xml
@@ -4,817 +4,119 @@
4 <name>Newtonsoft.Json</name> 4 <name>Newtonsoft.Json</name>
5 </assembly> 5 </assembly>
6 <members> 6 <members>
7 <member name="T:Newtonsoft.Json.Bson.BsonReader"> 7 <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8 <summary>
9 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
10 </summary>
11 </member>
12 <member name="T:Newtonsoft.Json.JsonReader">
13 <summary>
14 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
15 </summary>
16 </member>
17 <member name="M:Newtonsoft.Json.JsonReader.#ctor">
18 <summary>
19 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
20 </summary>
21 </member>
22 <member name="M:Newtonsoft.Json.JsonReader.Read">
23 <summary>
24 Reads the next JSON token from the stream.
25 </summary>
26 <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>
27 </member>
28 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
29 <summary>
30 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
31 </summary>
32 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
33 </member>
34 <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
35 <summary>
36 Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
37 </summary>
38 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
39 </member>
40 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
41 <summary>
42 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
43 </summary>
44 <returns>A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>
45 </member>
46 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
47 <summary>
48 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
49 </summary>
50 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
51 </member>
52 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
53 <summary>
54 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
55 </summary>
56 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
57 </member>
58 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
59 <summary>
60 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
61 </summary>
62 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
63 </member>
64 <member name="M:Newtonsoft.Json.JsonReader.Skip">
65 <summary>
66 Skips the children of the current token.
67 </summary>
68 </member>
69 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
70 <summary>
71 Sets the current token.
72 </summary>
73 <param name="newToken">The new token.</param>
74 </member>
75 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
76 <summary>
77 Sets the current token and value.
78 </summary>
79 <param name="newToken">The new token.</param>
80 <param name="value">The value.</param>
81 </member>
82 <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
83 <summary>
84 Sets the state based on current token type.
85 </summary>
86 </member>
87 <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
88 <summary> 8 <summary>
89 Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. 9 Represents a BSON Oid (object id).
90 </summary> 10 </summary>
91 </member> 11 </member>
92 <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)"> 12 <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
93 <summary> 13 <summary>
94 Releases unmanaged and - optionally - managed resources 14 Gets or sets the value of the Oid.
95 </summary> 15 </summary>
96 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param> 16 <value>The value of the Oid.</value>
97 </member> 17 </member>
98 <member name="M:Newtonsoft.Json.JsonReader.Close"> 18 <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
99 <summary> 19 <summary>
100 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 20 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
101 </summary> 21 </summary>
22 <param name="value">The Oid value.</param>
102 </member> 23 </member>
103 <member name="P:Newtonsoft.Json.JsonReader.CurrentState"> 24 <member name="T:Newtonsoft.Json.Bson.BsonReader">
104 <summary> 25 <summary>
105 Gets the current reader state. 26 Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
106 </summary> 27 </summary>
107 <value>The current reader state.</value>
108 </member> 28 </member>
109 <member name="P:Newtonsoft.Json.JsonReader.CloseInput"> 29 <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
110 <summary> 30 <summary>
111 Gets or sets a value indicating whether the underlying stream or 31 Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary.
112 <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
113 </summary> 32 </summary>
114 <value> 33 <value>
115 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when 34 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
116 the reader is closed; otherwise false. The default is true.
117 </value> 35 </value>
118 </member> 36 </member>
119 <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent"> 37 <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
120 <summary> 38 <summary>
121 Gets or sets a value indicating whether multiple pieces of JSON content can 39 Gets or sets a value indicating whether the root object will be read as a JSON array.
122 be read from a continuous stream without erroring.
123 </summary> 40 </summary>
124 <value> 41 <value>
125 true to support reading multiple pieces of JSON content; otherwise false. The default is false. 42 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
126 </value> 43 </value>
127 </member> 44 </member>
128 <member name="P:Newtonsoft.Json.JsonReader.QuoteChar"> 45 <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
129 <summary>
130 Gets the quotation mark character used to enclose the value of a string.
131 </summary>
132 </member>
133 <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
134 <summary>
135 Get or set how <see cref="T:System.DateTime"/> time zones are handling when reading JSON.
136 </summary>
137 </member>
138 <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
139 <summary>
140 Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
141 </summary>
142 </member>
143 <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
144 <summary>
145 Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
146 </summary>
147 </member>
148 <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
149 <summary>
150 Get or set how custom date formatted strings are parsed when reading JSON.
151 </summary>
152 </member>
153 <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
154 <summary>
155 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
156 </summary>
157 </member>
158 <member name="P:Newtonsoft.Json.JsonReader.TokenType">
159 <summary>
160 Gets the type of the current JSON token.
161 </summary>
162 </member>
163 <member name="P:Newtonsoft.Json.JsonReader.Value">
164 <summary>
165 Gets the text value of the current JSON token.
166 </summary>
167 </member>
168 <member name="P:Newtonsoft.Json.JsonReader.ValueType">
169 <summary>
170 Gets The Common Language Runtime (CLR) type for the current JSON token.
171 </summary>
172 </member>
173 <member name="P:Newtonsoft.Json.JsonReader.Depth">
174 <summary>
175 Gets the depth of the current token in the JSON document.
176 </summary>
177 <value>The depth of the current token in the JSON document.</value>
178 </member>
179 <member name="P:Newtonsoft.Json.JsonReader.Path">
180 <summary>
181 Gets the path of the current JSON token.
182 </summary>
183 </member>
184 <member name="P:Newtonsoft.Json.JsonReader.Culture">
185 <summary>
186 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
187 </summary>
188 </member>
189 <member name="T:Newtonsoft.Json.JsonReader.State">
190 <summary>
191 Specifies the state of the reader.
192 </summary>
193 </member>
194 <member name="F:Newtonsoft.Json.JsonReader.State.Start">
195 <summary>
196 The Read method has not been called.
197 </summary>
198 </member>
199 <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
200 <summary>
201 The end of the file has been reached successfully.
202 </summary>
203 </member>
204 <member name="F:Newtonsoft.Json.JsonReader.State.Property">
205 <summary>
206 Reader is at a property.
207 </summary>
208 </member>
209 <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
210 <summary>
211 Reader is at the start of an object.
212 </summary>
213 </member>
214 <member name="F:Newtonsoft.Json.JsonReader.State.Object">
215 <summary>
216 Reader is in an object.
217 </summary>
218 </member>
219 <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
220 <summary>
221 Reader is at the start of an array.
222 </summary>
223 </member>
224 <member name="F:Newtonsoft.Json.JsonReader.State.Array">
225 <summary>
226 Reader is in an array.
227 </summary>
228 </member>
229 <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
230 <summary>
231 The Close method has been called.
232 </summary>
233 </member>
234 <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
235 <summary>
236 Reader has just read a value.
237 </summary>
238 </member>
239 <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
240 <summary>
241 Reader is at the start of a constructor.
242 </summary>
243 </member>
244 <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
245 <summary>
246 Reader in a constructor.
247 </summary>
248 </member>
249 <member name="F:Newtonsoft.Json.JsonReader.State.Error">
250 <summary>
251 An error occurred that prevents the read operation from continuing.
252 </summary>
253 </member>
254 <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
255 <summary> 46 <summary>
256 The end of the file has been reached successfully. 47 Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
257 </summary> 48 </summary>
49 <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
258 </member> 50 </member>
259 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)"> 51 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
260 <summary> 52 <summary>
261 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. 53 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
262 </summary> 54 </summary>
263 <param name="stream">The stream.</param> 55 <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
264 </member> 56 </member>
265 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)"> 57 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
266 <summary> 58 <summary>
267 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. 59 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
268 </summary> 60 </summary>
269 <param name="reader">The reader.</param> 61 <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
270 </member> 62 </member>
271 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)"> 63 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
272 <summary> 64 <summary>
273 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. 65 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
274 </summary> 66 </summary>
275 <param name="stream">The stream.</param> 67 <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
276 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> 68 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
277 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> 69 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
278 </member> 70 </member>
279 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)"> 71 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
280 <summary> 72 <summary>
281 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. 73 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
282 </summary> 74 </summary>
283 <param name="reader">The reader.</param> 75 <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
284 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> 76 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
285 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> 77 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
286 </member>
287 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
288 <summary>
289 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
290 </summary>
291 <returns>
292 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.
293 </returns>
294 </member>
295 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
296 <summary>
297 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
298 </summary>
299 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
300 </member>
301 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
302 <summary>
303 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
304 </summary>
305 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
306 </member>
307 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsString">
308 <summary>
309 Reads the next JSON token from the stream as a <see cref="T:System.String"/>.
310 </summary>
311 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
312 </member>
313 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime">
314 <summary>
315 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
316 </summary>
317 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
318 </member>
319 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
320 <summary>
321 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
322 </summary>
323 <returns>
324 A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.
325 </returns>
326 </member> 78 </member>
327 <member name="M:Newtonsoft.Json.Bson.BsonReader.Read"> 79 <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
328 <summary> 80 <summary>
329 Reads the next JSON token from the stream. 81 Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
330 </summary> 82 </summary>
331 <returns> 83 <returns>
332 true if the next token was read successfully; false if there are no more tokens to read. 84 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
333 </returns> 85 </returns>
334 </member> 86 </member>
335 <member name="M:Newtonsoft.Json.Bson.BsonReader.Close"> 87 <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
336 <summary> 88 <summary>
337 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. 89 Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
338 </summary> 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.
339 </member>
340 <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
341 <summary>
342 Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
343 </summary>
344 <value>
345 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
346 </value>
347 </member>
348 <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
349 <summary>
350 Gets or sets a value indicating whether the root object will be read as a JSON array.
351 </summary>
352 <value>
353 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
354 </value>
355 </member>
356 <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
357 <summary>
358 Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
359 </summary> 91 </summary>
360 <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
361 </member> 92 </member>
362 <member name="T:Newtonsoft.Json.Bson.BsonWriter"> 93 <member name="T:Newtonsoft.Json.Bson.BsonWriter">
363 <summary> 94 <summary>
364 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. 95 Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
365 </summary>
366 </member>
367 <member name="T:Newtonsoft.Json.JsonWriter">
368 <summary>
369 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
370 </summary>
371 </member>
372 <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
373 <summary>
374 Creates an instance of the <c>JsonWriter</c> class.
375 </summary>
376 </member>
377 <member name="M:Newtonsoft.Json.JsonWriter.Flush">
378 <summary>
379 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
380 </summary>
381 </member>
382 <member name="M:Newtonsoft.Json.JsonWriter.Close">
383 <summary>
384 Closes this stream and the underlying stream.
385 </summary>
386 </member>
387 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
388 <summary>
389 Writes the beginning of a Json object.
390 </summary>
391 </member>
392 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
393 <summary>
394 Writes the end of a Json object.
395 </summary>
396 </member>
397 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
398 <summary>
399 Writes the beginning of a Json array.
400 </summary>
401 </member>
402 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
403 <summary>
404 Writes the end of an array.
405 </summary>
406 </member>
407 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
408 <summary>
409 Writes the start of a constructor with the given name.
410 </summary>
411 <param name="name">The name of the constructor.</param>
412 </member>
413 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
414 <summary>
415 Writes the end constructor.
416 </summary>
417 </member>
418 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
419 <summary>
420 Writes the property name of a name/value pair on a JSON object.
421 </summary>
422 <param name="name">The name of the property.</param>
423 </member>
424 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String,System.Boolean)">
425 <summary>
426 Writes the property name of a name/value pair on a JSON object.
427 </summary>
428 <param name="name">The name of the property.</param>
429 <param name="escape">A flag to indicate whether the text should be escaped when it is written as a JSON property name.</param>
430 </member>
431 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
432 <summary>
433 Writes the end of the current Json object or array.
434 </summary>
435 </member>
436 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
437 <summary>
438 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token and its children.
439 </summary>
440 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
441 </member>
442 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)">
443 <summary>
444 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
445 </summary>
446 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
447 <param name="writeChildren">A flag indicating whether the current token's children should be written.</param>
448 </member>
449 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
450 <summary>
451 Writes the specified end token.
452 </summary>
453 <param name="token">The end token to write.</param>
454 </member>
455 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
456 <summary>
457 Writes indent characters.
458 </summary>
459 </member>
460 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
461 <summary>
462 Writes the JSON value delimiter.
463 </summary>
464 </member>
465 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
466 <summary>
467 Writes an indent space.
468 </summary>
469 </member>
470 <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
471 <summary>
472 Writes a null value.
473 </summary> 96 </summary>
474 </member> 97 </member>
475 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined"> 98 <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
476 <summary>
477 Writes an undefined value.
478 </summary>
479 </member>
480 <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
481 <summary>
482 Writes raw JSON without changing the writer's state.
483 </summary>
484 <param name="json">The raw JSON to write.</param>
485 </member>
486 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
487 <summary>
488 Writes raw JSON where a value is expected and updates the writer's state.
489 </summary>
490 <param name="json">The raw JSON to write.</param>
491 </member>
492 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
493 <summary>
494 Writes a <see cref="T:System.String"/> value.
495 </summary>
496 <param name="value">The <see cref="T:System.String"/> value to write.</param>
497 </member>
498 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
499 <summary>
500 Writes a <see cref="T:System.Int32"/> value.
501 </summary>
502 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
503 </member>
504 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
505 <summary>
506 Writes a <see cref="T:System.UInt32"/> value.
507 </summary>
508 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
509 </member>
510 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
511 <summary>
512 Writes a <see cref="T:System.Int64"/> value.
513 </summary>
514 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
515 </member>
516 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
517 <summary>
518 Writes a <see cref="T:System.UInt64"/> value.
519 </summary>
520 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
521 </member>
522 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
523 <summary>
524 Writes a <see cref="T:System.Single"/> value.
525 </summary>
526 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
527 </member>
528 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
529 <summary>
530 Writes a <see cref="T:System.Double"/> value.
531 </summary>
532 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
533 </member>
534 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
535 <summary>
536 Writes a <see cref="T:System.Boolean"/> value.
537 </summary>
538 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
539 </member>
540 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
541 <summary>
542 Writes a <see cref="T:System.Int16"/> value.
543 </summary>
544 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
545 </member>
546 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
547 <summary>
548 Writes a <see cref="T:System.UInt16"/> value.
549 </summary>
550 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
551 </member>
552 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
553 <summary>
554 Writes a <see cref="T:System.Char"/> value.
555 </summary>
556 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
557 </member>
558 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
559 <summary>
560 Writes a <see cref="T:System.Byte"/> value.
561 </summary>
562 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
563 </member>
564 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
565 <summary>
566 Writes a <see cref="T:System.SByte"/> value.
567 </summary>
568 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
569 </member>
570 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
571 <summary>
572 Writes a <see cref="T:System.Decimal"/> value.
573 </summary>
574 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
575 </member>
576 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
577 <summary>
578 Writes a <see cref="T:System.DateTime"/> value.
579 </summary>
580 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
581 </member>
582 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
583 <summary>
584 Writes a <see cref="T:System.DateTimeOffset"/> value.
585 </summary>
586 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
587 </member>
588 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
589 <summary>
590 Writes a <see cref="T:System.Guid"/> value.
591 </summary>
592 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
593 </member>
594 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
595 <summary>
596 Writes a <see cref="T:System.TimeSpan"/> value.
597 </summary>
598 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
599 </member>
600 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
601 <summary>
602 Writes a <see cref="T:System.Nullable`1"/> value.
603 </summary>
604 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
605 </member>
606 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
607 <summary>
608 Writes a <see cref="T:System.Nullable`1"/> value.
609 </summary>
610 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
611 </member>
612 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
613 <summary>
614 Writes a <see cref="T:System.Nullable`1"/> value.
615 </summary>
616 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
617 </member>
618 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
619 <summary>
620 Writes a <see cref="T:System.Nullable`1"/> value.
621 </summary>
622 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
623 </member>
624 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
625 <summary>
626 Writes a <see cref="T:System.Nullable`1"/> value.
627 </summary>
628 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
629 </member>
630 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
631 <summary>
632 Writes a <see cref="T:System.Nullable`1"/> value.
633 </summary>
634 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
635 </member>
636 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
637 <summary>
638 Writes a <see cref="T:System.Nullable`1"/> value.
639 </summary>
640 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
641 </member>
642 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
643 <summary>
644 Writes a <see cref="T:System.Nullable`1"/> value.
645 </summary>
646 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
647 </member>
648 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
649 <summary>
650 Writes a <see cref="T:System.Nullable`1"/> value.
651 </summary>
652 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
653 </member>
654 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
655 <summary>
656 Writes a <see cref="T:System.Nullable`1"/> value.
657 </summary>
658 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
659 </member>
660 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
661 <summary>
662 Writes a <see cref="T:System.Nullable`1"/> value.
663 </summary>
664 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
665 </member>
666 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
667 <summary>
668 Writes a <see cref="T:System.Nullable`1"/> value.
669 </summary>
670 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
671 </member>
672 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
673 <summary>
674 Writes a <see cref="T:System.Nullable`1"/> value.
675 </summary>
676 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
677 </member>
678 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
679 <summary>
680 Writes a <see cref="T:System.Nullable`1"/> value.
681 </summary>
682 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
683 </member>
684 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
685 <summary>
686 Writes a <see cref="T:System.Nullable`1"/> value.
687 </summary>
688 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
689 </member>
690 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
691 <summary>
692 Writes a <see cref="T:System.Nullable`1"/> value.
693 </summary>
694 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
695 </member>
696 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
697 <summary>
698 Writes a <see cref="T:System.Nullable`1"/> value.
699 </summary>
700 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
701 </member>
702 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
703 <summary>
704 Writes a <see cref="T:Byte[]"/> value.
705 </summary>
706 <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
707 </member>
708 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
709 <summary>
710 Writes a <see cref="T:System.Uri"/> value.
711 </summary>
712 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
713 </member>
714 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
715 <summary>
716 Writes a <see cref="T:System.Object"/> value.
717 An error will raised if the value cannot be written as a single JSON token.
718 </summary>
719 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
720 </member>
721 <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
722 <summary>
723 Writes out a comment <code>/*...*/</code> containing the specified text.
724 </summary>
725 <param name="text">Text to place inside the comment.</param>
726 </member>
727 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
728 <summary>
729 Writes out the given white space.
730 </summary>
731 <param name="ws">The string of white space characters.</param>
732 </member>
733 <member name="M:Newtonsoft.Json.JsonWriter.SetWriteState(Newtonsoft.Json.JsonToken,System.Object)">
734 <summary>
735 Sets the state of the JsonWriter,
736 </summary>
737 <param name="token">The JsonToken being written.</param>
738 <param name="value">The value being written.</param>
739 </member>
740 <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
741 <summary>
742 Gets or sets a value indicating whether the underlying stream or
743 <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
744 </summary>
745 <value>
746 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
747 the writer is closed; otherwise false. The default is true.
748 </value>
749 </member>
750 <member name="P:Newtonsoft.Json.JsonWriter.Top">
751 <summary>
752 Gets the top.
753 </summary>
754 <value>The top.</value>
755 </member>
756 <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
757 <summary>
758 Gets the state of the writer.
759 </summary>
760 </member>
761 <member name="P:Newtonsoft.Json.JsonWriter.Path">
762 <summary>
763 Gets the path of the writer.
764 </summary>
765 </member>
766 <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
767 <summary>
768 Indicates how JSON text output is formatted.
769 </summary>
770 </member>
771 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
772 <summary>
773 Get or set how dates are written to JSON text.
774 </summary>
775 </member>
776 <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
777 <summary>
778 Get or set how <see cref="T:System.DateTime"/> time zones are handling when writing JSON text.
779 </summary>
780 </member>
781 <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
782 <summary>
783 Get or set how strings are escaped when writing JSON text.
784 </summary>
785 </member>
786 <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
787 <summary>
788 Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
789 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
790 are written to JSON text.
791 </summary>
792 </member>
793 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
794 <summary>
795 Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text.
796 </summary>
797 </member>
798 <member name="P:Newtonsoft.Json.JsonWriter.Culture">
799 <summary> 99 <summary>
800 Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. 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.
801 </summary> 102 </summary>
103 <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
802 </member> 104 </member>
803 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)"> 105 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
804 <summary> 106 <summary>
805 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class. 107 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
806 </summary> 108 </summary>
807 <param name="stream">The stream.</param> 109 <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
808 </member> 110 </member>
809 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)"> 111 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
810 <summary> 112 <summary>
811 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class. 113 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
812 </summary> 114 </summary>
813 <param name="writer">The writer.</param> 115 <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
814 </member> 116 </member>
815 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush"> 117 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
816 <summary> 118 <summary>
817 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. 119 Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
818 </summary> 120 </summary>
819 </member> 121 </member>
820 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)"> 122 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
@@ -825,7 +127,7 @@
825 </member> 127 </member>
826 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)"> 128 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
827 <summary> 129 <summary>
828 Writes out a comment <code>/*...*/</code> containing the specified text. 130 Writes a comment <c>/*...*/</c> containing the specified text.
829 </summary> 131 </summary>
830 <param name="text">Text to place inside the comment.</param> 132 <param name="text">Text to place inside the comment.</param>
831 </member> 133 </member>
@@ -849,23 +151,25 @@
849 </member> 151 </member>
850 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray"> 152 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
851 <summary> 153 <summary>
852 Writes the beginning of a Json array. 154 Writes the beginning of a JSON array.
853 </summary> 155 </summary>
854 </member> 156 </member>
855 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject"> 157 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
856 <summary> 158 <summary>
857 Writes the beginning of a Json object. 159 Writes the beginning of a JSON object.
858 </summary> 160 </summary>
859 </member> 161 </member>
860 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)"> 162 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
861 <summary> 163 <summary>
862 Writes the property name of a name/value pair on a Json object. 164 Writes the property name of a name/value pair on a JSON object.
863 </summary> 165 </summary>
864 <param name="name">The name of the property.</param> 166 <param name="name">The name of the property.</param>
865 </member> 167 </member>
866 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close"> 168 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
867 <summary> 169 <summary>
868 Closes this stream and the underlying stream. 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.
869 </summary> 173 </summary>
870 </member> 174 </member>
871 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)"> 175 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
@@ -983,9 +287,9 @@
983 </member> 287 </member>
984 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])"> 288 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
985 <summary> 289 <summary>
986 Writes a <see cref="T:Byte[]"/> value. 290 Writes a <see cref="T:System.Byte"/>[] value.
987 </summary> 291 </summary>
988 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> 292 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
989 </member> 293 </member>
990 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)"> 294 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
991 <summary> 295 <summary>
@@ -1007,7 +311,7 @@
1007 </member> 311 </member>
1008 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])"> 312 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
1009 <summary> 313 <summary>
1010 Writes a <see cref="T:Byte[]"/> value that represents a BSON object id. 314 Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
1011 </summary> 315 </summary>
1012 <param name="value">The Object ID value to write.</param> 316 <param name="value">The Object ID value to write.</param>
1013 </member> 317 </member>
@@ -1018,41 +322,27 @@
1018 <param name="pattern">The regex pattern.</param> 322 <param name="pattern">The regex pattern.</param>
1019 <param name="options">The regex options.</param> 323 <param name="options">The regex options.</param>
1020 </member> 324 </member>
1021 <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling"> 325 <member name="T:Newtonsoft.Json.ConstructorHandling">
1022 <summary>
1023 Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
1024 When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
1025 </summary>
1026 <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
1027 </member>
1028 <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
1029 <summary> 326 <summary>
1030 Represents a BSON Oid (object id). 327 Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1031 </summary> 328 </summary>
1032 </member> 329 </member>
1033 <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])"> 330 <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1034 <summary> 331 <summary>
1035 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class. 332 First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
1036 </summary> 333 </summary>
1037 <param name="value">The Oid value.</param>
1038 </member> 334 </member>
1039 <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value"> 335 <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1040 <summary> 336 <summary>
1041 Gets or sets the value of the Oid. 337 Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
1042 </summary> 338 </summary>
1043 <value>The value of the Oid.</value>
1044 </member> 339 </member>
1045 <member name="T:Newtonsoft.Json.Converters.BinaryConverter"> 340 <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
1046 <summary> 341 <summary>
1047 Converts a binary value to and from a base 64 string value. 342 Converts a binary value to and from a base 64 string value.
1048 </summary> 343 </summary>
1049 </member> 344 </member>
1050 <member name="T:Newtonsoft.Json.JsonConverter"> 345 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1051 <summary>
1052 Converts an object to and from JSON.
1053 </summary>
1054 </member>
1055 <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1056 <summary> 346 <summary>
1057 Writes the JSON representation of the object. 347 Writes the JSON representation of the object.
1058 </summary> 348 </summary>
@@ -1060,7 +350,7 @@
1060 <param name="value">The value.</param> 350 <param name="value">The value.</param>
1061 <param name="serializer">The calling serializer.</param> 351 <param name="serializer">The calling serializer.</param>
1062 </member> 352 </member>
1063 <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 353 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1064 <summary> 354 <summary>
1065 Reads the JSON representation of the object. 355 Reads the JSON representation of the object.
1066 </summary> 356 </summary>
@@ -1070,7 +360,7 @@
1070 <param name="serializer">The calling serializer.</param> 360 <param name="serializer">The calling serializer.</param>
1071 <returns>The object value.</returns> 361 <returns>The object value.</returns>
1072 </member> 362 </member>
1073 <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)"> 363 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
1074 <summary> 364 <summary>
1075 Determines whether this instance can convert the specified object type. 365 Determines whether this instance can convert the specified object type.
1076 </summary> 366 </summary>
@@ -1079,25 +369,12 @@
1079 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 369 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1080 </returns> 370 </returns>
1081 </member> 371 </member>
1082 <member name="M:Newtonsoft.Json.JsonConverter.GetSchema"> 372 <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1083 <summary>
1084 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
1085 </summary>
1086 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
1087 </member>
1088 <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
1089 <summary>
1090 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
1091 </summary>
1092 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
1093 </member>
1094 <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
1095 <summary> 373 <summary>
1096 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON. 374 Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1097 </summary> 375 </summary>
1098 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
1099 </member> 376 </member>
1100 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 377 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1101 <summary> 378 <summary>
1102 Writes the JSON representation of the object. 379 Writes the JSON representation of the object.
1103 </summary> 380 </summary>
@@ -1105,7 +382,7 @@
1105 <param name="value">The value.</param> 382 <param name="value">The value.</param>
1106 <param name="serializer">The calling serializer.</param> 383 <param name="serializer">The calling serializer.</param>
1107 </member> 384 </member>
1108 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 385 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1109 <summary> 386 <summary>
1110 Reads the JSON representation of the object. 387 Reads the JSON representation of the object.
1111 </summary> 388 </summary>
@@ -1115,7 +392,7 @@
1115 <param name="serializer">The calling serializer.</param> 392 <param name="serializer">The calling serializer.</param>
1116 <returns>The object value.</returns> 393 <returns>The object value.</returns>
1117 </member> 394 </member>
1118 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)"> 395 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1119 <summary> 396 <summary>
1120 Determines whether this instance can convert the specified object type. 397 Determines whether this instance can convert the specified object type.
1121 </summary> 398 </summary>
@@ -1124,12 +401,13 @@
1124 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 401 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1125 </returns> 402 </returns>
1126 </member> 403 </member>
1127 <member name="T:Newtonsoft.Json.Converters.DataSetConverter"> 404 <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1128 <summary> 405 <summary>
1129 Converts a <see cref="T:System.Data.DataSet"/> to and from JSON. 406 Creates a custom object.
1130 </summary> 407 </summary>
408 <typeparam name="T">The object type to convert.</typeparam>
1131 </member> 409 </member>
1132 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 410 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1133 <summary> 411 <summary>
1134 Writes the JSON representation of the object. 412 Writes the JSON representation of the object.
1135 </summary> 413 </summary>
@@ -1137,7 +415,7 @@
1137 <param name="value">The value.</param> 415 <param name="value">The value.</param>
1138 <param name="serializer">The calling serializer.</param> 416 <param name="serializer">The calling serializer.</param>
1139 </member> 417 </member>
1140 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 418 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1141 <summary> 419 <summary>
1142 Reads the JSON representation of the object. 420 Reads the JSON representation of the object.
1143 </summary> 421 </summary>
@@ -1147,21 +425,36 @@
1147 <param name="serializer">The calling serializer.</param> 425 <param name="serializer">The calling serializer.</param>
1148 <returns>The object value.</returns> 426 <returns>The object value.</returns>
1149 </member> 427 </member>
1150 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)"> 428 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1151 <summary> 429 <summary>
1152 Determines whether this instance can convert the specified value type. 430 Creates an object which will then be populated by the serializer.
1153 </summary> 431 </summary>
1154 <param name="valueType">Type of the value.</param> 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>
1155 <returns> 440 <returns>
1156 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. 441 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1157 </returns> 442 </returns>
1158 </member> 443 </member>
1159 <member name="T:Newtonsoft.Json.Converters.DataTableConverter"> 444 <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1160 <summary> 445 <summary>
1161 Converts a <see cref="T:System.Data.DataTable"/> to and from JSON. 446 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1162 </summary> 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>
1163 </member> 451 </member>
1164 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 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)">
1165 <summary> 458 <summary>
1166 Writes the JSON representation of the object. 459 Writes the JSON representation of the object.
1167 </summary> 460 </summary>
@@ -1169,7 +462,7 @@
1169 <param name="value">The value.</param> 462 <param name="value">The value.</param>
1170 <param name="serializer">The calling serializer.</param> 463 <param name="serializer">The calling serializer.</param>
1171 </member> 464 </member>
1172 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 465 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1173 <summary> 466 <summary>
1174 Reads the JSON representation of the object. 467 Reads the JSON representation of the object.
1175 </summary> 468 </summary>
@@ -1179,7 +472,7 @@
1179 <param name="serializer">The calling serializer.</param> 472 <param name="serializer">The calling serializer.</param>
1180 <returns>The object value.</returns> 473 <returns>The object value.</returns>
1181 </member> 474 </member>
1182 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)"> 475 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1183 <summary> 476 <summary>
1184 Determines whether this instance can convert the specified value type. 477 Determines whether this instance can convert the specified value type.
1185 </summary> 478 </summary>
@@ -1188,13 +481,12 @@
1188 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. 481 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1189 </returns> 482 </returns>
1190 </member> 483 </member>
1191 <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1"> 484 <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1192 <summary> 485 <summary>
1193 Create a custom object 486 Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1194 </summary> 487 </summary>
1195 <typeparam name="T">The object type to convert.</typeparam>
1196 </member> 488 </member>
1197 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 489 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1198 <summary> 490 <summary>
1199 Writes the JSON representation of the object. 491 Writes the JSON representation of the object.
1200 </summary> 492 </summary>
@@ -1202,7 +494,7 @@
1202 <param name="value">The value.</param> 494 <param name="value">The value.</param>
1203 <param name="serializer">The calling serializer.</param> 495 <param name="serializer">The calling serializer.</param>
1204 </member> 496 </member>
1205 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 497 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1206 <summary> 498 <summary>
1207 Reads the JSON representation of the object. 499 Reads the JSON representation of the object.
1208 </summary> 500 </summary>
@@ -1212,30 +504,15 @@
1212 <param name="serializer">The calling serializer.</param> 504 <param name="serializer">The calling serializer.</param>
1213 <returns>The object value.</returns> 505 <returns>The object value.</returns>
1214 </member> 506 </member>
1215 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)"> 507 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1216 <summary>
1217 Creates an object which will then be populated by the serializer.
1218 </summary>
1219 <param name="objectType">Type of the object.</param>
1220 <returns>The created object.</returns>
1221 </member>
1222 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1223 <summary> 508 <summary>
1224 Determines whether this instance can convert the specified object type. 509 Determines whether this instance can convert the specified value type.
1225 </summary> 510 </summary>
1226 <param name="objectType">Type of the object.</param> 511 <param name="valueType">Type of the value.</param>
1227 <returns> 512 <returns>
1228 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 513 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1229 </returns> 514 </returns>
1230 </member> 515 </member>
1231 <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1232 <summary>
1233 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1234 </summary>
1235 <value>
1236 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1237 </value>
1238 </member>
1239 <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase"> 516 <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1240 <summary> 517 <summary>
1241 Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON. 518 Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
@@ -1284,7 +561,7 @@
1284 </member> 561 </member>
1285 <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter"> 562 <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1286 <summary> 563 <summary>
1287 Converts an Entity Framework EntityKey to and from JSON. 564 Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
1288 </summary> 565 </summary>
1289 </member> 566 </member>
1290 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 567 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
@@ -1316,7 +593,7 @@
1316 </member> 593 </member>
1317 <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter"> 594 <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
1318 <summary> 595 <summary>
1319 Converts an ExpandoObject to and from JSON. 596 Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON.
1320 </summary> 597 </summary>
1321 </member> 598 </member>
1322 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 599 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
@@ -1354,12 +631,30 @@
1354 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>. 631 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1355 </value> 632 </value>
1356 </member> 633 </member>
1357 <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter"> 634 <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
1358 <summary> 635 <summary>
1359 Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON. 636 Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
1360 </summary> 637 </summary>
1361 </member> 638 </member>
1362 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 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)">
1363 <summary> 658 <summary>
1364 Writes the JSON representation of the object. 659 Writes the JSON representation of the object.
1365 </summary> 660 </summary>
@@ -1367,7 +662,7 @@
1367 <param name="value">The value.</param> 662 <param name="value">The value.</param>
1368 <param name="serializer">The calling serializer.</param> 663 <param name="serializer">The calling serializer.</param>
1369 </member> 664 </member>
1370 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 665 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1371 <summary> 666 <summary>
1372 Reads the JSON representation of the object. 667 Reads the JSON representation of the object.
1373 </summary> 668 </summary>
@@ -1377,21 +672,35 @@
1377 <param name="serializer">The calling serializer.</param> 672 <param name="serializer">The calling serializer.</param>
1378 <returns>The object value.</returns> 673 <returns>The object value.</returns>
1379 </member> 674 </member>
1380 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)"> 675 <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
1381 <summary> 676 <summary>
1382 Determines whether this instance can convert the specified object type. 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.
1383 </summary> 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>
1384 <param name="objectType">Type of the object.</param> 693 <param name="objectType">Type of the object.</param>
1385 <returns> 694 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1386 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 695 <param name="serializer">The calling serializer.</param>
1387 </returns> 696 <returns>The object value.</returns>
1388 </member> 697 </member>
1389 <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter"> 698 <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1390 <summary> 699 <summary>
1391 Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON. 700 Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1392 </summary> 701 </summary>
1393 </member> 702 </member>
1394 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 703 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1395 <summary> 704 <summary>
1396 Writes the JSON representation of the object. 705 Writes the JSON representation of the object.
1397 </summary> 706 </summary>
@@ -1399,7 +708,7 @@
1399 <param name="value">The value.</param> 708 <param name="value">The value.</param>
1400 <param name="serializer">The calling serializer.</param> 709 <param name="serializer">The calling serializer.</param>
1401 </member> 710 </member>
1402 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 711 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1403 <summary> 712 <summary>
1404 Reads the JSON representation of the object. 713 Reads the JSON representation of the object.
1405 </summary> 714 </summary>
@@ -1409,7 +718,7 @@
1409 <param name="serializer">The calling serializer.</param> 718 <param name="serializer">The calling serializer.</param>
1410 <returns>The object value.</returns> 719 <returns>The object value.</returns>
1411 </member> 720 </member>
1412 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)"> 721 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1413 <summary> 722 <summary>
1414 Determines whether this instance can convert the specified object type. 723 Determines whether this instance can convert the specified object type.
1415 </summary> 724 </summary>
@@ -1455,11 +764,75 @@
1455 Converts an <see cref="T:System.Enum"/> to and from its name string value. 764 Converts an <see cref="T:System.Enum"/> to and from its name string value.
1456 </summary> 765 </summary>
1457 </member> 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>
1458 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor"> 787 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
1459 <summary> 788 <summary>
1460 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class. 789 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
1461 </summary> 790 </summary>
1462 </member> 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>
1463 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 836 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1464 <summary> 837 <summary>
1465 Writes the JSON representation of the object. 838 Writes the JSON representation of the object.
@@ -1487,36 +860,32 @@
1487 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 860 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1488 </returns> 861 </returns>
1489 </member> 862 </member>
1490 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText"> 863 <member name="T:Newtonsoft.Json.Converters.UnixDateTimeConverter">
1491 <summary> 864 <summary>
1492 Gets or sets a value indicating whether the written enum text should be camel case. 865 Converts a <see cref="T:System.DateTime"/> to and from Unix epoch time
1493 </summary> 866 </summary>
1494 <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1495 </member> 867 </member>
1496 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues"> 868 <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1497 <summary> 869 <summary>
1498 Gets or sets a value indicating whether integer values are allowed. 870 Writes the JSON representation of the object.
1499 </summary>
1500 <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value>
1501 </member>
1502 <member name="T:Newtonsoft.Json.ConstructorHandling">
1503 <summary>
1504 Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1505 </summary>
1506 </member>
1507 <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1508 <summary>
1509 First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
1510 </summary> 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>
1511 </member> 875 </member>
1512 <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor"> 876 <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1513 <summary> 877 <summary>
1514 Json.NET will use a non-public default constructor before falling back to a paramatized constructor. 878 Reads the JSON representation of the object.
1515 </summary> 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>
1516 </member> 885 </member>
1517 <member name="T:Newtonsoft.Json.Converters.VersionConverter"> 886 <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1518 <summary> 887 <summary>
1519 Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4"). 888 Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
1520 </summary> 889 </summary>
1521 </member> 890 </member>
1522 <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 891 <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
@@ -1546,231 +915,232 @@
1546 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. 915 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1547 </returns> 916 </returns>
1548 </member> 917 </member>
1549 <member name="T:Newtonsoft.Json.FloatFormatHandling"> 918 <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
1550 <summary>
1551 Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1552 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1553 </summary>
1554 </member>
1555 <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1556 <summary>
1557 Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
1558 </summary>
1559 </member>
1560 <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1561 <summary> 919 <summary>
1562 Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. 920 Converts XML to and from JSON.
1563 Note that this will produce non-valid JSON.
1564 </summary> 921 </summary>
1565 </member> 922 </member>
1566 <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue"> 923 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
1567 <summary> 924 <summary>
1568 Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property. 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.
1569 </summary> 926 </summary>
927 <value>The name of the deserialized root element.</value>
1570 </member> 928 </member>
1571 <member name="T:Newtonsoft.Json.FloatParseHandling"> 929 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
1572 <summary> 930 <summary>
1573 Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. 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.
1574 </summary> 933 </summary>
934 <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
1575 </member> 935 </member>
1576 <member name="F:Newtonsoft.Json.FloatParseHandling.Double"> 936 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
1577 <summary> 937 <summary>
1578 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>. 938 Gets or sets a value indicating whether to write the root JSON object.
1579 </summary> 939 </summary>
940 <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
1580 </member> 941 </member>
1581 <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal"> 942 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.EncodeSpecialCharacters">
1582 <summary> 943 <summary>
1583 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>. 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.
1584 </summary> 948 </summary>
949 <value><c>true</c> if special characters are encoded; otherwise, <c>false</c>.</value>
1585 </member> 950 </member>
1586 <member name="T:Newtonsoft.Json.JsonDictionaryAttribute"> 951 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1587 <summary> 952 <summary>
1588 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection. 953 Writes the JSON representation of the object.
1589 </summary> 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>
1590 </member> 958 </member>
1591 <member name="T:Newtonsoft.Json.JsonContainerAttribute"> 959 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1592 <summary> 960 <summary>
1593 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object. 961 Reads the JSON representation of the object.
1594 </summary> 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>
1595 </member> 968 </member>
1596 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor"> 969 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
1597 <summary> 970 <summary>
1598 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class. 971 Checks if the <paramref name="attributeName"/> is a namespace attribute.
1599 </summary> 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>
1600 </member> 976 </member>
1601 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)"> 977 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
1602 <summary> 978 <summary>
1603 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id. 979 Determines whether this instance can convert the specified value type.
1604 </summary> 980 </summary>
1605 <param name="id">The container Id.</param> 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>
1606 </member> 985 </member>
1607 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id"> 986 <member name="T:Newtonsoft.Json.DateFormatHandling">
1608 <summary> 987 <summary>
1609 Gets or sets the id. 988 Specifies how dates are formatted when writing JSON text.
1610 </summary> 989 </summary>
1611 <value>The id.</value>
1612 </member> 990 </member>
1613 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title"> 991 <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
1614 <summary> 992 <summary>
1615 Gets or sets the title. 993 Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
1616 </summary> 994 </summary>
1617 <value>The title.</value>
1618 </member> 995 </member>
1619 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description"> 996 <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
1620 <summary> 997 <summary>
1621 Gets or sets the description. 998 Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
1622 </summary> 999 </summary>
1623 <value>The description.</value>
1624 </member> 1000 </member>
1625 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"> 1001 <member name="T:Newtonsoft.Json.DateParseHandling">
1626 <summary> 1002 <summary>
1627 Gets the collection's items converter. 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.
1628 </summary> 1004 </summary>
1629 <value>The collection's items converter.</value>
1630 </member> 1005 </member>
1631 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters"> 1006 <member name="F:Newtonsoft.Json.DateParseHandling.None">
1632 <summary> 1007 <summary>
1633 The parameter list to use when constructing the JsonConverter described by ItemConverterType. 1008 Date formatted strings are not parsed to a date type and are read as strings.
1634 If null, the default constructor is used.
1635 When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
1636 order, and type of these parameters.
1637 </summary> 1009 </summary>
1638 <example>
1639 [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1640 </example>
1641 </member> 1010 </member>
1642 <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference"> 1011 <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
1643 <summary> 1012 <summary>
1644 Gets or sets a value that indicates whether to preserve object references. 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"/>.
1645 </summary> 1014 </summary>
1646 <value>
1647 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1648 </value>
1649 </member> 1015 </member>
1650 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference"> 1016 <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
1651 <summary> 1017 <summary>
1652 Gets or sets a value that indicates whether to preserve collection's items references. 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"/>.
1653 </summary> 1019 </summary>
1654 <value>
1655 <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1656 </value>
1657 </member> 1020 </member>
1658 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling"> 1021 <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
1659 <summary> 1022 <summary>
1660 Gets or sets the reference loop handling used when serializing the collection's items. 1023 Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
1661 </summary> 1024 </summary>
1662 <value>The reference loop handling.</value>
1663 </member> 1025 </member>
1664 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling"> 1026 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
1665 <summary> 1027 <summary>
1666 Gets or sets the type name handling used when serializing the collection's items. 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.
1667 </summary> 1029 </summary>
1668 <value>The type name handling.</value>
1669 </member> 1030 </member>
1670 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor"> 1031 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
1671 <summary> 1032 <summary>
1672 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class. 1033 Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
1673 </summary> 1034 </summary>
1674 </member> 1035 </member>
1675 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)"> 1036 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
1676 <summary> 1037 <summary>
1677 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id. 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.
1678 </summary> 1040 </summary>
1679 <param name="id">The container Id.</param>
1680 </member> 1041 </member>
1681 <member name="T:Newtonsoft.Json.JsonException"> 1042 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
1682 <summary> 1043 <summary>
1683 The exception thrown when an error occurs during Json serialization or deserialization. 1044 Time zone information should be preserved when converting.
1684 </summary> 1045 </summary>
1685 </member> 1046 </member>
1686 <member name="M:Newtonsoft.Json.JsonException.#ctor"> 1047 <member name="T:Newtonsoft.Json.DefaultJsonNameTable">
1687 <summary> 1048 <summary>
1688 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class. 1049 The default JSON name table implementation.
1689 </summary> 1050 </summary>
1690 </member> 1051 </member>
1691 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)"> 1052 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.#ctor">
1692 <summary> 1053 <summary>
1693 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class 1054 Initializes a new instance of the <see cref="T:Newtonsoft.Json.DefaultJsonNameTable"/> class.
1694 with a specified error message.
1695 </summary> 1055 </summary>
1696 <param name="message">The error message that explains the reason for the exception.</param>
1697 </member> 1056 </member>
1698 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)"> 1057 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.Get(System.Char[],System.Int32,System.Int32)">
1699 <summary> 1058 <summary>
1700 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class 1059 Gets a string containing the same characters as the specified range of characters in the given array.
1701 with a specified error message and a reference to the inner exception that is the cause of this exception.
1702 </summary> 1060 </summary>
1703 <param name="message">The error message that explains the reason for the exception.</param> 1061 <param name="key">The character array containing the name to find.</param>
1704 <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> 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>
1705 </member> 1065 </member>
1706 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> 1066 <member name="M:Newtonsoft.Json.DefaultJsonNameTable.Add(System.String)">
1707 <summary> 1067 <summary>
1708 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class. 1068 Adds the specified string into name table.
1709 </summary> 1069 </summary>
1710 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> 1070 <param name="key">The string to add.</param>
1711 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> 1071 <remarks>This method is not thread-safe.</remarks>
1712 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> 1072 <returns>The resolved string.</returns>
1713 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
1714 </member> 1073 </member>
1715 <member name="T:Newtonsoft.Json.DateFormatHandling"> 1074 <member name="T:Newtonsoft.Json.DefaultValueHandling">
1716 <summary> 1075 <summary>
1717 Specifies how dates are formatted when writing JSON text. 1076 Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1718 </summary> 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>
1719 </member> 1082 </member>
1720 <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat"> 1083 <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
1721 <summary> 1084 <summary>
1722 Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". 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.
1723 </summary> 1087 </summary>
1724 </member> 1088 </member>
1725 <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat"> 1089 <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
1726 <summary> 1090 <summary>
1727 Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". 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.
1728 </summary> 1096 </summary>
1729 </member> 1097 </member>
1730 <member name="T:Newtonsoft.Json.DateParseHandling"> 1098 <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
1731 <summary> 1099 <summary>
1732 Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. 1100 Members with a default value but no JSON will be set to their default value when deserializing.
1733 </summary> 1101 </summary>
1734 </member> 1102 </member>
1735 <member name="F:Newtonsoft.Json.DateParseHandling.None"> 1103 <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
1736 <summary> 1104 <summary>
1737 Date formatted strings are not parsed to a date type and are read as strings. 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.
1738 </summary> 1107 </summary>
1739 </member> 1108 </member>
1740 <member name="F:Newtonsoft.Json.DateParseHandling.DateTime"> 1109 <member name="T:Newtonsoft.Json.FloatFormatHandling">
1741 <summary> 1110 <summary>
1742 Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>. 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"/>.
1743 </summary> 1113 </summary>
1744 </member> 1114 </member>
1745 <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"> 1115 <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1746 <summary> 1116 <summary>
1747 Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>. 1117 Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
1748 </summary> 1118 </summary>
1749 </member> 1119 </member>
1750 <member name="T:Newtonsoft.Json.DateTimeZoneHandling"> 1120 <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1751 <summary> 1121 <summary>
1752 Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>. 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.
1753 </summary> 1124 </summary>
1754 </member> 1125 </member>
1755 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local"> 1126 <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1756 <summary> 1127 <summary>
1757 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. 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.
1758 </summary> 1129 </summary>
1759 </member> 1130 </member>
1760 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc"> 1131 <member name="T:Newtonsoft.Json.FloatParseHandling">
1761 <summary> 1132 <summary>
1762 Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC. 1133 Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1763 </summary> 1134 </summary>
1764 </member> 1135 </member>
1765 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified"> 1136 <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1766 <summary> 1137 <summary>
1767 Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string. 1138 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1768 If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
1769 </summary> 1139 </summary>
1770 </member> 1140 </member>
1771 <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind"> 1141 <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1772 <summary> 1142 <summary>
1773 Time zone information should be preserved when converting. 1143 Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1774 </summary> 1144 </summary>
1775 </member> 1145 </member>
1776 <member name="T:Newtonsoft.Json.Formatting"> 1146 <member name="T:Newtonsoft.Json.Formatting">
@@ -1788,1984 +1158,2107 @@
1788 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. 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.
1789 </summary> 1159 </summary>
1790 </member> 1160 </member>
1791 <member name="T:Newtonsoft.Json.JsonConstructorAttribute"> 1161 <member name="T:Newtonsoft.Json.IArrayPool`1">
1792 <summary> 1162 <summary>
1793 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object. 1163 Provides an interface for using pooled arrays.
1794 </summary> 1164 </summary>
1165 <typeparam name="T">The array type content.</typeparam>
1795 </member> 1166 </member>
1796 <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute"> 1167 <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
1797 <summary>
1798 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to deserialize properties with no matching class member into the specified collection
1799 and write values during serialization.
1800 </summary>
1801 </member>
1802 <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
1803 <summary> 1168 <summary>
1804 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class. 1169 Rent an array from the pool. This array must be returned when it is no longer needed.
1805 </summary> 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>
1806 </member> 1173 </member>
1807 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData"> 1174 <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
1808 <summary> 1175 <summary>
1809 Gets or sets a value that indicates whether to write extension data when serializing the object. 1176 Return an array to the pool.
1810 </summary> 1177 </summary>
1811 <value> 1178 <param name="array">The array that is being returned.</param>
1812 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1813 </value>
1814 </member> 1179 </member>
1815 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData"> 1180 <member name="T:Newtonsoft.Json.IJsonLineInfo">
1816 <summary>
1817 Gets or sets a value that indicates whether to read extension data when deserializing the object.
1818 </summary>
1819 <value>
1820 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
1821 </value>
1822 </member>
1823 <member name="T:Newtonsoft.Json.Linq.JsonMergeSettings">
1824 <summary>
1825 Specifies the settings used when merging JSON.
1826 </summary>
1827 </member>
1828 <member name="P:Newtonsoft.Json.Linq.JsonMergeSettings.MergeArrayHandling">
1829 <summary>
1830 Gets or sets the method used when merging JSON arrays.
1831 </summary>
1832 <value>The method used when merging JSON arrays.</value>
1833 </member>
1834 <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
1835 <summary> 1181 <summary>
1836 Specifies how JSON arrays are merged together. 1182 Provides an interface to enable a class to return line and position information.
1837 </summary> 1183 </summary>
1838 </member> 1184 </member>
1839 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Concat"> 1185 <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1840 <summary>Concatenate arrays.</summary>
1841 </member>
1842 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Union">
1843 <summary>Union arrays, skipping items that already exist.</summary>
1844 </member>
1845 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Replace">
1846 <summary>Replace all array items.</summary>
1847 </member>
1848 <member name="F:Newtonsoft.Json.Linq.MergeArrayHandling.Merge">
1849 <summary>Merge array items together, matched by index.</summary>
1850 </member>
1851 <member name="T:Newtonsoft.Json.MetadataPropertyHandling">
1852 <summary> 1186 <summary>
1853 Specifies metadata property handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 1187 Gets a value indicating whether the class can return line information.
1854 </summary> 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>
1855 </member> 1192 </member>
1856 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Default"> 1193 <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1857 <summary> 1194 <summary>
1858 Read metadata properties located at the start of a JSON object. 1195 Gets the current line number.
1859 </summary> 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>
1860 </member> 1198 </member>
1861 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.ReadAhead"> 1199 <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1862 <summary> 1200 <summary>
1863 Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. 1201 Gets the current line position.
1864 </summary> 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>
1865 </member> 1204 </member>
1866 <member name="F:Newtonsoft.Json.MetadataPropertyHandling.Ignore"> 1205 <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1867 <summary> 1206 <summary>
1868 Do not try to read metadata properties. 1207 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1869 </summary> 1208 </summary>
1870 </member> 1209 </member>
1871 <member name="T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter"> 1210 <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1872 <summary> 1211 <summary>
1873 Represents a trace writer that writes to the application's <see cref="T:System.Diagnostics.TraceListener"/> instances. 1212 Gets or sets a value indicating whether null items are allowed in the collection.
1874 </summary> 1213 </summary>
1214 <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1875 </member> 1215 </member>
1876 <member name="T:Newtonsoft.Json.Serialization.ITraceWriter"> 1216 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1877 <summary> 1217 <summary>
1878 Represents a trace writer. 1218 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1879 </summary> 1219 </summary>
1880 </member> 1220 </member>
1881 <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)"> 1221 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1882 <summary> 1222 <summary>
1883 Writes the specified trace level, message and optional exception. 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.
1884 </summary> 1224 </summary>
1885 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param> 1225 <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1886 <param name="message">The trace message.</param>
1887 <param name="ex">The trace exception. This parameter is optional.</param>
1888 </member> 1226 </member>
1889 <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter"> 1227 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1890 <summary> 1228 <summary>
1891 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer. 1229 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1892 For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1893 <code>Warning</code> and <code>Error</code> messages.
1894 </summary> 1230 </summary>
1895 <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value> 1231 <param name="id">The container Id.</param>
1896 </member> 1232 </member>
1897 <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)"> 1233 <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1898 <summary> 1234 <summary>
1899 Writes the specified trace level, message and optional exception. 1235 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1900 </summary> 1236 </summary>
1901 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param>
1902 <param name="message">The trace message.</param>
1903 <param name="ex">The trace exception. This parameter is optional.</param>
1904 </member> 1237 </member>
1905 <member name="P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter"> 1238 <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1906 <summary> 1239 <summary>
1907 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer. 1240 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1908 For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
1909 <code>Warning</code> and <code>Error</code> messages.
1910 </summary> 1241 </summary>
1911 <value>
1912 The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
1913 </value>
1914 </member> 1242 </member>
1915 <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"> 1243 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1916 <summary> 1244 <summary>
1917 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods. 1245 Gets or sets the id.
1918 </summary> 1246 </summary>
1247 <value>The id.</value>
1919 </member> 1248 </member>
1920 <member name="T:Newtonsoft.Json.Serialization.IValueProvider"> 1249 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1921 <summary> 1250 <summary>
1922 Provides methods to get and set values. 1251 Gets or sets the title.
1923 </summary> 1252 </summary>
1253 <value>The title.</value>
1924 </member> 1254 </member>
1925 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)"> 1255 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1926 <summary> 1256 <summary>
1927 Sets the value. 1257 Gets or sets the description.
1928 </summary> 1258 </summary>
1929 <param name="target">The target to set the value on.</param> 1259 <value>The description.</value>
1930 <param name="value">The value to set on the target.</param>
1931 </member> 1260 </member>
1932 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)"> 1261 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1933 <summary> 1262 <summary>
1934 Gets the value. 1263 Gets or sets the collection's items converter.
1935 </summary> 1264 </summary>
1936 <param name="target">The target to get the value from.</param> 1265 <value>The collection's items converter.</value>
1937 <returns>The value.</returns>
1938 </member> 1266 </member>
1939 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)"> 1267 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1940 <summary> 1268 <summary>
1941 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class. 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.
1942 </summary> 1273 </summary>
1943 <param name="memberInfo">The member info.</param> 1274 <example>
1275 <code>
1276 [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1277 </code>
1278 </example>
1944 </member> 1279 </member>
1945 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)"> 1280 <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
1946 <summary> 1281 <summary>
1947 Sets the value. 1282 Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1948 </summary> 1283 </summary>
1949 <param name="target">The target to set the value on.</param> 1284 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1950 <param name="value">The value to set on the target.</param>
1951 </member> 1285 </member>
1952 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)"> 1286 <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
1953 <summary> 1287 <summary>
1954 Gets the value. 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.
1955 </summary> 1292 </summary>
1956 <param name="target">The target to get the value from.</param> 1293 <example>
1957 <returns>The value.</returns> 1294 <code>
1295 [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1296 </code>
1297 </example>
1958 </member> 1298 </member>
1959 <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract"> 1299 <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1960 <summary> 1300 <summary>
1961 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 1301 Gets or sets a value that indicates whether to preserve object references.
1962 </summary> 1302 </summary>
1303 <value>
1304 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1305 </value>
1963 </member> 1306 </member>
1964 <member name="T:Newtonsoft.Json.Serialization.JsonContract"> 1307 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1965 <summary> 1308 <summary>
1966 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 1309 Gets or sets a value that indicates whether to preserve collection's items references.
1967 </summary> 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>
1968 </member> 1314 </member>
1969 <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType"> 1315 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1970 <summary> 1316 <summary>
1971 Gets the underlying type for the contract. 1317 Gets or sets the reference loop handling used when serializing the collection's items.
1972 </summary> 1318 </summary>
1973 <value>The underlying type for the contract.</value> 1319 <value>The reference loop handling.</value>
1974 </member> 1320 </member>
1975 <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType"> 1321 <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1976 <summary> 1322 <summary>
1977 Gets or sets the type created during deserialization. 1323 Gets or sets the type name handling used when serializing the collection's items.
1978 </summary> 1324 </summary>
1979 <value>The type created during deserialization.</value> 1325 <value>The type name handling.</value>
1980 </member> 1326 </member>
1981 <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference"> 1327 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1982 <summary> 1328 <summary>
1983 Gets or sets whether this type contract is serialized as a reference. 1329 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1984 </summary> 1330 </summary>
1985 <value>Whether this type contract is serialized as a reference.</value>
1986 </member> 1331 </member>
1987 <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter"> 1332 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1988 <summary> 1333 <summary>
1989 Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract. 1334 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1990 </summary> 1335 </summary>
1991 <value>The converter.</value> 1336 <param name="id">The container Id.</param>
1992 </member> 1337 </member>
1993 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks"> 1338 <member name="T:Newtonsoft.Json.JsonConvert">
1994 <summary> 1339 <summary>
1995 Gets or sets all methods called immediately after deserialization of the object. 1340 Provides methods for converting between .NET types and JSON types.
1996 </summary> 1341 </summary>
1997 <value>The methods called immediately after deserialization of the object.</value> 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>
1998 </member> 1345 </member>
1999 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks"> 1346 <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
2000 <summary> 1347 <summary>
2001 Gets or sets all methods called during deserialization of the object. 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"/>.
2002 </summary> 1353 </summary>
2003 <value>The methods called during deserialization of the object.</value>
2004 </member> 1354 </member>
2005 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks"> 1355 <member name="F:Newtonsoft.Json.JsonConvert.True">
2006 <summary> 1356 <summary>
2007 Gets or sets all methods called after serialization of the object graph. 1357 Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
2008 </summary> 1358 </summary>
2009 <value>The methods called after serialization of the object graph.</value>
2010 </member> 1359 </member>
2011 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks"> 1360 <member name="F:Newtonsoft.Json.JsonConvert.False">
2012 <summary> 1361 <summary>
2013 Gets or sets all methods called before serialization of the object. 1362 Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
2014 </summary> 1363 </summary>
2015 <value>The methods called before serialization of the object.</value>
2016 </member> 1364 </member>
2017 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks"> 1365 <member name="F:Newtonsoft.Json.JsonConvert.Null">
2018 <summary> 1366 <summary>
2019 Gets or sets all method called when an error is thrown during the serialization of the object. 1367 Represents JavaScript's <c>null</c> as a string. This field is read-only.
2020 </summary> 1368 </summary>
2021 <value>The methods called when an error is thrown during the serialization of the object.</value>
2022 </member> 1369 </member>
2023 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized"> 1370 <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
2024 <summary> 1371 <summary>
2025 Gets or sets the method called immediately after deserialization of the object. 1372 Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
2026 </summary> 1373 </summary>
2027 <value>The method called immediately after deserialization of the object.</value>
2028 </member> 1374 </member>
2029 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing"> 1375 <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
2030 <summary> 1376 <summary>
2031 Gets or sets the method called during deserialization of the object. 1377 Represents JavaScript's positive infinity as a string. This field is read-only.
2032 </summary> 1378 </summary>
2033 <value>The method called during deserialization of the object.</value>
2034 </member> 1379 </member>
2035 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized"> 1380 <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
2036 <summary> 1381 <summary>
2037 Gets or sets the method called after serialization of the object graph. 1382 Represents JavaScript's negative infinity as a string. This field is read-only.
2038 </summary> 1383 </summary>
2039 <value>The method called after serialization of the object graph.</value>
2040 </member> 1384 </member>
2041 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing"> 1385 <member name="F:Newtonsoft.Json.JsonConvert.NaN">
2042 <summary> 1386 <summary>
2043 Gets or sets the method called before serialization of the object. 1387 Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
2044 </summary> 1388 </summary>
2045 <value>The method called before serialization of the object.</value>
2046 </member> 1389 </member>
2047 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError"> 1390 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
2048 <summary> 1391 <summary>
2049 Gets or sets the method called when an error is thrown during the serialization of the object. 1392 Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
2050 </summary> 1393 </summary>
2051 <value>The method called when an error is thrown during the serialization of the object.</value> 1394 <param name="value">The value to convert.</param>
1395 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
2052 </member> 1396 </member>
2053 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"> 1397 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
2054 <summary> 1398 <summary>
2055 Gets or sets the default creator method used to create the object. 1399 Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
2056 </summary> 1400 </summary>
2057 <value>The default creator method used to create the object.</value> 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>
2058 </member> 1405 </member>
2059 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic"> 1406 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
2060 <summary> 1407 <summary>
2061 Gets or sets a value indicating whether the default creator is non public. 1408 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
2062 </summary> 1409 </summary>
2063 <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value> 1410 <param name="value">The value to convert.</param>
1411 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
2064 </member> 1412 </member>
2065 <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)"> 1413 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
2066 <summary> 1414 <summary>
2067 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class. 1415 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
2068 </summary> 1416 </summary>
2069 <param name="underlyingType">The underlying type for the contract.</param> 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>
2070 </member> 1420 </member>
2071 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter"> 1421 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
2072 <summary> 1422 <summary>
2073 Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter"/>. 1423 Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
2074 </summary> 1424 </summary>
2075 <value>The converter.</value> 1425 <param name="value">The value to convert.</param>
1426 <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
2076 </member> 1427 </member>
2077 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference"> 1428 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
2078 <summary> 1429 <summary>
2079 Gets or sets a value indicating whether the collection items preserve object references. 1430 Converts the <see cref="T:System.Char"/> to its JSON string representation.
2080 </summary> 1431 </summary>
2081 <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value> 1432 <param name="value">The value to convert.</param>
1433 <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
2082 </member> 1434 </member>
2083 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling"> 1435 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
2084 <summary> 1436 <summary>
2085 Gets or sets the collection item reference loop handling. 1437 Converts the <see cref="T:System.Enum"/> to its JSON string representation.
2086 </summary> 1438 </summary>
2087 <value>The reference loop handling.</value> 1439 <param name="value">The value to convert.</param>
1440 <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
2088 </member> 1441 </member>
2089 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling"> 1442 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
2090 <summary> 1443 <summary>
2091 Gets or sets the collection item type name handling. 1444 Converts the <see cref="T:System.Int32"/> to its JSON string representation.
2092 </summary> 1445 </summary>
2093 <value>The type name handling.</value> 1446 <param name="value">The value to convert.</param>
1447 <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
2094 </member> 1448 </member>
2095 <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"> 1449 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
2096 <summary> 1450 <summary>
2097 Represents a trace writer that writes to memory. When the trace message limit is 1451 Converts the <see cref="T:System.Int16"/> to its JSON string representation.
2098 reached then old trace messages will be removed as new messages are added.
2099 </summary> 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>
2100 </member> 1455 </member>
2101 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor"> 1456 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
2102 <summary> 1457 <summary>
2103 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class. 1458 Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
2104 </summary> 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>
2105 </member> 1462 </member>
2106 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)"> 1463 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
2107 <summary> 1464 <summary>
2108 Writes the specified trace level, message and optional exception. 1465 Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
2109 </summary> 1466 </summary>
2110 <param name="level">The <see cref="T:System.Diagnostics.TraceLevel"/> at which to write this trace.</param> 1467 <param name="value">The value to convert.</param>
2111 <param name="message">The trace message.</param> 1468 <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
2112 <param name="ex">The trace exception. This parameter is optional.</param>
2113 </member> 1469 </member>
2114 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages"> 1470 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
2115 <summary> 1471 <summary>
2116 Returns an enumeration of the most recent trace messages. 1472 Converts the <see cref="T:System.Int64"/> to its JSON string representation.
2117 </summary> 1473 </summary>
2118 <returns>An enumeration of the most recent trace messages.</returns> 1474 <param name="value">The value to convert.</param>
1475 <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
2119 </member> 1476 </member>
2120 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString"> 1477 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
2121 <summary> 1478 <summary>
2122 Returns a <see cref="T:System.String"/> of the most recent trace messages. 1479 Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
2123 </summary> 1480 </summary>
2124 <returns> 1481 <param name="value">The value to convert.</param>
2125 A <see cref="T:System.String"/> of the most recent trace messages. 1482 <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
2126 </returns>
2127 </member> 1483 </member>
2128 <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter"> 1484 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
2129 <summary> 1485 <summary>
2130 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer. 1486 Converts the <see cref="T:System.Single"/> to its JSON string representation.
2131 For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,
2132 <code>Warning</code> and <code>Error</code> messages.
2133 </summary> 1487 </summary>
2134 <value> 1488 <param name="value">The value to convert.</param>
2135 The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer. 1489 <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
2136 </value>
2137 </member> 1490 </member>
2138 <member name="T:Newtonsoft.Json.IJsonLineInfo"> 1491 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
2139 <summary> 1492 <summary>
2140 Provides an interface to enable a class to return line and position information. 1493 Converts the <see cref="T:System.Double"/> to its JSON string representation.
2141 </summary> 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>
2142 </member> 1497 </member>
2143 <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"> 1498 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
2144 <summary> 1499 <summary>
2145 Gets a value indicating whether the class can return line information. 1500 Converts the <see cref="T:System.Byte"/> to its JSON string representation.
2146 </summary> 1501 </summary>
2147 <returns> 1502 <param name="value">The value to convert.</param>
2148 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>. 1503 <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
2149 </returns>
2150 </member> 1504 </member>
2151 <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"> 1505 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
2152 <summary> 1506 <summary>
2153 Gets the current line number. 1507 Converts the <see cref="T:System.SByte"/> to its JSON string representation.
2154 </summary> 1508 </summary>
2155 <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value> 1509 <param name="value">The value to convert.</param>
1510 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
2156 </member> 1511 </member>
2157 <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"> 1512 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
2158 <summary> 1513 <summary>
2159 Gets the current line position. 1514 Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
2160 </summary> 1515 </summary>
2161 <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value> 1516 <param name="value">The value to convert.</param>
1517 <returns>A JSON string representation of the <see cref="T:System.Decimal"/>.</returns>
2162 </member> 1518 </member>
2163 <member name="T:Newtonsoft.Json.StringEscapeHandling"> 1519 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
2164 <summary> 1520 <summary>
2165 Specifies how strings are escaped when writing JSON text. 1521 Converts the <see cref="T:System.Guid"/> to its JSON string representation.
2166 </summary> 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>
2167 </member> 1525 </member>
2168 <member name="F:Newtonsoft.Json.StringEscapeHandling.Default"> 1526 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
2169 <summary> 1527 <summary>
2170 Only control characters (e.g. newline) are escaped. 1528 Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
2171 </summary> 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>
2172 </member> 1532 </member>
2173 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii"> 1533 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
2174 <summary> 1534 <summary>
2175 All non-ASCII and control characters (e.g. newline) are escaped. 1535 Converts the <see cref="T:System.Uri"/> to its JSON string representation.
2176 </summary> 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>
2177 </member> 1539 </member>
2178 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml"> 1540 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
2179 <summary> 1541 <summary>
2180 HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped. 1542 Converts the <see cref="T:System.String"/> to its JSON string representation.
2181 </summary> 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>
2182 </member> 1546 </member>
2183 <member name="T:Newtonsoft.Json.Linq.JRaw"> 1547 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
2184 <summary> 1548 <summary>
2185 Represents a raw JSON string. 1549 Converts the <see cref="T:System.String"/> to its JSON string representation.
2186 </summary> 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>
2187 </member> 1554 </member>
2188 <member name="T:Newtonsoft.Json.Linq.JValue"> 1555 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)">
2189 <summary> 1556 <summary>
2190 Represents a value in JSON (string, integer, date, etc). 1557 Converts the <see cref="T:System.String"/> to its JSON string representation.
2191 </summary> 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>
2192 </member> 1563 </member>
2193 <member name="T:Newtonsoft.Json.Linq.JToken"> 1564 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
2194 <summary> 1565 <summary>
2195 Represents an abstract JSON token. 1566 Converts the <see cref="T:System.Object"/> to its JSON string representation.
2196 </summary> 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>
2197 </member> 1570 </member>
2198 <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1"> 1571 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
2199 <summary> 1572 <summary>
2200 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects. 1573 Serializes the specified object to a JSON string.
2201 </summary> 1574 </summary>
2202 <typeparam name="T">The type of token</typeparam> 1575 <param name="value">The object to serialize.</param>
1576 <returns>A JSON string representation of the object.</returns>
2203 </member> 1577 </member>
2204 <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)"> 1578 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
2205 <summary> 1579 <summary>
2206 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key. 1580 Serializes the specified object to a JSON string using formatting.
2207 </summary> 1581 </summary>
2208 <value></value> 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>
2209 </member> 1587 </member>
2210 <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)"> 1588 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
2211 <summary> 1589 <summary>
2212 Compares the values of two tokens, including the values of all descendant tokens. 1590 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2213 </summary> 1591 </summary>
2214 <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> 1592 <param name="value">The object to serialize.</param>
2215 <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> 1593 <param name="converters">A collection of converters used while serializing.</param>
2216 <returns>true if the tokens are equal; otherwise false.</returns> 1594 <returns>A JSON string representation of the object.</returns>
2217 </member> 1595 </member>
2218 <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)"> 1596 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
2219 <summary> 1597 <summary>
2220 Adds the specified content immediately after this token. 1598 Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2221 </summary> 1599 </summary>
2222 <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param> 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>
2223 </member> 1604 </member>
2224 <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)"> 1605 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)">
2225 <summary> 1606 <summary>
2226 Adds the specified content immediately before this token. 1607 Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2227 </summary> 1608 </summary>
2228 <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param> 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>
2229 </member> 1615 </member>
2230 <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors"> 1616 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
2231 <summary> 1617 <summary>
2232 Returns a collection of the ancestor tokens of this token. 1618 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2233 </summary> 1619 </summary>
2234 <returns>A collection of the ancestor tokens of this token.</returns> 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>
2235 </member> 1631 </member>
2236 <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf"> 1632 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
2237 <summary> 1633 <summary>
2238 Returns a collection of the sibling tokens after this token, in document order. 1634 Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2239 </summary> 1635 </summary>
2240 <returns>A collection of the sibling tokens after this tokens, in document order.</returns> 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>
2241 </member> 1643 </member>
2242 <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf"> 1644 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
2243 <summary> 1645 <summary>
2244 Returns a collection of the sibling tokens before this token, in document order. 1646 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2245 </summary> 1647 </summary>
2246 <returns>A collection of the sibling tokens before this token, in document order.</returns> 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>
2247 </member> 1660 </member>
2248 <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)"> 1661 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
2249 <summary> 1662 <summary>
2250 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type. 1663 Deserializes the JSON to a .NET object.
2251 </summary> 1664 </summary>
2252 <typeparam name="T">The type to convert the token to.</typeparam> 1665 <param name="value">The JSON to deserialize.</param>
2253 <param name="key">The token key.</param> 1666 <returns>The deserialized object from the JSON string.</returns>
2254 <returns>The converted token value.</returns>
2255 </member> 1667 </member>
2256 <member name="M:Newtonsoft.Json.Linq.JToken.Children"> 1668 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
2257 <summary> 1669 <summary>
2258 Returns a collection of the child tokens of this token, in document order. 1670 Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2259 </summary> 1671 </summary>
2260 <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> 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>
2261 </member> 1678 </member>
2262 <member name="M:Newtonsoft.Json.Linq.JToken.Children``1"> 1679 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
2263 <summary> 1680 <summary>
2264 Returns a collection of the child tokens of this token, in document order, filtered by the specified type. 1681 Deserializes the JSON to the specified .NET type.
2265 </summary> 1682 </summary>
2266 <typeparam name="T">The type to filter the child tokens on.</typeparam> 1683 <param name="value">The JSON to deserialize.</param>
2267 <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> 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>
2268 </member> 1686 </member>
2269 <member name="M:Newtonsoft.Json.Linq.JToken.Values``1"> 1687 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
2270 <summary> 1688 <summary>
2271 Returns a collection of the child values of this token, in document order. 1689 Deserializes the JSON to the specified .NET type.
2272 </summary> 1690 </summary>
2273 <typeparam name="T">The type to convert the values to.</typeparam> 1691 <typeparam name="T">The type of the object to deserialize to.</typeparam>
2274 <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> 1692 <param name="value">The JSON to deserialize.</param>
1693 <returns>The deserialized object from the JSON string.</returns>
2275 </member> 1694 </member>
2276 <member name="M:Newtonsoft.Json.Linq.JToken.Remove"> 1695 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
2277 <summary> 1696 <summary>
2278 Removes this token from its parent. 1697 Deserializes the JSON to the given anonymous type.
2279 </summary> 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>
2280 </member> 1707 </member>
2281 <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)"> 1708 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)">
2282 <summary> 1709 <summary>
2283 Replaces this token with the specified token. 1710 Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2284 </summary> 1711 </summary>
2285 <param name="value">The value.</param> 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>
2286 </member> 1724 </member>
2287 <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 1725 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
2288 <summary> 1726 <summary>
2289 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 1727 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2290 </summary> 1728 </summary>
2291 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 1729 <typeparam name="T">The type of the object to deserialize to.</typeparam>
2292 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> 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>
2293 </member> 1733 </member>
2294 <member name="M:Newtonsoft.Json.Linq.JToken.ToString"> 1734 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
2295 <summary> 1735 <summary>
2296 Returns the indented JSON for this token. 1736 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2297 </summary> 1737 </summary>
2298 <returns> 1738 <typeparam name="T">The type of the object to deserialize to.</typeparam>
2299 The indented JSON for this token. 1739 <param name="value">The object to deserialize.</param>
2300 </returns> 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>
2301 </member> 1745 </member>
2302 <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])"> 1746 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
2303 <summary> 1747 <summary>
2304 Returns the JSON for this token using the given formatting and converters. 1748 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2305 </summary> 1749 </summary>
2306 <param name="formatting">Indicates how the output is formatted.</param> 1750 <param name="value">The JSON to deserialize.</param>
2307 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> 1751 <param name="type">The type of the object to deserialize.</param>
2308 <returns>The JSON for this token using the given formatting and converters.</returns> 1752 <param name="converters">Converters to use while deserializing.</param>
1753 <returns>The deserialized object from the JSON string.</returns>
2309 </member> 1754 </member>
2310 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean"> 1755 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
2311 <summary> 1756 <summary>
2312 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>. 1757 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2313 </summary> 1758 </summary>
2314 <param name="value">The value.</param> 1759 <param name="value">The JSON to deserialize.</param>
2315 <returns>The result of the conversion.</returns> 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>
2316 </member> 1766 </member>
2317 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset"> 1767 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
2318 <summary> 1768 <summary>
2319 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>. 1769 Populates the object with values from the JSON string.
2320 </summary> 1770 </summary>
2321 <param name="value">The value.</param> 1771 <param name="value">The JSON to populate values from.</param>
2322 <returns>The result of the conversion.</returns> 1772 <param name="target">The target object to populate values onto.</param>
2323 </member> 1773 </member>
2324 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}"> 1774 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
2325 <summary> 1775 <summary>
2326 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1776 Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
2327 </summary> 1777 </summary>
2328 <param name="value">The value.</param> 1778 <param name="value">The JSON to populate values from.</param>
2329 <returns>The result of the conversion.</returns> 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>
2330 </member> 1784 </member>
2331 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64"> 1785 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
2332 <summary> 1786 <summary>
2333 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>. 1787 Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string.
2334 </summary> 1788 </summary>
2335 <param name="value">The value.</param> 1789 <param name="node">The node to serialize.</param>
2336 <returns>The result of the conversion.</returns> 1790 <returns>A JSON string of the <see cref="T:System.Xml.XmlNode"/>.</returns>
2337 </member> 1791 </member>
2338 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}"> 1792 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
2339 <summary> 1793 <summary>
2340 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1794 Serializes the <see cref="T:System.Xml.XmlNode"/> to a JSON string using formatting.
2341 </summary> 1795 </summary>
2342 <param name="value">The value.</param> 1796 <param name="node">The node to serialize.</param>
2343 <returns>The result of the conversion.</returns> 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>
2344 </member> 1799 </member>
2345 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}"> 1800 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
2346 <summary> 1801 <summary>
2347 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 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>.
2348 </summary> 1803 </summary>
2349 <param name="value">The value.</param> 1804 <param name="node">The node to serialize.</param>
2350 <returns>The result of the conversion.</returns> 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>
2351 </member> 1808 </member>
2352 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}"> 1809 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
2353 <summary> 1810 <summary>
2354 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1811 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string.
2355 </summary> 1812 </summary>
2356 <param name="value">The value.</param> 1813 <param name="value">The JSON string.</param>
2357 <returns>The result of the conversion.</returns> 1814 <returns>The deserialized <see cref="T:System.Xml.XmlNode"/>.</returns>
2358 </member> 1815 </member>
2359 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}"> 1816 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
2360 <summary> 1817 <summary>
2361 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1818 Deserializes the <see cref="T:System.Xml.XmlNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
2362 </summary> 1819 </summary>
2363 <param name="value">The value.</param> 1820 <param name="value">The JSON string.</param>
2364 <returns>The result of the conversion.</returns> 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>
2365 </member> 1823 </member>
2366 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}"> 1824 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
2367 <summary> 1825 <summary>
2368 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 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.
2369 </summary> 1828 </summary>
2370 <param name="value">The value.</param> 1829 <param name="value">The JSON string.</param>
2371 <returns>The result of the conversion.</returns> 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>
2372 </member> 1836 </member>
2373 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32"> 1837 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean,System.Boolean)">
2374 <summary> 1838 <summary>
2375 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>. 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.
2376 </summary> 1841 </summary>
2377 <param name="value">The value.</param> 1842 <param name="value">The JSON string.</param>
2378 <returns>The result of the conversion.</returns> 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>
2379 </member> 1855 </member>
2380 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16"> 1856 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
2381 <summary> 1857 <summary>
2382 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>. 1858 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
2383 </summary> 1859 </summary>
2384 <param name="value">The value.</param> 1860 <param name="node">The node to convert to JSON.</param>
2385 <returns>The result of the conversion.</returns> 1861 <returns>A JSON string of the <see cref="T:System.Xml.Linq.XNode"/>.</returns>
2386 </member> 1862 </member>
2387 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16"> 1863 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
2388 <summary> 1864 <summary>
2389 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>. 1865 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting.
2390 </summary> 1866 </summary>
2391 <param name="value">The value.</param> 1867 <param name="node">The node to convert to JSON.</param>
2392 <returns>The result of the conversion.</returns> 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>
2393 </member> 1870 </member>
2394 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char"> 1871 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
2395 <summary> 1872 <summary>
2396 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Char"/>. 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>.
2397 </summary> 1874 </summary>
2398 <param name="value">The value.</param> 1875 <param name="node">The node to serialize.</param>
2399 <returns>The result of the conversion.</returns> 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>
2400 </member> 1879 </member>
2401 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte"> 1880 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
2402 <summary> 1881 <summary>
2403 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte"/>. 1882 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
2404 </summary> 1883 </summary>
2405 <param name="value">The value.</param> 1884 <param name="value">The JSON string.</param>
2406 <returns>The result of the conversion.</returns> 1885 <returns>The deserialized <see cref="T:System.Xml.Linq.XNode"/>.</returns>
2407 </member> 1886 </member>
2408 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.SByte"> 1887 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
2409 <summary> 1888 <summary>
2410 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.SByte"/>. 1889 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root element specified by <paramref name="deserializeRootElementName"/>.
2411 </summary> 1890 </summary>
2412 <param name="value">The value.</param> 1891 <param name="value">The JSON string.</param>
2413 <returns>The result of the conversion.</returns> 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>
2414 </member> 1894 </member>
2415 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}"> 1895 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
2416 <summary> 1896 <summary>
2417 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 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.
2418 </summary> 1899 </summary>
2419 <param name="value">The value.</param> 1900 <param name="value">The JSON string.</param>
2420 <returns>The result of the conversion.</returns> 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>
2421 </member> 1907 </member>
2422 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}"> 1908 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean,System.Boolean)">
2423 <summary> 1909 <summary>
2424 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 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.
2425 </summary> 1912 </summary>
2426 <param name="value">The value.</param> 1913 <param name="value">The JSON string.</param>
2427 <returns>The result of the conversion.</returns> 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>
2428 </member> 1926 </member>
2429 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}"> 1927 <member name="T:Newtonsoft.Json.JsonConverter">
2430 <summary> 1928 <summary>
2431 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1929 Converts an object to and from JSON.
2432 </summary> 1930 </summary>
2433 <param name="value">The value.</param>
2434 <returns>The result of the conversion.</returns>
2435 </member> 1931 </member>
2436 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}"> 1932 <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
2437 <summary> 1933 <summary>
2438 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1934 Writes the JSON representation of the object.
2439 </summary> 1935 </summary>
1936 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
2440 <param name="value">The value.</param> 1937 <param name="value">The value.</param>
2441 <returns>The result of the conversion.</returns> 1938 <param name="serializer">The calling serializer.</param>
2442 </member> 1939 </member>
2443 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.SByte}"> 1940 <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
2444 <summary> 1941 <summary>
2445 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1942 Reads the JSON representation of the object.
2446 </summary> 1943 </summary>
2447 <param name="value">The value.</param> 1944 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
2448 <returns>The result of the conversion.</returns> 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>
2449 </member> 1949 </member>
2450 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime"> 1950 <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
2451 <summary> 1951 <summary>
2452 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>. 1952 Determines whether this instance can convert the specified object type.
2453 </summary> 1953 </summary>
2454 <param name="value">The value.</param> 1954 <param name="objectType">Type of the object.</param>
2455 <returns>The result of the conversion.</returns> 1955 <returns>
1956 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1957 </returns>
2456 </member> 1958 </member>
2457 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}"> 1959 <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
2458 <summary> 1960 <summary>
2459 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1961 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
2460 </summary> 1962 </summary>
2461 <param name="value">The value.</param> 1963 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
2462 <returns>The result of the conversion.</returns>
2463 </member> 1964 </member>
2464 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}"> 1965 <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
2465 <summary> 1966 <summary>
2466 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1967 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
2467 </summary> 1968 </summary>
2468 <param name="value">The value.</param> 1969 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
2469 <returns>The result of the conversion.</returns>
2470 </member> 1970 </member>
2471 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal"> 1971 <member name="T:Newtonsoft.Json.JsonConverter`1">
2472 <summary> 1972 <summary>
2473 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>. 1973 Converts an object to and from JSON.
2474 </summary> 1974 </summary>
2475 <param name="value">The value.</param> 1975 <typeparam name="T">The object type to convert.</typeparam>
2476 <returns>The result of the conversion.</returns>
2477 </member> 1976 </member>
2478 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}"> 1977 <member name="M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
2479 <summary> 1978 <summary>
2480 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1979 Writes the JSON representation of the object.
2481 </summary> 1980 </summary>
1981 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
2482 <param name="value">The value.</param> 1982 <param name="value">The value.</param>
2483 <returns>The result of the conversion.</returns> 1983 <param name="serializer">The calling serializer.</param>
2484 </member> 1984 </member>
2485 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}"> 1985 <member name="M:Newtonsoft.Json.JsonConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,`0,Newtonsoft.Json.JsonSerializer)">
2486 <summary> 1986 <summary>
2487 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. 1987 Writes the JSON representation of the object.
2488 </summary> 1988 </summary>
1989 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
2489 <param name="value">The value.</param> 1990 <param name="value">The value.</param>
2490 <returns>The result of the conversion.</returns> 1991 <param name="serializer">The calling serializer.</param>
2491 </member> 1992 </member>
2492 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double"> 1993 <member name="M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
2493 <summary> 1994 <summary>
2494 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>. 1995 Reads the JSON representation of the object.
2495 </summary> 1996 </summary>
2496 <param name="value">The value.</param> 1997 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
2497 <returns>The result of the conversion.</returns> 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>
2498 </member> 2002 </member>
2499 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single"> 2003 <member name="M:Newtonsoft.Json.JsonConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,`0,System.Boolean,Newtonsoft.Json.JsonSerializer)">
2500 <summary> 2004 <summary>
2501 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>. 2005 Reads the JSON representation of the object.
2502 </summary> 2006 </summary>
2503 <param name="value">The value.</param> 2007 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
2504 <returns>The result of the conversion.</returns> 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>
2505 </member> 2013 </member>
2506 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String"> 2014 <member name="M:Newtonsoft.Json.JsonConverter`1.CanConvert(System.Type)">
2507 <summary> 2015 <summary>
2508 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>. 2016 Determines whether this instance can convert the specified object type.
2509 </summary> 2017 </summary>
2510 <param name="value">The value.</param> 2018 <param name="objectType">Type of the object.</param>
2511 <returns>The result of the conversion.</returns> 2019 <returns>
2020 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
2021 </returns>
2512 </member> 2022 </member>
2513 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32"> 2023 <member name="T:Newtonsoft.Json.JsonConverterAttribute">
2514 <summary> 2024 <summary>
2515 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>. 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.
2516 </summary> 2026 </summary>
2517 <param name="value">The value.</param>
2518 <returns>The result of the conversion.</returns>
2519 </member> 2027 </member>
2520 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64"> 2028 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
2521 <summary> 2029 <summary>
2522 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>. 2030 Gets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2523 </summary> 2031 </summary>
2524 <param name="value">The value.</param> 2032 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</value>
2525 <returns>The result of the conversion.</returns>
2526 </member> 2033 </member>
2527 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]"> 2034 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters">
2528 <summary> 2035 <summary>
2529 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>. 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.
2530 </summary> 2038 </summary>
2531 <param name="value">The value.</param>
2532 <returns>The result of the conversion.</returns>
2533 </member> 2039 </member>
2534 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid"> 2040 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
2535 <summary> 2041 <summary>
2536 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>. 2042 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2537 </summary> 2043 </summary>
2538 <param name="value">The value.</param> 2044 <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
2539 <returns>The result of the conversion.</returns>
2540 </member> 2045 </member>
2541 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}"> 2046 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])">
2542 <summary> 2047 <summary>
2543 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Guid"/>. 2048 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2544 </summary> 2049 </summary>
2545 <param name="value">The value.</param> 2050 <param name="converterType">Type of the <see cref="T:Newtonsoft.Json.JsonConverter"/>.</param>
2546 <returns>The result of the conversion.</returns> 2051 <param name="converterParameters">Parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/>. Can be <c>null</c>.</param>
2547 </member> 2052 </member>
2548 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan"> 2053 <member name="T:Newtonsoft.Json.JsonConverterCollection">
2549 <summary> 2054 <summary>
2550 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>. 2055 Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
2551 </summary> 2056 </summary>
2552 <param name="value">The value.</param>
2553 <returns>The result of the conversion.</returns>
2554 </member> 2057 </member>
2555 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}"> 2058 <member name="T:Newtonsoft.Json.JsonDictionaryAttribute">
2556 <summary> 2059 <summary>
2557 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.TimeSpan"/>. 2060 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
2558 </summary> 2061 </summary>
2559 <param name="value">The value.</param>
2560 <returns>The result of the conversion.</returns>
2561 </member> 2062 </member>
2562 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri"> 2063 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor">
2563 <summary> 2064 <summary>
2564 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Uri"/>. 2065 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class.
2565 </summary> 2066 </summary>
2566 <param name="value">The value.</param>
2567 <returns>The result of the conversion.</returns>
2568 </member> 2067 </member>
2569 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken"> 2068 <member name="M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)">
2570 <summary> 2069 <summary>
2571 Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2070 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonDictionaryAttribute"/> class with the specified container Id.
2572 </summary> 2071 </summary>
2573 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2072 <param name="id">The container Id.</param>
2574 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2575 </member> 2073 </member>
2576 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken"> 2074 <member name="T:Newtonsoft.Json.JsonException">
2577 <summary> 2075 <summary>
2578 Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2076 The exception thrown when an error occurs during JSON serialization or deserialization.
2579 </summary> 2077 </summary>
2580 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2581 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2582 </member> 2078 </member>
2583 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte)~Newtonsoft.Json.Linq.JToken"> 2079 <member name="M:Newtonsoft.Json.JsonException.#ctor">
2584 <summary> 2080 <summary>
2585 Performs an implicit conversion from <see cref="T:System.Byte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2081 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2586 </summary> 2082 </summary>
2587 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2588 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2589 </member> 2083 </member>
2590 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Byte})~Newtonsoft.Json.Linq.JToken"> 2084 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String)">
2591 <summary> 2085 <summary>
2592 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2086 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class
2087 with a specified error message.
2593 </summary> 2088 </summary>
2594 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2089 <param name="message">The error message that explains the reason for the exception.</param>
2595 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2596 </member> 2090 </member>
2597 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.SByte)~Newtonsoft.Json.Linq.JToken"> 2091 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)">
2598 <summary> 2092 <summary>
2599 Performs an implicit conversion from <see cref="T:System.SByte"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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.
2600 </summary> 2095 </summary>
2601 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2096 <param name="message">The error message that explains the reason for the exception.</param>
2602 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 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>
2603 </member> 2098 </member>
2604 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.SByte})~Newtonsoft.Json.Linq.JToken"> 2099 <member name="M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
2605 <summary> 2100 <summary>
2606 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2101 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonException"/> class.
2607 </summary> 2102 </summary>
2608 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2103 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
2609 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 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>
2610 </member> 2107 </member>
2611 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken"> 2108 <member name="T:Newtonsoft.Json.JsonExtensionDataAttribute">
2612 <summary> 2109 <summary>
2613 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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.
2614 </summary> 2112 </summary>
2615 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2616 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2617 </member> 2113 </member>
2618 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken"> 2114 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.WriteData">
2619 <summary> 2115 <summary>
2620 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2116 Gets or sets a value that indicates whether to write extension data when serializing the object.
2621 </summary> 2117 </summary>
2622 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2118 <value>
2623 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2119 <c>true</c> to write extension data when serializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2120 </value>
2624 </member> 2121 </member>
2625 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken"> 2122 <member name="P:Newtonsoft.Json.JsonExtensionDataAttribute.ReadData">
2626 <summary> 2123 <summary>
2627 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2124 Gets or sets a value that indicates whether to read extension data when deserializing the object.
2628 </summary> 2125 </summary>
2629 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2126 <value>
2630 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2127 <c>true</c> to read extension data when deserializing the object; otherwise, <c>false</c>. The default is <c>true</c>.
2128 </value>
2631 </member> 2129 </member>
2632 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken"> 2130 <member name="M:Newtonsoft.Json.JsonExtensionDataAttribute.#ctor">
2633 <summary> 2131 <summary>
2634 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2132 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonExtensionDataAttribute"/> class.
2635 </summary> 2133 </summary>
2636 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2637 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2638 </member> 2134 </member>
2639 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken"> 2135 <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
2640 <summary> 2136 <summary>
2641 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2137 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
2642 </summary> 2138 </summary>
2643 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2644 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2645 </member> 2139 </member>
2646 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken"> 2140 <member name="T:Newtonsoft.Json.JsonNameTable">
2647 <summary> 2141 <summary>
2648 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2142 Base class for a table of atomized string objects.
2649 </summary> 2143 </summary>
2650 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2651 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2652 </member> 2144 </member>
2653 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken"> 2145 <member name="M:Newtonsoft.Json.JsonNameTable.Get(System.Char[],System.Int32,System.Int32)">
2654 <summary> 2146 <summary>
2655 Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2147 Gets a string containing the same characters as the specified range of characters in the given array.
2656 </summary> 2148 </summary>
2657 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2149 <param name="key">The character array containing the name to find.</param>
2658 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 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>
2659 </member> 2153 </member>
2660 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken"> 2154 <member name="T:Newtonsoft.Json.JsonObjectAttribute">
2661 <summary> 2155 <summary>
2662 Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2156 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2663 </summary> 2157 </summary>
2664 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2665 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2666 </member> 2158 </member>
2667 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken"> 2159 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
2668 <summary> 2160 <summary>
2669 Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2161 Gets or sets the member serialization.
2670 </summary> 2162 </summary>
2671 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2163 <value>The member serialization.</value>
2672 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2673 </member> 2164 </member>
2674 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken"> 2165 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MissingMemberHandling">
2675 <summary> 2166 <summary>
2676 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2167 Gets or sets the missing member handling used when deserializing this object.
2677 </summary> 2168 </summary>
2678 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2169 <value>The missing member handling.</value>
2679 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2680 </member> 2170 </member>
2681 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken"> 2171 <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemNullValueHandling">
2682 <summary> 2172 <summary>
2683 Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2173 Gets or sets how the object's properties with null values are handled during serialization and deserialization.
2684 </summary> 2174 </summary>
2685 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2175 <value>How the object's properties with null values are handled during serialization and deserialization.</value>
2686 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2687 </member> 2176 </member>
2688 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken"> 2177 <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired">
2689 <summary> 2178 <summary>
2690 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2179 Gets or sets a value that indicates whether the object's properties are required.
2691 </summary> 2180 </summary>
2692 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2181 <value>
2693 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2182 A value indicating whether the object's properties are required.
2183 </value>
2694 </member> 2184 </member>
2695 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken"> 2185 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
2696 <summary> 2186 <summary>
2697 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2187 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
2698 </summary> 2188 </summary>
2699 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2700 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2701 </member> 2189 </member>
2702 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken"> 2190 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
2703 <summary> 2191 <summary>
2704 Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2192 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
2705 </summary> 2193 </summary>
2706 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2194 <param name="memberSerialization">The member serialization.</param>
2707 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2708 </member> 2195 </member>
2709 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken"> 2196 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
2710 <summary> 2197 <summary>
2711 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2198 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
2712 </summary> 2199 </summary>
2713 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2200 <param name="id">The container Id.</param>
2714 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2715 </member> 2201 </member>
2716 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken"> 2202 <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
2717 <summary> 2203 <summary>
2718 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2204 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
2719 </summary> 2205 </summary>
2720 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
2721 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2722 </member> 2206 </member>
2723 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken"> 2207 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType">
2724 <summary> 2208 <summary>
2725 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2209 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> type used when serializing the property's collection items.
2726 </summary> 2210 </summary>
2727 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2211 <value>The collection's items <see cref="T:Newtonsoft.Json.JsonConverter"/> type.</value>
2728 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2729 </member> 2212 </member>
2730 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken"> 2213 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters">
2731 <summary> 2214 <summary>
2732 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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.
2733 </summary> 2219 </summary>
2734 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2220 <example>
2735 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2221 <code>
2222 [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
2223 </code>
2224 </example>
2736 </member> 2225 </member>
2737 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken"> 2226 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyType">
2738 <summary> 2227 <summary>
2739 Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2228 Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
2740 </summary> 2229 </summary>
2741 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2230 <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
2742 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2743 </member> 2231 </member>
2744 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken"> 2232 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NamingStrategyParameters">
2745 <summary> 2233 <summary>
2746 Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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.
2747 </summary> 2238 </summary>
2748 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2239 <example>
2749 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2240 <code>
2241 [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
2242 </code>
2243 </example>
2750 </member> 2244 </member>
2751 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken"> 2245 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
2752 <summary> 2246 <summary>
2753 Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2247 Gets or sets the null value handling used when serializing this property.
2754 </summary> 2248 </summary>
2755 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2249 <value>The null value handling.</value>
2756 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2757 </member> 2250 </member>
2758 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken"> 2251 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
2759 <summary> 2252 <summary>
2760 Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2253 Gets or sets the default value handling used when serializing this property.
2761 </summary> 2254 </summary>
2762 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2255 <value>The default value handling.</value>
2763 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2764 </member> 2256 </member>
2765 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken"> 2257 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
2766 <summary> 2258 <summary>
2767 Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2259 Gets or sets the reference loop handling used when serializing this property.
2768 </summary> 2260 </summary>
2769 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2261 <value>The reference loop handling.</value>
2770 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2771 </member> 2262 </member>
2772 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken"> 2263 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
2773 <summary> 2264 <summary>
2774 Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2265 Gets or sets the object creation handling used when deserializing this property.
2775 </summary> 2266 </summary>
2776 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2267 <value>The object creation handling.</value>
2777 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2778 </member> 2268 </member>
2779 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken"> 2269 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
2780 <summary> 2270 <summary>
2781 Performs an implicit conversion from <see cref="T:System.Uri"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2271 Gets or sets the type name handling used when serializing this property.
2782 </summary> 2272 </summary>
2783 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2273 <value>The type name handling.</value>
2784 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2785 </member> 2274 </member>
2786 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken"> 2275 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
2787 <summary> 2276 <summary>
2788 Performs an implicit conversion from <see cref="T:System.TimeSpan"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2277 Gets or sets whether this property's value is serialized as a reference.
2789 </summary> 2278 </summary>
2790 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2279 <value>Whether this property's value is serialized as a reference.</value>
2791 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2792 </member> 2280 </member>
2793 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken"> 2281 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
2794 <summary> 2282 <summary>
2795 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2283 Gets or sets the order of serialization of a member.
2796 </summary> 2284 </summary>
2797 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2285 <value>The numeric order of serialization.</value>
2798 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2799 </member> 2286 </member>
2800 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken"> 2287 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
2801 <summary> 2288 <summary>
2802 Performs an implicit conversion from <see cref="T:System.Guid"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2289 Gets or sets a value indicating whether this property is required.
2803 </summary> 2290 </summary>
2804 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2291 <value>
2805 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> 2292 A value indicating whether this property is required.
2293 </value>
2806 </member> 2294 </member>
2807 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken"> 2295 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
2808 <summary> 2296 <summary>
2809 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2297 Gets or sets the name of the property.
2810 </summary> 2298 </summary>
2811 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> 2299 <value>The name of the property.</value>
2812 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
2813 </member> 2300 </member>
2814 <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader"> 2301 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling">
2815 <summary> 2302 <summary>
2816 Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token. 2303 Gets or sets the reference loop handling used when serializing the property's collection items.
2817 </summary> 2304 </summary>
2818 <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns> 2305 <value>The collection's items reference loop handling.</value>
2819 </member> 2306 </member>
2820 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"> 2307 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling">
2821 <summary> 2308 <summary>
2822 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object. 2309 Gets or sets the type name handling used when serializing the property's collection items.
2823 </summary> 2310 </summary>
2824 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param> 2311 <value>The collection's items type name handling.</value>
2825 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2826 </member> 2312 </member>
2827 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> 2313 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference">
2828 <summary> 2314 <summary>
2829 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2315 Gets or sets whether this property's collection items are serialized as a reference.
2830 </summary> 2316 </summary>
2831 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param> 2317 <value>Whether this property's collection items are serialized as a reference.</value>
2832 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
2833 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
2834 </member> 2318 </member>
2835 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1"> 2319 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
2836 <summary> 2320 <summary>
2837 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2321 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
2838 </summary> 2322 </summary>
2839 <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2840 <returns>The new object created from the JSON value.</returns>
2841 </member> 2323 </member>
2842 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)"> 2324 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
2843 <summary> 2325 <summary>
2844 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2326 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
2845 </summary> 2327 </summary>
2846 <param name="objectType">The object type that the token will be deserialized to.</param> 2328 <param name="propertyName">Name of the property.</param>
2847 <returns>The new object created from the JSON value.</returns>
2848 </member> 2329 </member>
2849 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)"> 2330 <member name="T:Newtonsoft.Json.JsonReader">
2850 <summary> 2331 <summary>
2851 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2332 Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
2852 </summary> 2333 </summary>
2853 <typeparam name="T">The object type that the token will be deserialized to.</typeparam>
2854 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
2855 <returns>The new object created from the JSON value.</returns>
2856 </member> 2334 </member>
2857 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)"> 2335 <member name="M:Newtonsoft.Json.JsonReader.ReadAsync(System.Threading.CancellationToken)">
2858 <summary> 2336 <summary>
2859 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2337 Asynchronously reads the next JSON token from the source.
2860 </summary> 2338 </summary>
2861 <param name="objectType">The object type that the token will be deserialized to.</param> 2339 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2862 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</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"/>
2863 <returns>The new object created from the JSON value.</returns> 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>
2864 </member> 2344 </member>
2865 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)"> 2345 <member name="M:Newtonsoft.Json.JsonReader.SkipAsync(System.Threading.CancellationToken)">
2866 <summary> 2346 <summary>
2867 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 2347 Asynchronously skips the children of the current token.
2868 </summary> 2348 </summary>
2869 <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> 2349 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2870 <returns> 2350 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
2871 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens 2351 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2872 that were read from the reader. The runtime type of the token is determined 2352 classes can override this behaviour for true asynchronicity.</remarks>
2873 by the token type of the first token encountered in the reader.
2874 </returns>
2875 </member> 2353 </member>
2876 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)"> 2354 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
2877 <summary> 2355 <summary>
2878 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON. 2356 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
2879 </summary> 2357 </summary>
2880 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> 2358 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2881 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns> 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>
2882 </member> 2363 </member>
2883 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)"> 2364 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
2884 <summary> 2365 <summary>
2885 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 2366 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
2886 </summary> 2367 </summary>
2887 <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> 2368 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2888 <returns> 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"/>
2889 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens 2370 property returns the <see cref="T:System.Byte"/>[]. This result will be <c>null</c> at the end of an array.</returns>
2890 that were read from the reader. The runtime type of the token is determined 2371 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2891 by the token type of the first token encountered in the reader. 2372 classes can override this behaviour for true asynchronicity.</remarks>
2892 </returns>
2893 </member> 2373 </member>
2894 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)"> 2374 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
2895 <summary> 2375 <summary>
2896 Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path. 2376 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
2897 </summary> 2377 </summary>
2898 <param name="path"> 2378 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2899 A <see cref="T:System.String"/> that contains a JPath expression. 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"/>
2900 </param> 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>
2901 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</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>
2902 </member> 2383 </member>
2903 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)"> 2384 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
2904 <summary> 2385 <summary>
2905 Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path. 2386 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
2906 </summary> 2387 </summary>
2907 <param name="path"> 2388 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2908 A <see cref="T:System.String"/> that contains a JPath expression. 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"/>
2909 </param> 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>
2910 <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> 2391 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2911 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns> 2392 classes can override this behaviour for true asynchronicity.</remarks>
2912 </member> 2393 </member>
2913 <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)"> 2394 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
2914 <summary> 2395 <summary>
2915 Selects a collection of elements using a JPath expression. 2396 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
2916 </summary> 2397 </summary>
2917 <param name="path"> 2398 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2918 A <see cref="T:System.String"/> that contains a JPath expression. 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"/>
2919 </param> 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>
2920 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</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>
2921 </member> 2403 </member>
2922 <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)"> 2404 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
2923 <summary> 2405 <summary>
2924 Selects a collection of elements using a JPath expression. 2406 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
2925 </summary> 2407 </summary>
2926 <param name="path"> 2408 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2927 A <see cref="T:System.String"/> that contains a JPath expression. 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"/>
2928 </param> 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>
2929 <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> 2411 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
2930 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns> 2412 classes can override this behaviour for true asynchronicity.</remarks>
2931 </member> 2413 </member>
2932 <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)"> 2414 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32Async(System.Threading.CancellationToken)">
2933 <summary> 2415 <summary>
2934 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. 2416 Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
2935 </summary> 2417 </summary>
2936 <param name="parameter">The expression tree representation of the runtime value.</param> 2418 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2937 <returns> 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"/>
2938 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. 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>
2939 </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>
2940 </member> 2423 </member>
2941 <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)"> 2424 <member name="M:Newtonsoft.Json.JsonReader.ReadAsStringAsync(System.Threading.CancellationToken)">
2942 <summary> 2425 <summary>
2943 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. 2426 Asynchronously reads the next JSON token from the source as a <see cref="T:System.String"/>.
2944 </summary> 2427 </summary>
2945 <param name="parameter">The expression tree representation of the runtime value.</param> 2428 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
2946 <returns> 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"/>
2947 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. 2430 property returns the <see cref="T:System.String"/>. This result will be <c>null</c> at the end of an array.</returns>
2948 </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>
2949 </member> 2433 </member>
2950 <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone"> 2434 <member name="T:Newtonsoft.Json.JsonReader.State">
2951 <summary> 2435 <summary>
2952 Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned. 2436 Specifies the state of the reader.
2953 </summary> 2437 </summary>
2954 <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2955 </member> 2438 </member>
2956 <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer"> 2439 <member name="F:Newtonsoft.Json.JsonReader.State.Start">
2957 <summary> 2440 <summary>
2958 Gets a comparer that can compare two tokens for value equality. 2441 A <see cref="T:Newtonsoft.Json.JsonReader"/> read method has not been called.
2959 </summary> 2442 </summary>
2960 <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2961 </member> 2443 </member>
2962 <member name="P:Newtonsoft.Json.Linq.JToken.Parent"> 2444 <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
2963 <summary> 2445 <summary>
2964 Gets or sets the parent. 2446 The end of the file has been reached successfully.
2965 </summary> 2447 </summary>
2966 <value>The parent.</value>
2967 </member> 2448 </member>
2968 <member name="P:Newtonsoft.Json.Linq.JToken.Root"> 2449 <member name="F:Newtonsoft.Json.JsonReader.State.Property">
2969 <summary> 2450 <summary>
2970 Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2451 Reader is at a property.
2971 </summary> 2452 </summary>
2972 <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2973 </member> 2453 </member>
2974 <member name="P:Newtonsoft.Json.Linq.JToken.Type"> 2454 <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
2975 <summary> 2455 <summary>
2976 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2456 Reader is at the start of an object.
2977 </summary> 2457 </summary>
2978 <value>The type.</value>
2979 </member> 2458 </member>
2980 <member name="P:Newtonsoft.Json.Linq.JToken.HasValues"> 2459 <member name="F:Newtonsoft.Json.JsonReader.State.Object">
2981 <summary> 2460 <summary>
2982 Gets a value indicating whether this token has child tokens. 2461 Reader is in an object.
2983 </summary> 2462 </summary>
2984 <value>
2985 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2986 </value>
2987 </member> 2463 </member>
2988 <member name="P:Newtonsoft.Json.Linq.JToken.Next"> 2464 <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
2989 <summary> 2465 <summary>
2990 Gets the next sibling token of this node. 2466 Reader is at the start of an array.
2991 </summary> 2467 </summary>
2992 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2993 </member> 2468 </member>
2994 <member name="P:Newtonsoft.Json.Linq.JToken.Previous"> 2469 <member name="F:Newtonsoft.Json.JsonReader.State.Array">
2995 <summary> 2470 <summary>
2996 Gets the previous sibling token of this node. 2471 Reader is in an array.
2997 </summary> 2472 </summary>
2998 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2999 </member> 2473 </member>
3000 <member name="P:Newtonsoft.Json.Linq.JToken.Path"> 2474 <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
3001 <summary> 2475 <summary>
3002 Gets the path of the JSON token. 2476 The <see cref="M:Newtonsoft.Json.JsonReader.Close"/> method has been called.
3003 </summary> 2477 </summary>
3004 </member> 2478 </member>
3005 <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)"> 2479 <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
3006 <summary> 2480 <summary>
3007 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. 2481 Reader has just read a value.
3008 </summary> 2482 </summary>
3009 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
3010 </member> 2483 </member>
3011 <member name="P:Newtonsoft.Json.Linq.JToken.First"> 2484 <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
3012 <summary> 2485 <summary>
3013 Get the first child token of this token. 2486 Reader is at the start of a constructor.
3014 </summary> 2487 </summary>
3015 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3016 </member> 2488 </member>
3017 <member name="P:Newtonsoft.Json.Linq.JToken.Last"> 2489 <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
3018 <summary> 2490 <summary>
3019 Get the last child token of this token. 2491 Reader is in a constructor.
3020 </summary> 2492 </summary>
3021 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
3022 </member> 2493 </member>
3023 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)"> 2494 <member name="F:Newtonsoft.Json.JsonReader.State.Error">
3024 <summary> 2495 <summary>
3025 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object. 2496 An error occurred that prevents the read operation from continuing.
3026 </summary> 2497 </summary>
3027 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
3028 </member> 2498 </member>
3029 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)"> 2499 <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
3030 <summary> 2500 <summary>
3031 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2501 The end of the file has been reached successfully.
3032 </summary> 2502 </summary>
3033 <param name="value">The value.</param>
3034 </member> 2503 </member>
3035 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)"> 2504 <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
3036 <summary> 2505 <summary>
3037 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2506 Gets the current reader state.
3038 </summary> 2507 </summary>
3039 <param name="value">The value.</param> 2508 <value>The current reader state.</value>
3040 </member> 2509 </member>
3041 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)"> 2510 <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
3042 <summary> 2511 <summary>
3043 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2512 Gets or sets a value indicating whether the source should be closed when this reader is closed.
3044 </summary> 2513 </summary>
3045 <param name="value">The value.</param> 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>
3046 </member> 2517 </member>
3047 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)"> 2518 <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent">
3048 <summary> 2519 <summary>
3049 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2520 Gets or sets a value indicating whether multiple pieces of JSON content can
2521 be read from a continuous stream without erroring.
3050 </summary> 2522 </summary>
3051 <param name="value">The value.</param> 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>
3052 </member> 2527 </member>
3053 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)"> 2528 <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
3054 <summary> 2529 <summary>
3055 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2530 Gets the quotation mark character used to enclose the value of a string.
3056 </summary> 2531 </summary>
3057 <param name="value">The value.</param>
3058 </member> 2532 </member>
3059 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)"> 2533 <member name="P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling">
3060 <summary> 2534 <summary>
3061 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2535 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when reading JSON.
3062 </summary> 2536 </summary>
3063 <param name="value">The value.</param>
3064 </member> 2537 </member>
3065 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)"> 2538 <member name="P:Newtonsoft.Json.JsonReader.DateParseHandling">
3066 <summary> 2539 <summary>
3067 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2540 Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
3068 </summary> 2541 </summary>
3069 <param name="value">The value.</param>
3070 </member> 2542 </member>
3071 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)"> 2543 <member name="P:Newtonsoft.Json.JsonReader.FloatParseHandling">
3072 <summary> 2544 <summary>
3073 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2545 Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
3074 </summary> 2546 </summary>
3075 <param name="value">The value.</param>
3076 </member> 2547 </member>
3077 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)"> 2548 <member name="P:Newtonsoft.Json.JsonReader.DateFormatString">
3078 <summary> 2549 <summary>
3079 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2550 Gets or sets how custom date formatted strings are parsed when reading JSON.
3080 </summary> 2551 </summary>
3081 <param name="value">The value.</param>
3082 </member> 2552 </member>
3083 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)"> 2553 <member name="P:Newtonsoft.Json.JsonReader.MaxDepth">
3084 <summary> 2554 <summary>
3085 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2555 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>.
3086 </summary> 2556 </summary>
3087 <param name="value">The value.</param>
3088 </member> 2557 </member>
3089 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)"> 2558 <member name="P:Newtonsoft.Json.JsonReader.TokenType">
3090 <summary> 2559 <summary>
3091 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2560 Gets the type of the current JSON token.
3092 </summary> 2561 </summary>
3093 <param name="value">The value.</param>
3094 </member> 2562 </member>
3095 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)"> 2563 <member name="P:Newtonsoft.Json.JsonReader.Value">
3096 <summary> 2564 <summary>
3097 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2565 Gets the text value of the current JSON token.
3098 </summary> 2566 </summary>
3099 <param name="value">The value.</param>
3100 </member> 2567 </member>
3101 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)"> 2568 <member name="P:Newtonsoft.Json.JsonReader.ValueType">
3102 <summary> 2569 <summary>
3103 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2570 Gets the .NET type for the current JSON token.
3104 </summary> 2571 </summary>
3105 <param name="value">The value.</param>
3106 </member> 2572 </member>
3107 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)"> 2573 <member name="P:Newtonsoft.Json.JsonReader.Depth">
3108 <summary> 2574 <summary>
3109 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. 2575 Gets the depth of the current token in the JSON document.
3110 </summary> 2576 </summary>
3111 <param name="value">The value.</param> 2577 <value>The depth of the current token in the JSON document.</value>
3112 </member> 2578 </member>
3113 <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)"> 2579 <member name="P:Newtonsoft.Json.JsonReader.Path">
3114 <summary> 2580 <summary>
3115 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value. 2581 Gets the path of the current JSON token.
3116 </summary> 2582 </summary>
3117 <param name="value">The value.</param>
3118 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
3119 </member> 2583 </member>
3120 <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)"> 2584 <member name="P:Newtonsoft.Json.JsonReader.Culture">
3121 <summary> 2585 <summary>
3122 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value. 2586 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3123 </summary> 2587 </summary>
3124 <param name="value">The value.</param>
3125 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
3126 </member> 2588 </member>
3127 <member name="M:Newtonsoft.Json.Linq.JValue.CreateNull"> 2589 <member name="M:Newtonsoft.Json.JsonReader.#ctor">
3128 <summary> 2590 <summary>
3129 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value. 2591 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class.
3130 </summary> 2592 </summary>
3131 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns>
3132 </member> 2593 </member>
3133 <member name="M:Newtonsoft.Json.Linq.JValue.CreateUndefined"> 2594 <member name="M:Newtonsoft.Json.JsonReader.Read">
3134 <summary> 2595 <summary>
3135 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value. 2596 Reads the next JSON token from the source.
3136 </summary> 2597 </summary>
3137 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> null value.</returns> 2598 <returns><c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
3138 </member> 2599 </member>
3139 <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 2600 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32">
3140 <summary> 2601 <summary>
3141 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 2602 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.
3142 </summary> 2603 </summary>
3143 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 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>
3144 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
3145 </member> 2605 </member>
3146 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)"> 2606 <member name="M:Newtonsoft.Json.JsonReader.ReadAsString">
3147 <summary> 2607 <summary>
3148 Indicates whether the current object is equal to another object of the same type. 2608 Reads the next JSON token from the source as a <see cref="T:System.String"/>.
3149 </summary> 2609 </summary>
3150 <returns> 2610 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3151 true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
3152 </returns>
3153 <param name="other">An object to compare with this object.</param>
3154 </member> 2611 </member>
3155 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)"> 2612 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
3156 <summary> 2613 <summary>
3157 Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>. 2614 Reads the next JSON token from the source as a <see cref="T:System.Byte"/>[].
3158 </summary> 2615 </summary>
3159 <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param> 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>
3160 <returns>
3161 true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
3162 </returns>
3163 <exception cref="T:System.NullReferenceException">
3164 The <paramref name="obj"/> parameter is null.
3165 </exception>
3166 </member> 2617 </member>
3167 <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode"> 2618 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDouble">
3168 <summary> 2619 <summary>
3169 Serves as a hash function for a particular type. 2620 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.
3170 </summary> 2621 </summary>
3171 <returns> 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>
3172 A hash code for the current <see cref="T:System.Object"/>.
3173 </returns>
3174 </member> 2623 </member>
3175 <member name="M:Newtonsoft.Json.Linq.JValue.ToString"> 2624 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBoolean">
3176 <summary> 2625 <summary>
3177 Returns a <see cref="T:System.String"/> that represents this instance. 2626 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.
3178 </summary> 2627 </summary>
3179 <returns> 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>
3180 A <see cref="T:System.String"/> that represents this instance.
3181 </returns>
3182 </member> 2629 </member>
3183 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)"> 2630 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
3184 <summary> 2631 <summary>
3185 Returns a <see cref="T:System.String"/> that represents this instance. 2632 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.
3186 </summary> 2633 </summary>
3187 <param name="format">The format.</param> 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>
3188 <returns>
3189 A <see cref="T:System.String"/> that represents this instance.
3190 </returns>
3191 </member> 2635 </member>
3192 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)"> 2636 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTime">
3193 <summary> 2637 <summary>
3194 Returns a <see cref="T:System.String"/> that represents this instance. 2638 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/>.
3195 </summary> 2639 </summary>
3196 <param name="formatProvider">The format provider.</param> 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>
3197 <returns>
3198 A <see cref="T:System.String"/> that represents this instance.
3199 </returns>
3200 </member> 2641 </member>
3201 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)"> 2642 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
3202 <summary> 2643 <summary>
3203 Returns a <see cref="T:System.String"/> that represents this instance. 2644 Reads the next JSON token from the source as a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.
3204 </summary> 2645 </summary>
3205 <param name="format">The format.</param> 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>
3206 <param name="formatProvider">The format provider.</param>
3207 <returns>
3208 A <see cref="T:System.String"/> that represents this instance.
3209 </returns>
3210 </member> 2647 </member>
3211 <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)"> 2648 <member name="M:Newtonsoft.Json.JsonReader.Skip">
3212 <summary> 2649 <summary>
3213 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. 2650 Skips the children of the current token.
3214 </summary> 2651 </summary>
3215 <param name="parameter">The expression tree representation of the runtime value.</param>
3216 <returns>
3217 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
3218 </returns>
3219 </member> 2652 </member>
3220 <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)"> 2653 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
3221 <summary> 2654 <summary>
3222 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. 2655 Sets the current token.
3223 </summary> 2656 </summary>
3224 <param name="obj">An object to compare with this instance.</param> 2657 <param name="newToken">The new token.</param>
3225 <returns>
3226 A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
3227 Value
3228 Meaning
3229 Less than zero
3230 This instance is less than <paramref name="obj"/>.
3231 Zero
3232 This instance is equal to <paramref name="obj"/>.
3233 Greater than zero
3234 This instance is greater than <paramref name="obj"/>.
3235 </returns>
3236 <exception cref="T:System.ArgumentException">
3237 <paramref name="obj"/> is not the same type as this instance.
3238 </exception>
3239 </member> 2658 </member>
3240 <member name="P:Newtonsoft.Json.Linq.JValue.HasValues"> 2659 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
3241 <summary> 2660 <summary>
3242 Gets a value indicating whether this token has child tokens. 2661 Sets the current token and value.
3243 </summary> 2662 </summary>
3244 <value> 2663 <param name="newToken">The new token.</param>
3245 <c>true</c> if this token has child values; otherwise, <c>false</c>. 2664 <param name="value">The value.</param>
3246 </value>
3247 </member> 2665 </member>
3248 <member name="P:Newtonsoft.Json.Linq.JValue.Type"> 2666 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)">
3249 <summary> 2667 <summary>
3250 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 2668 Sets the current token and value.
3251 </summary> 2669 </summary>
3252 <value>The type.</value> 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>
3253 </member> 2673 </member>
3254 <member name="P:Newtonsoft.Json.Linq.JValue.Value"> 2674 <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
3255 <summary> 2675 <summary>
3256 Gets or sets the underlying token value. 2676 Sets the state based on current token type.
3257 </summary> 2677 </summary>
3258 <value>The underlying token value.</value>
3259 </member> 2678 </member>
3260 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)"> 2679 <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
3261 <summary> 2680 <summary>
3262 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object. 2681 Releases unmanaged and - optionally - managed resources.
3263 </summary> 2682 </summary>
3264 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param> 2683 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
3265 </member> 2684 </member>
3266 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)"> 2685 <member name="M:Newtonsoft.Json.JsonReader.Close">
3267 <summary> 2686 <summary>
3268 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class. 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.
3269 </summary> 2689 </summary>
3270 <param name="rawJson">The raw json.</param>
3271 </member> 2690 </member>
3272 <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)"> 2691 <member name="T:Newtonsoft.Json.JsonReaderException">
3273 <summary> 2692 <summary>
3274 Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token. 2693 The exception thrown when an error occurs while reading JSON text.
3275 </summary> 2694 </summary>
3276 <param name="reader">The reader.</param>
3277 <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
3278 </member> 2695 </member>
3279 <member name="T:Newtonsoft.Json.Required"> 2696 <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
3280 <summary> 2697 <summary>
3281 Indicating whether a property is required. 2698 Gets the line number indicating where the error occurred.
3282 </summary> 2699 </summary>
2700 <value>The line number indicating where the error occurred.</value>
3283 </member> 2701 </member>
3284 <member name="F:Newtonsoft.Json.Required.Default"> 2702 <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
3285 <summary> 2703 <summary>
3286 The property is not required. The default state. 2704 Gets the line position indicating where the error occurred.
3287 </summary> 2705 </summary>
2706 <value>The line position indicating where the error occurred.</value>
3288 </member> 2707 </member>
3289 <member name="F:Newtonsoft.Json.Required.AllowNull"> 2708 <member name="P:Newtonsoft.Json.JsonReaderException.Path">
3290 <summary> 2709 <summary>
3291 The property must be defined in JSON but can be a null value. 2710 Gets the path to the JSON where the error occurred.
3292 </summary> 2711 </summary>
2712 <value>The path to the JSON where the error occurred.</value>
3293 </member> 2713 </member>
3294 <member name="F:Newtonsoft.Json.Required.Always"> 2714 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
3295 <summary> 2715 <summary>
3296 The property must be defined in JSON and cannot be a null value. 2716 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3297 </summary> 2717 </summary>
3298 </member> 2718 </member>
3299 <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract"> 2719 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
3300 <summary> 2720 <summary>
3301 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2721 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
2722 with a specified error message.
3302 </summary> 2723 </summary>
2724 <param name="message">The error message that explains the reason for the exception.</param>
3303 </member> 2725 </member>
3304 <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)"> 2726 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
3305 <summary> 2727 <summary>
3306 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class. 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.
3307 </summary> 2730 </summary>
3308 <param name="underlyingType">The underlying type for the contract.</param> 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>
3309 </member> 2733 </member>
3310 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties"> 2734 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3311 <summary> 2735 <summary>
3312 Gets the object's properties. 2736 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3313 </summary> 2737 </summary>
3314 <value>The object's properties.</value> 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>
3315 </member> 2742 </member>
3316 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver"> 2743 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
3317 <summary> 2744 <summary>
3318 Gets or sets the property name resolver. 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.
3319 </summary> 2747 </summary>
3320 <value>The property name resolver.</value> 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>
3321 </member> 2753 </member>
3322 <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract"> 2754 <member name="T:Newtonsoft.Json.JsonRequiredAttribute">
3323 <summary> 2755 <summary>
3324 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2756 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member, and to require that the member has a value.
3325 </summary> 2757 </summary>
3326 </member> 2758 </member>
3327 <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)"> 2759 <member name="T:Newtonsoft.Json.JsonSerializationException">
3328 <summary> 2760 <summary>
3329 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class. 2761 The exception thrown when an error occurs during JSON serialization or deserialization.
3330 </summary> 2762 </summary>
3331 <param name="underlyingType">The underlying type for the contract.</param>
3332 </member> 2763 </member>
3333 <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator"> 2764 <member name="P:Newtonsoft.Json.JsonSerializationException.LineNumber">
3334 <summary> 2765 <summary>
3335 Gets or sets the ISerializable object constructor. 2766 Gets the line number indicating where the error occurred.
3336 </summary> 2767 </summary>
3337 <value>The ISerializable object constructor.</value> 2768 <value>The line number indicating where the error occurred.</value>
3338 </member> 2769 </member>
3339 <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract"> 2770 <member name="P:Newtonsoft.Json.JsonSerializationException.LinePosition">
3340 <summary> 2771 <summary>
3341 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2772 Gets the line position indicating where the error occurred.
3342 </summary> 2773 </summary>
2774 <value>The line position indicating where the error occurred.</value>
3343 </member> 2775 </member>
3344 <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)"> 2776 <member name="P:Newtonsoft.Json.JsonSerializationException.Path">
3345 <summary> 2777 <summary>
3346 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class. 2778 Gets the path to the JSON where the error occurred.
3347 </summary> 2779 </summary>
3348 <param name="underlyingType">The underlying type for the contract.</param> 2780 <value>The path to the JSON where the error occurred.</value>
3349 </member> 2781 </member>
3350 <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"> 2782 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
3351 <summary> 2783 <summary>
3352 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2784 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
3353 </summary> 2785 </summary>
3354 </member> 2786 </member>
3355 <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)"> 2787 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
3356 <summary> 2788 <summary>
3357 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class. 2789 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
2790 with a specified error message.
3358 </summary> 2791 </summary>
3359 <param name="underlyingType">The underlying type for the contract.</param> 2792 <param name="message">The error message that explains the reason for the exception.</param>
3360 </member> 2793 </member>
3361 <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider"> 2794 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
3362 <summary> 2795 <summary>
3363 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods. 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.
3364 </summary> 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>
3365 </member> 2801 </member>
3366 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)"> 2802 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3367 <summary> 2803 <summary>
3368 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class. 2804 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
3369 </summary> 2805 </summary>
3370 <param name="memberInfo">The member info.</param> 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>
3371 </member> 2810 </member>
3372 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)"> 2811 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.String,System.Int32,System.Int32,System.Exception)">
3373 <summary> 2812 <summary>
3374 Sets the value. 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.
3375 </summary> 2815 </summary>
3376 <param name="target">The target to set the value on.</param> 2816 <param name="message">The error message that explains the reason for the exception.</param>
3377 <param name="value">The value to set on the target.</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>
3378 </member> 2821 </member>
3379 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)"> 2822 <member name="T:Newtonsoft.Json.JsonSerializer">
3380 <summary> 2823 <summary>
3381 Gets the value. 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.
3382 </summary> 2826 </summary>
3383 <param name="target">The target to get the value from.</param>
3384 <returns>The value.</returns>
3385 </member> 2827 </member>
3386 <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs"> 2828 <member name="E:Newtonsoft.Json.JsonSerializer.Error">
3387 <summary> 2829 <summary>
3388 Provides data for the Error event. 2830 Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
3389 </summary> 2831 </summary>
3390 </member> 2832 </member>
3391 <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)"> 2833 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
3392 <summary> 2834 <summary>
3393 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class. 2835 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3394 </summary> 2836 </summary>
3395 <param name="currentObject">The current object.</param>
3396 <param name="errorContext">The error context.</param>
3397 </member> 2837 </member>
3398 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject"> 2838 <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
3399 <summary> 2839 <summary>
3400 Gets the current object the error event is being raised against. 2840 Gets or sets the <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/> used by the serializer when resolving type names.
3401 </summary> 2841 </summary>
3402 <value>The current object the error event is being raised against.</value>
3403 </member> 2842 </member>
3404 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext"> 2843 <member name="P:Newtonsoft.Json.JsonSerializer.SerializationBinder">
3405 <summary> 2844 <summary>
3406 Gets the error context. 2845 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ISerializationBinder"/> used by the serializer when resolving type names.
3407 </summary> 2846 </summary>
3408 <value>The error context.</value>
3409 </member> 2847 </member>
3410 <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor"> 2848 <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter">
3411 <summary> 2849 <summary>
3412 Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>. 2850 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
3413 </summary> 2851 </summary>
2852 <value>The trace writer.</value>
3414 </member> 2853 </member>
3415 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)"> 2854 <member name="P:Newtonsoft.Json.JsonSerializer.EqualityComparer">
3416 <summary> 2855 <summary>
3417 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class. 2856 Gets or sets the equality comparer used by the serializer when comparing references.
3418 </summary> 2857 </summary>
3419 <param name="name">The name.</param> 2858 <value>The equality comparer.</value>
3420 </member> 2859 </member>
3421 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)"> 2860 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
3422 <summary> 2861 <summary>
3423 When overridden in a derived class, returns whether resetting an object changes its value. 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" />.
3424 </summary> 2864 </summary>
3425 <returns> 2865 <remarks>
3426 true if resetting the component changes its value; otherwise, false. 2866 <see cref="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"/> should be used with caution when your application deserializes JSON from an external source.
3427 </returns> 2867 Incoming types should be validated with a custom <see cref="P:Newtonsoft.Json.JsonSerializer.SerializationBinder"/>
3428 <param name="component">The component to test for reset capability. 2868 when deserializing with a value other than <see cref="F:Newtonsoft.Json.TypeNameHandling.None"/>.
3429 </param> 2869 </remarks>
3430 </member> 2870 </member>
3431 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)"> 2871 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
3432 <summary> 2872 <summary>
3433 When overridden in a derived class, gets the current value of the property on a component. 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" />.
3434 </summary> 2875 </summary>
3435 <returns> 2876 <value>The type name assembly format.</value>
3436 The value of a property for a given component.
3437 </returns>
3438 <param name="component">The component with the property for which to retrieve the value.
3439 </param>
3440 </member> 2877 </member>
3441 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)"> 2878 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormatHandling">
3442 <summary> 2879 <summary>
3443 When overridden in a derived class, resets the value for this property of the component to the default value. 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" />.
3444 </summary> 2882 </summary>
3445 <param name="component">The component with the property value that is to be reset to the default value. 2883 <value>The type name assembly format.</value>
3446 </param>
3447 </member> 2884 </member>
3448 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)"> 2885 <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
3449 <summary> 2886 <summary>
3450 When overridden in a derived class, sets the value of the component to a different value. 2887 Gets or sets how object references are preserved by the serializer.
2888 The default value is <see cref="F:Newtonsoft.Json.PreserveReferencesHandling.None" />.
3451 </summary> 2889 </summary>
3452 <param name="component">The component with the property value that is to be set.
3453 </param><param name="value">The new value.
3454 </param>
3455 </member> 2890 </member>
3456 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)"> 2891 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
3457 <summary> 2892 <summary>
3458 When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. 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" />.
3459 </summary> 2895 </summary>
3460 <returns>
3461 true if the property should be persisted; otherwise, false.
3462 </returns>
3463 <param name="component">The component with the property to be examined for persistence.
3464 </param>
3465 </member> 2896 </member>
3466 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType"> 2897 <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
3467 <summary> 2898 <summary>
3468 When overridden in a derived class, gets the type of the component this property is bound to. 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" />.
3469 </summary> 2901 </summary>
3470 <returns>
3471 A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type.
3472 </returns>
3473 </member> 2902 </member>
3474 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly"> 2903 <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
3475 <summary> 2904 <summary>
3476 When overridden in a derived class, gets a value indicating whether this property is read-only. 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" />.
3477 </summary> 2907 </summary>
3478 <returns>
3479 true if the property is read-only; otherwise, false.
3480 </returns>
3481 </member> 2908 </member>
3482 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType"> 2909 <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
3483 <summary> 2910 <summary>
3484 When overridden in a derived class, gets the type of the property. 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" />.
3485 </summary> 2913 </summary>
3486 <returns>
3487 A <see cref="T:System.Type"/> that represents the type of the property.
3488 </returns>
3489 </member> 2914 </member>
3490 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode"> 2915 <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
3491 <summary> 2916 <summary>
3492 Gets the hash code for the name of the member. 2917 Gets or sets how objects are created during deserialization.
2918 The default value is <see cref="F:Newtonsoft.Json.ObjectCreationHandling.Auto" />.
3493 </summary> 2919 </summary>
3494 <value></value> 2920 <value>The object creation handling.</value>
3495 <returns>
3496 The hash code for the name of the member.
3497 </returns>
3498 </member> 2921 </member>
3499 <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver"> 2922 <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
3500 <summary> 2923 <summary>
3501 Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2924 Gets or sets how constructors are used during deserialization.
2925 The default value is <see cref="F:Newtonsoft.Json.ConstructorHandling.Default" />.
3502 </summary> 2926 </summary>
2927 <value>The constructor handling.</value>
3503 </member> 2928 </member>
3504 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)"> 2929 <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling">
3505 <summary> 2930 <summary>
3506 Resolves a reference to its object. 2931 Gets or sets how metadata properties are used during deserialization.
2932 The default value is <see cref="F:Newtonsoft.Json.MetadataPropertyHandling.Default" />.
3507 </summary> 2933 </summary>
3508 <param name="context">The serialization context.</param> 2934 <value>The metadata properties handling.</value>
3509 <param name="reference">The reference to resolve.</param>
3510 <returns>The object that</returns>
3511 </member> 2935 </member>
3512 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)"> 2936 <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
3513 <summary> 2937 <summary>
3514 Gets the reference for the sepecified object. 2938 Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
3515 </summary> 2939 </summary>
3516 <param name="context">The serialization context.</param> 2940 <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
3517 <param name="value">The object to get a reference for.</param>
3518 <returns>The reference to the object.</returns>
3519 </member> 2941 </member>
3520 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)"> 2942 <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
3521 <summary> 2943 <summary>
3522 Determines whether the specified object is referenced. 2944 Gets or sets the contract resolver used by the serializer when
2945 serializing .NET objects to JSON and vice versa.
3523 </summary> 2946 </summary>
3524 <param name="context">The serialization context.</param>
3525 <param name="value">The object to test for a reference.</param>
3526 <returns>
3527 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
3528 </returns>
3529 </member> 2947 </member>
3530 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)"> 2948 <member name="P:Newtonsoft.Json.JsonSerializer.Context">
3531 <summary> 2949 <summary>
3532 Adds a reference to the specified object. 2950 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
3533 </summary> 2951 </summary>
3534 <param name="context">The serialization context.</param> 2952 <value>The context.</value>
3535 <param name="reference">The reference.</param>
3536 <param name="value">The object to reference.</param>
3537 </member> 2953 </member>
3538 <member name="T:Newtonsoft.Json.PreserveReferencesHandling"> 2954 <member name="P:Newtonsoft.Json.JsonSerializer.Formatting">
3539 <summary> 2955 <summary>
3540 Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 2956 Indicates how JSON text output is formatted.
3541 Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. 2957 The default value is <see cref="F:Newtonsoft.Json.Formatting.None" />.
3542 </summary> 2958 </summary>
3543 <example>
3544 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="PreservingObjectReferencesOn" title="Preserve Object References"/>
3545 </example>
3546 </member> 2959 </member>
3547 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None"> 2960 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling">
3548 <summary> 2961 <summary>
3549 Do not preserve references when serializing types. 2962 Gets or sets how dates are written to JSON text.
2963 The default value is <see cref="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat" />.
3550 </summary> 2964 </summary>
3551 </member> 2965 </member>
3552 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects"> 2966 <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling">
3553 <summary> 2967 <summary>
3554 Preserve references when serializing into a JSON object structure. 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" />.
3555 </summary> 2970 </summary>
3556 </member> 2971 </member>
3557 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays"> 2972 <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling">
3558 <summary> 2973 <summary>
3559 Preserve references when serializing into a JSON array structure. 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" />.
3560 </summary> 2976 </summary>
3561 </member> 2977 </member>
3562 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All"> 2978 <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling">
3563 <summary> 2979 <summary>
3564 Preserve references when serializing. 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" />.
3565 </summary> 2982 </summary>
3566 </member> 2983 </member>
3567 <member name="T:Newtonsoft.Json.JsonArrayAttribute"> 2984 <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling">
3568 <summary> 2985 <summary>
3569 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection. 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" />.
3570 </summary> 2990 </summary>
3571 </member> 2991 </member>
3572 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor"> 2992 <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling">
3573 <summary> 2993 <summary>
3574 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class. 2994 Gets or sets how strings are escaped when writing JSON text.
2995 The default value is <see cref="F:Newtonsoft.Json.StringEscapeHandling.Default" />.
3575 </summary> 2996 </summary>
3576 </member> 2997 </member>
3577 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)"> 2998 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString">
3578 <summary> 2999 <summary>
3579 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items 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>.
3580 </summary> 3003 </summary>
3581 <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
3582 </member> 3004 </member>
3583 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)"> 3005 <member name="P:Newtonsoft.Json.JsonSerializer.Culture">
3584 <summary> 3006 <summary>
3585 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id. 3007 Gets or sets the culture used when reading JSON.
3008 The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3586 </summary> 3009 </summary>
3587 <param name="id">The container Id.</param>
3588 </member> 3010 </member>
3589 <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems"> 3011 <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth">
3590 <summary> 3012 <summary>
3591 Gets or sets a value indicating whether null items are allowed in the collection. 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>.
3592 </summary> 3016 </summary>
3593 <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
3594 </member> 3017 </member>
3595 <member name="T:Newtonsoft.Json.DefaultValueHandling"> 3018 <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent">
3596 <summary> 3019 <summary>
3597 Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 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>.
3598 </summary> 3022 </summary>
3599 <example> 3023 <value>
3600 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class"/> 3024 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
3601 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example"/> 3025 </value>
3602 </example>
3603 </member> 3026 </member>
3604 <member name="F:Newtonsoft.Json.DefaultValueHandling.Include"> 3027 <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
3605 <summary> 3028 <summary>
3606 Include members where the member value is the same as the member's default value when serializing objects. 3029 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
3607 Included members are written to JSON. Has no effect when deserializing.
3608 </summary> 3030 </summary>
3609 </member> 3031 </member>
3610 <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore"> 3032 <member name="M:Newtonsoft.Json.JsonSerializer.Create">
3611 <summary> 3033 <summary>
3612 Ignore members where the member value is the same as the member's default value when serializing objects 3034 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3613 so that is is not written to JSON. 3035 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings
3614 This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers, 3036 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3615 decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
3616 placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
3617 </summary> 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>
3618 </member> 3043 </member>
3619 <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate"> 3044 <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
3620 <summary> 3045 <summary>
3621 Members with a default value but no JSON will be set to their default value when deserializing. 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"/>.
3622 </summary> 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>
3623 </member> 3056 </member>
3624 <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate"> 3057 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault">
3625 <summary> 3058 <summary>
3626 Ignore members where the member value is the same as the member's default value when serializing objects 3059 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance.
3627 and sets members to their default value when deserializing. 3060 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings
3061 from <see cref="P:Newtonsoft.Json.JsonConvert.DefaultSettings"/>.
3628 </summary> 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>
3629 </member> 3068 </member>
3630 <member name="T:Newtonsoft.Json.JsonConverterAttribute"> 3069 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)">
3631 <summary> 3070 <summary>
3632 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class. 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"/>.
3633 </summary> 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>
3634 </member> 3081 </member>
3635 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)"> 3082 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
3636 <summary> 3083 <summary>
3637 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class. 3084 Populates the JSON values onto the target object.
3638 </summary> 3085 </summary>
3639 <param name="converterType">Type of the converter.</param> 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>
3640 </member> 3088 </member>
3641 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type,System.Object[])"> 3089 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
3642 <summary> 3090 <summary>
3643 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class. 3091 Populates the JSON values onto the target object.
3644 </summary> 3092 </summary>
3645 <param name="converterType">Type of the converter.</param> 3093 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to read values from.</param>
3646 <param name="converterParameters">Parameter list to use when constructing the JsonConverter. Can be null.</param> 3094 <param name="target">The target object to populate values onto.</param>
3647 </member> 3095 </member>
3648 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"> 3096 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
3649 <summary> 3097 <summary>
3650 Gets the type of the converter. 3098 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
3651 </summary> 3099 </summary>
3652 <value>The type of the converter.</value> 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>
3653 </member> 3102 </member>
3654 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterParameters"> 3103 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
3655 <summary> 3104 <summary>
3656 The parameter list to use when constructing the JsonConverter described by ConverterType. 3105 Deserializes the JSON structure contained by the specified <see cref="T:System.IO.TextReader"/>
3657 If null, the default constructor is used. 3106 into an instance of the specified type.
3658 </summary> 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>
3659 </member> 3111 </member>
3660 <member name="T:Newtonsoft.Json.JsonObjectAttribute"> 3112 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
3661 <summary> 3113 <summary>
3662 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object. 3114 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3115 into an instance of the specified type.
3663 </summary> 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>
3664 </member> 3120 </member>
3665 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor"> 3121 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
3666 <summary> 3122 <summary>
3667 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class. 3123 Deserializes the JSON structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
3124 into an instance of the specified type.
3668 </summary> 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>
3669 </member> 3129 </member>
3670 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)"> 3130 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
3671 <summary> 3131 <summary>
3672 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization. 3132 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3133 using the specified <see cref="T:System.IO.TextWriter"/>.
3673 </summary> 3134 </summary>
3674 <param name="memberSerialization">The member serialization.</param> 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>
3675 </member> 3137 </member>
3676 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)"> 3138 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)">
3677 <summary> 3139 <summary>
3678 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id. 3140 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3141 using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3679 </summary> 3142 </summary>
3680 <param name="id">The container Id.</param> 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>
3681 </member> 3150 </member>
3682 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization"> 3151 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)">
3683 <summary> 3152 <summary>
3684 Gets or sets the member serialization. 3153 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3154 using the specified <see cref="T:System.IO.TextWriter"/>.
3685 </summary> 3155 </summary>
3686 <value>The member serialization.</value> 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>
3687 </member> 3163 </member>
3688 <member name="P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired"> 3164 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
3689 <summary> 3165 <summary>
3690 Gets or sets a value that indicates whether the object's properties are required. 3166 Serializes the specified <see cref="T:System.Object"/> and writes the JSON structure
3167 using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
3691 </summary> 3168 </summary>
3692 <value> 3169 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the JSON structure.</param>
3693 A value indicating whether the object's properties are required. 3170 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
3694 </value>
3695 </member> 3171 </member>
3696 <member name="T:Newtonsoft.Json.JsonSerializerSettings"> 3172 <member name="T:Newtonsoft.Json.JsonSerializerSettings">
3697 <summary> 3173 <summary>
3698 Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object. 3174 Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
3699 </summary> 3175 </summary>
3700 </member> 3176 </member>
3701 <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3702 <summary>
3703 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3704 </summary>
3705 </member>
3706 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling"> 3177 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
3707 <summary> 3178 <summary>
3708 Gets or sets how reference loops (e.g. a class referencing itself) is handled. 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" />.
3709 </summary> 3181 </summary>
3710 <value>Reference loop handling.</value> 3182 <value>Reference loop handling.</value>
3711 </member> 3183 </member>
3712 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling"> 3184 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
3713 <summary> 3185 <summary>
3714 Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. 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" />.
3715 </summary> 3188 </summary>
3716 <value>Missing member handling.</value> 3189 <value>Missing member handling.</value>
3717 </member> 3190 </member>
3718 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling"> 3191 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
3719 <summary> 3192 <summary>
3720 Gets or sets how objects are created during deserialization. 3193 Gets or sets how objects are created during deserialization.
3194 The default value is <see cref="F:Newtonsoft.Json.ObjectCreationHandling.Auto" />.
3721 </summary> 3195 </summary>
3722 <value>The object creation handling.</value> 3196 <value>The object creation handling.</value>
3723 </member> 3197 </member>
3724 <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling"> 3198 <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
3725 <summary> 3199 <summary>
3726 Gets or sets how null values are handled during serialization and deserialization. 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" />.
3727 </summary> 3202 </summary>
3728 <value>Null value handling.</value> 3203 <value>Null value handling.</value>
3729 </member> 3204 </member>
3730 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling"> 3205 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
3731 <summary> 3206 <summary>
3732 Gets or sets how null default are handled during serialization and deserialization. 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" />.
3733 </summary> 3209 </summary>
3734 <value>The default value handling.</value> 3210 <value>The default value handling.</value>
3735 </member> 3211 </member>
3736 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters"> 3212 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
3737 <summary> 3213 <summary>
3738 Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization. 3214 Gets or sets a <see cref="T:Newtonsoft.Json.JsonConverter"/> collection that will be used during serialization.
3739 </summary> 3215 </summary>
3740 <value>The converters.</value> 3216 <value>The converters.</value>
3741 </member> 3217 </member>
3742 <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling"> 3218 <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
3743 <summary> 3219 <summary>
3744 Gets or sets how object references are preserved by the serializer. 3220 Gets or sets how object references are preserved by the serializer.
3221 The default value is <see cref="F:Newtonsoft.Json.PreserveReferencesHandling.None" />.
3745 </summary> 3222 </summary>
3746 <value>The preserve references handling.</value> 3223 <value>The preserve references handling.</value>
3747 </member> 3224 </member>
3748 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"> 3225 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
3749 <summary> 3226 <summary>
3750 Gets or sets how type name writing and reading is handled by the serializer. 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" />.
3751 </summary> 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>
3752 <value>The type name handling.</value> 3235 <value>The type name handling.</value>
3753 </member> 3236 </member>
3754 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling"> 3237 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MetadataPropertyHandling">
3755 <summary> 3238 <summary>
3756 Gets or sets how metadata properties are used during deserialization. 3239 Gets or sets how metadata properties are used during deserialization.
3240 The default value is <see cref="F:Newtonsoft.Json.MetadataPropertyHandling.Default" />.
3757 </summary> 3241 </summary>
3758 <value>The metadata properties handling.</value> 3242 <value>The metadata properties handling.</value>
3759 </member> 3243 </member>
3760 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat"> 3244 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
3761 <summary> 3245 <summary>
3762 Gets or sets how a type name assembly is written and resolved by the serializer. 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" />.
3763 </summary> 3255 </summary>
3764 <value>The type name assembly format.</value> 3256 <value>The type name assembly format.</value>
3765 </member> 3257 </member>
3766 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling"> 3258 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
3767 <summary> 3259 <summary>
3768 Gets or sets how constructors are used during deserialization. 3260 Gets or sets how constructors are used during deserialization.
3261 The default value is <see cref="F:Newtonsoft.Json.ConstructorHandling.Default" />.
3769 </summary> 3262 </summary>
3770 <value>The constructor handling.</value> 3263 <value>The constructor handling.</value>
3771 </member> 3264 </member>
@@ -3776,12 +3269,24 @@
3776 </summary> 3269 </summary>
3777 <value>The contract resolver.</value> 3270 <value>The contract resolver.</value>
3778 </member> 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>
3779 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver"> 3278 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
3780 <summary> 3279 <summary>
3781 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. 3280 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
3782 </summary> 3281 </summary>
3783 <value>The reference resolver.</value> 3282 <value>The reference resolver.</value>
3784 </member> 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>
3785 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter"> 3290 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter">
3786 <summary> 3291 <summary>
3787 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages. 3292 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages.
@@ -3790,7 +3295,13 @@
3790 </member> 3295 </member>
3791 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder"> 3296 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
3792 <summary> 3297 <summary>
3793 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names. 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.
3794 </summary> 3305 </summary>
3795 <value>The binder.</value> 3306 <value>The binder.</value>
3796 </member> 3307 </member>
@@ -3808,591 +3319,914 @@
3808 </member> 3319 </member>
3809 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString"> 3320 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatString">
3810 <summary> 3321 <summary>
3811 Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text. 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>.
3812 </summary> 3325 </summary>
3813 </member> 3326 </member>
3814 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth"> 3327 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth">
3815 <summary> 3328 <summary>
3816 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>. 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>.
3817 </summary> 3332 </summary>
3818 </member> 3333 </member>
3819 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting"> 3334 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Formatting">
3820 <summary> 3335 <summary>
3821 Indicates how JSON text output is formatted. 3336 Indicates how JSON text output is formatted.
3337 The default value is <see cref="F:Newtonsoft.Json.Formatting.None" />.
3822 </summary> 3338 </summary>
3823 </member> 3339 </member>
3824 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling"> 3340 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling">
3825 <summary> 3341 <summary>
3826 Get or set how dates are written to JSON text. 3342 Gets or sets how dates are written to JSON text.
3343 The default value is <see cref="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat" />.
3827 </summary> 3344 </summary>
3828 </member> 3345 </member>
3829 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling"> 3346 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling">
3830 <summary> 3347 <summary>
3831 Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization. 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" />.
3832 </summary> 3350 </summary>
3833 </member> 3351 </member>
3834 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling"> 3352 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling">
3835 <summary> 3353 <summary>
3836 Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. 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" />.
3837 </summary> 3356 </summary>
3838 </member> 3357 </member>
3839 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling"> 3358 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatFormatHandling">
3840 <summary> 3359 <summary>
3841 Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, 3360 Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
3842 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>, 3361 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
3843 are written as JSON. 3362 are written as JSON.
3363 The default value is <see cref="F:Newtonsoft.Json.FloatFormatHandling.String" />.
3844 </summary> 3364 </summary>
3845 </member> 3365 </member>
3846 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling"> 3366 <member name="P:Newtonsoft.Json.JsonSerializerSettings.FloatParseHandling">
3847 <summary> 3367 <summary>
3848 Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. 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" />.
3849 </summary> 3370 </summary>
3850 </member> 3371 </member>
3851 <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling"> 3372 <member name="P:Newtonsoft.Json.JsonSerializerSettings.StringEscapeHandling">
3852 <summary> 3373 <summary>
3853 Get or set how strings are escaped when writing JSON text. 3374 Gets or sets how strings are escaped when writing JSON text.
3375 The default value is <see cref="F:Newtonsoft.Json.StringEscapeHandling.Default" />.
3854 </summary> 3376 </summary>
3855 </member> 3377 </member>
3856 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture"> 3378 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Culture">
3857 <summary> 3379 <summary>
3858 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. 3380 Gets or sets the culture used when reading JSON.
3381 The default value is <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
3859 </summary> 3382 </summary>
3860 </member> 3383 </member>
3861 <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent"> 3384 <member name="P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent">
3862 <summary> 3385 <summary>
3863 Gets a value indicating whether there will be a check for additional content after deserializing an object. 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>.
3864 </summary> 3388 </summary>
3865 <value> 3389 <value>
3866 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>. 3390 <c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.
3867 </value> 3391 </value>
3868 </member> 3392 </member>
3869 <member name="T:Newtonsoft.Json.JsonValidatingReader"> 3393 <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
3870 <summary> 3394 <summary>
3871 Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation. 3395 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
3872 </summary> 3396 </summary>
3873 </member> 3397 </member>
3874 <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)"> 3398 <member name="T:Newtonsoft.Json.JsonTextReader">
3875 <summary> 3399 <summary>
3876 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that 3400 Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
3877 validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
3878 </summary> 3401 </summary>
3879 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
3880 </member> 3402 </member>
3881 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32"> 3403 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsync(System.Threading.CancellationToken)">
3882 <summary> 3404 <summary>
3883 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3405 Asynchronously reads the next JSON token from the source.
3884 </summary> 3406 </summary>
3885 <returns>A <see cref="T:System.Nullable`1"/>.</returns> 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>
3886 </member> 3412 </member>
3887 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes"> 3413 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
3888 <summary> 3414 <summary>
3889 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. 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"/>.
3890 </summary> 3512 </summary>
3891 <returns> 3513 <returns>
3892 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. 3514 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
3893 </returns> 3515 </returns>
3894 </member> 3516 </member>
3895 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal"> 3517 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3896 <summary> 3518 <summary>
3897 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 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"/>.
3898 </summary> 3520 </summary>
3899 <returns>A <see cref="T:System.Nullable`1"/>.</returns> 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>
3900 </member> 3522 </member>
3901 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString"> 3523 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime">
3902 <summary> 3524 <summary>
3903 Reads the next JSON token from the stream as a <see cref="T:System.String"/>. 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"/>.
3904 </summary> 3526 </summary>
3905 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
3906 </member> 3528 </member>
3907 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime"> 3529 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString">
3908 <summary> 3530 <summary>
3909 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3531 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.String"/>.
3910 </summary> 3532 </summary>
3911 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> 3533 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
3912 </member> 3534 </member>
3913 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset"> 3535 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3914 <summary> 3536 <summary>
3915 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3537 Reads the next JSON token from the underlying <see cref="T:System.IO.TextReader"/> as a <see cref="T:System.Byte"/>[].
3916 </summary> 3538 </summary>
3917 <returns>A <see cref="T:System.Nullable`1"/>.</returns> 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>
3918 </member> 3540 </member>
3919 <member name="M:Newtonsoft.Json.JsonValidatingReader.Read"> 3541 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBoolean">
3920 <summary> 3542 <summary>
3921 Reads the next JSON token from the stream. 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"/>.
3922 </summary> 3544 </summary>
3923 <returns> 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>
3924 true if the next token was read successfully; false if there are no more tokens to read.
3925 </returns>
3926 </member> 3546 </member>
3927 <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler"> 3547 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3928 <summary> 3548 <summary>
3929 Sets an event handler for receiving schema validation errors. 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"/>.
3930 </summary> 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>
3931 </member> 3552 </member>
3932 <member name="P:Newtonsoft.Json.JsonValidatingReader.Value"> 3553 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3933 <summary> 3554 <summary>
3934 Gets the text value of the current JSON token. 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"/>.
3935 </summary> 3556 </summary>
3936 <value></value> 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>
3937 </member> 3558 </member>
3938 <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth"> 3559 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDouble">
3939 <summary> 3560 <summary>
3940 Gets the depth of the current token in the JSON document. 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"/>.
3941 </summary> 3562 </summary>
3942 <value>The depth of the current token in the JSON document.</value> 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>
3943 </member> 3564 </member>
3944 <member name="P:Newtonsoft.Json.JsonValidatingReader.Path"> 3565 <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3945 <summary> 3566 <summary>
3946 Gets the path of the current JSON token. 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.
3947 </summary> 3569 </summary>
3948 </member> 3570 </member>
3949 <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar"> 3571 <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3950 <summary> 3572 <summary>
3951 Gets the quotation mark character used to enclose the value of a string. 3573 Gets a value indicating whether the class can return line information.
3952 </summary> 3574 </summary>
3953 <value></value> 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>
3954 </member> 3578 </member>
3955 <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType"> 3579 <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3956 <summary> 3580 <summary>
3957 Gets the type of the current JSON token. 3581 Gets the current line number.
3958 </summary> 3582 </summary>
3959 <value></value> 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>
3960 </member> 3586 </member>
3961 <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType"> 3587 <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3962 <summary> 3588 <summary>
3963 Gets the Common Language Runtime (CLR) type for the current JSON token. 3589 Gets the current line position.
3964 </summary> 3590 </summary>
3965 <value></value> 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>
3966 </member> 3594 </member>
3967 <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema"> 3595 <member name="T:Newtonsoft.Json.JsonTextWriter">
3968 <summary> 3596 <summary>
3969 Gets or sets the schema. 3597 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
3970 </summary> 3598 </summary>
3971 <value>The schema.</value>
3972 </member> 3599 </member>
3973 <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader"> 3600 <member name="M:Newtonsoft.Json.JsonTextWriter.FlushAsync(System.Threading.CancellationToken)">
3974 <summary> 3601 <summary>
3975 Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>. 3602 Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
3976 </summary> 3603 </summary>
3977 <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value> 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>
3978 </member> 3608 </member>
3979 <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"> 3609 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
3980 <summary> 3610 <summary>
3981 Compares tokens to determine whether they are equal. 3611 Asynchronously writes the JSON value delimiter.
3982 </summary> 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>
3983 </member> 3617 </member>
3984 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)"> 3618 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
3985 <summary> 3619 <summary>
3986 Determines whether the specified objects are equal. 3620 Asynchronously writes the specified end token.
3987 </summary> 3621 </summary>
3988 <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> 3622 <param name="token">The end token to write.</param>
3989 <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> 3623 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3990 <returns> 3624 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
3991 true if the specified objects are equal; otherwise, false. 3625 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3992 </returns> 3626 execute synchronously, returning an already-completed task.</remarks>
3993 </member> 3627 </member>
3994 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)"> 3628 <member name="M:Newtonsoft.Json.JsonTextWriter.CloseAsync(System.Threading.CancellationToken)">
3995 <summary> 3629 <summary>
3996 Returns a hash code for the specified object. 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.
3997 </summary> 3632 </summary>
3998 <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param> 3633 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
3999 <returns>A hash code for the specified object.</returns> 3634 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4000 <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception> 3635 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
3636 execute synchronously, returning an already-completed task.</remarks>
4001 </member> 3637 </member>
4002 <member name="T:Newtonsoft.Json.MemberSerialization"> 3638 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndAsync(System.Threading.CancellationToken)">
4003 <summary> 3639 <summary>
4004 Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 3640 Asynchronously writes the end of the current JSON object or array.
4005 </summary> 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>
4006 </member> 3646 </member>
4007 <member name="F:Newtonsoft.Json.MemberSerialization.OptOut"> 3647 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentAsync(System.Threading.CancellationToken)">
4008 <summary> 3648 <summary>
4009 All public members are serialized by default. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>. 3649 Asynchronously writes indent characters.
4010 This is the default member serialization mode.
4011 </summary> 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>
4012 </member> 3655 </member>
4013 <member name="F:Newtonsoft.Json.MemberSerialization.OptIn"> 3656 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
4014 <summary> 3657 <summary>
4015 Only members must be marked with <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> or <see cref="T:System.Runtime.Serialization.DataMemberAttribute"/> are serialized. 3658 Asynchronously writes an indent space.
4016 This member serialization mode can also be set by marking the class with <see cref="T:System.Runtime.Serialization.DataContractAttribute"/>.
4017 </summary> 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>
4018 </member> 3664 </member>
4019 <member name="F:Newtonsoft.Json.MemberSerialization.Fields"> 3665 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
4020 <summary> 3666 <summary>
4021 All public and private fields are serialized. Members can be excluded using <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/> or <see cref="T:System.NonSerializedAttribute"/>. 3667 Asynchronously writes raw JSON without changing the writer's state.
4022 This member serialization mode can also be set by marking the class with <see cref="T:System.SerializableAttribute"/>
4023 and setting IgnoreSerializableAttribute on <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> to false.
4024 </summary> 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>
4025 </member> 3674 </member>
4026 <member name="T:Newtonsoft.Json.ObjectCreationHandling"> 3675 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNullAsync(System.Threading.CancellationToken)">
4027 <summary> 3676 <summary>
4028 Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 3677 Asynchronously writes a null value.
4029 </summary> 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>
4030 </member> 3683 </member>
4031 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto"> 3684 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
4032 <summary> 3685 <summary>
4033 Reuse existing objects, create new objects when needed. 3686 Asynchronously writes the property name of a name/value pair of a JSON object.
4034 </summary> 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>
4035 </member> 3693 </member>
4036 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse"> 3694 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
4037 <summary> 3695 <summary>
4038 Only reuse existing objects. 3696 Asynchronously writes the property name of a name/value pair of a JSON object.
4039 </summary> 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>
4040 </member> 3704 </member>
4041 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace"> 3705 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
4042 <summary> 3706 <summary>
4043 Always create new objects. 3707 Asynchronously writes the beginning of a JSON array.
4044 </summary> 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>
4045 </member> 3713 </member>
4046 <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter"> 3714 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
4047 <summary> 3715 <summary>
4048 Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). 3716 Asynchronously writes the beginning of a JSON object.
4049 </summary> 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>
4050 </member> 3722 </member>
4051 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 3723 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
4052 <summary> 3724 <summary>
4053 Writes the JSON representation of the object. 3725 Asynchronously writes the start of a constructor with the given name.
4054 </summary> 3726 </summary>
4055 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> 3727 <param name="name">The name of the constructor.</param>
4056 <param name="value">The value.</param> 3728 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4057 <param name="serializer">The calling serializer.</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>
4058 </member> 3732 </member>
4059 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 3733 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
4060 <summary> 3734 <summary>
4061 Reads the JSON representation of the object. 3735 Asynchronously writes an undefined value.
4062 </summary> 3736 </summary>
4063 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> 3737 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4064 <param name="objectType">Type of the object.</param> 3738 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4065 <param name="existingValue">The existing value of object being read.</param> 3739 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4066 <param name="serializer">The calling serializer.</param> 3740 execute synchronously, returning an already-completed task.</remarks>
4067 <returns>The object value.</returns>
4068 </member> 3741 </member>
4069 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles"> 3742 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
4070 <summary> 3743 <summary>
4071 Gets or sets the date time styles used when converting a date to and from JSON. 3744 Asynchronously writes the given white space.
4072 </summary> 3745 </summary>
4073 <value>The date time styles used when converting a date to and from JSON.</value> 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>
4074 </member> 3751 </member>
4075 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat"> 3752 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
4076 <summary> 3753 <summary>
4077 Gets or sets the date time format used when converting a date to and from JSON. 3754 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
4078 </summary> 3755 </summary>
4079 <value>The date time format used when converting a date to and from JSON.</value> 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>
4080 </member> 3761 </member>
4081 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture"> 3762 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
4082 <summary> 3763 <summary>
4083 Gets or sets the culture used when converting a date to and from JSON. 3764 Asynchronously writes a <see cref="T:System.Boolean"/> value.
4084 </summary> 3765 </summary>
4085 <value>The culture used when converting a date to and from JSON.</value> 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>
4086 </member> 3771 </member>
4087 <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter"> 3772 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
4088 <summary> 3773 <summary>
4089 Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)). 3774 Asynchronously writes a <see cref="T:System.Byte"/> value.
4090 </summary> 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>
4091 </member> 3781 </member>
4092 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 3782 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
4093 <summary> 3783 <summary>
4094 Writes the JSON representation of the object. 3784 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
4095 </summary> 3785 </summary>
4096 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> 3786 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
4097 <param name="value">The value.</param> 3787 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4098 <param name="serializer">The calling serializer.</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>
4099 </member> 3791 </member>
4100 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 3792 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
4101 <summary> 3793 <summary>
4102 Reads the JSON representation of the object. 3794 Asynchronously writes a <see cref="T:System.Byte"/>[] value.
4103 </summary> 3795 </summary>
4104 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> 3796 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4105 <param name="objectType">Type of the object.</param> 3797 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4106 <param name="existingValue">The existing property value of the JSON that is being converted.</param> 3798 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4107 <param name="serializer">The calling serializer.</param> 3799 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4108 <returns>The object value.</returns> 3800 execute synchronously, returning an already-completed task.</remarks>
4109 </member> 3801 </member>
4110 <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter"> 3802 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
4111 <summary> 3803 <summary>
4112 Converts XML to and from JSON. 3804 Asynchronously writes a <see cref="T:System.Char"/> value.
4113 </summary> 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>
4114 </member> 3811 </member>
4115 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> 3812 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
4116 <summary> 3813 <summary>
4117 Writes the JSON representation of the object. 3814 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
4118 </summary> 3815 </summary>
4119 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> 3816 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
4120 <param name="serializer">The calling serializer.</param> 3817 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4121 <param name="value">The value.</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>
4122 </member> 3821 </member>
4123 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> 3822 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
4124 <summary> 3823 <summary>
4125 Reads the JSON representation of the object. 3824 Asynchronously writes a <see cref="T:System.DateTime"/> value.
4126 </summary> 3825 </summary>
4127 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> 3826 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
4128 <param name="objectType">Type of the object.</param> 3827 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4129 <param name="existingValue">The existing value of object being read.</param> 3828 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4130 <param name="serializer">The calling serializer.</param> 3829 <remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
4131 <returns>The object value.</returns> 3830 execute synchronously, returning an already-completed task.</remarks>
4132 </member> 3831 </member>
4133 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)"> 3832 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
4134 <summary> 3833 <summary>
4135 Checks if the attributeName is a namespace attribute. 3834 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
4136 </summary> 3835 </summary>
4137 <param name="attributeName">Attribute name to test.</param> 3836 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
4138 <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param> 3837 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4139 <returns>True if attribute name is for a namespace attribute, otherwise false.</returns> 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>
4140 </member> 3841 </member>
4141 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)"> 3842 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
4142 <summary> 3843 <summary>
4143 Determines whether this instance can convert the specified value type. 3844 Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
4144 </summary> 3845 </summary>
4145 <param name="valueType">Type of the value.</param> 3846 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
4146 <returns> 3847 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4147 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. 3848 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4148 </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>
4149 </member> 3851 </member>
4150 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName"> 3852 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
4151 <summary> 3853 <summary>
4152 Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. 3854 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
4153 </summary> 3855 </summary>
4154 <value>The name of the deserialize root element.</value> 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>
4155 </member> 3861 </member>
4156 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute"> 3862 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
4157 <summary> 3863 <summary>
4158 Gets or sets a flag to indicate whether to write the Json.NET array attribute. 3864 Asynchronously writes a <see cref="T:System.Decimal"/> value.
4159 This attribute helps preserve arrays when converting the written XML back to JSON.
4160 </summary> 3865 </summary>
4161 <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value> 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>
4162 </member> 3871 </member>
4163 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject"> 3872 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
4164 <summary> 3873 <summary>
4165 Gets or sets a value indicating whether to write the root JSON object. 3874 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
4166 </summary> 3875 </summary>
4167 <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value> 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>
4168 </member> 3881 </member>
4169 <member name="T:Newtonsoft.Json.JsonTextReader"> 3882 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
4170 <summary> 3883 <summary>
4171 Represents a reader that provides fast, non-cached, forward-only access to JSON text data. 3884 Asynchronously writes a <see cref="T:System.Double"/> value.
4172 </summary> 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>
4173 </member> 3891 </member>
4174 <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)"> 3892 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
4175 <summary> 3893 <summary>
4176 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>. 3894 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
4177 </summary> 3895 </summary>
4178 <param name="reader">The <c>TextReader</c> containing the XML data to read.</param> 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>
4179 </member> 3901 </member>
4180 <member name="M:Newtonsoft.Json.JsonTextReader.Read"> 3902 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
4181 <summary> 3903 <summary>
4182 Reads the next JSON token from the stream. 3904 Asynchronously writes a <see cref="T:System.Single"/> value.
4183 </summary> 3905 </summary>
4184 <returns> 3906 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
4185 true if the next token was read successfully; false if there are no more tokens to read. 3907 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4186 </returns> 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>
4187 </member> 3911 </member>
4188 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes"> 3912 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
4189 <summary> 3913 <summary>
4190 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. 3914 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
4191 </summary> 3915 </summary>
4192 <returns> 3916 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
4193 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array. 3917 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4194 </returns> 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>
4195 </member> 3921 </member>
4196 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal"> 3922 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
4197 <summary> 3923 <summary>
4198 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3924 Asynchronously writes a <see cref="T:System.Guid"/> value.
4199 </summary> 3925 </summary>
4200 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
4201 </member> 3931 </member>
4202 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32"> 3932 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
4203 <summary> 3933 <summary>
4204 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3934 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
4205 </summary> 3935 </summary>
4206 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
4207 </member> 3941 </member>
4208 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsString"> 3942 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
4209 <summary> 3943 <summary>
4210 Reads the next JSON token from the stream as a <see cref="T:System.String"/>. 3944 Asynchronously writes a <see cref="T:System.Int32"/> value.
4211 </summary> 3945 </summary>
4212 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
4213 </member> 3951 </member>
4214 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime"> 3952 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
4215 <summary> 3953 <summary>
4216 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3954 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
4217 </summary> 3955 </summary>
4218 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
4219 </member> 3961 </member>
4220 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset"> 3962 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
4221 <summary> 3963 <summary>
4222 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 3964 Asynchronously writes a <see cref="T:System.Int64"/> value.
4223 </summary> 3965 </summary>
4224 <returns>A <see cref="T:System.DateTimeOffset"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
4225 </member> 3971 </member>
4226 <member name="M:Newtonsoft.Json.JsonTextReader.Close"> 3972 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
4227 <summary> 3973 <summary>
4228 Changes the state to closed. 3974 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
4229 </summary> 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>
4230 </member> 3981 </member>
4231 <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"> 3982 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
4232 <summary> 3983 <summary>
4233 Gets a value indicating whether the class can return line information. 3984 Asynchronously writes a <see cref="T:System.Object"/> value.
4234 </summary> 3985 </summary>
4235 <returns> 3986 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
4236 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>. 3987 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4237 </returns> 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>
4238 </member> 3991 </member>
4239 <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber"> 3992 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
4240 <summary> 3993 <summary>
4241 Gets the current line number. 3994 Asynchronously writes a <see cref="T:System.SByte"/> value.
4242 </summary> 3995 </summary>
4243 <value> 3996 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
4244 The current line number or 0 if no line information is available (for example, HasLineInfo returns false). 3997 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4245 </value> 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>
4246 </member> 4001 </member>
4247 <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition"> 4002 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
4248 <summary> 4003 <summary>
4249 Gets the current line position. 4004 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
4250 </summary> 4005 </summary>
4251 <value> 4006 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
4252 The current line position or 0 if no line information is available (for example, HasLineInfo returns false). 4007 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4253 </value> 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>
4254 </member> 4011 </member>
4255 <member name="T:Newtonsoft.Json.JsonPropertyAttribute"> 4012 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
4256 <summary> 4013 <summary>
4257 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name. 4014 Asynchronously writes a <see cref="T:System.Int16"/> value.
4258 </summary> 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>
4259 </member> 4021 </member>
4260 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor"> 4022 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
4261 <summary> 4023 <summary>
4262 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class. 4024 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
4263 </summary> 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>
4264 </member> 4031 </member>
4265 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)"> 4032 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
4266 <summary> 4033 <summary>
4267 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name. 4034 Asynchronously writes a <see cref="T:System.String"/> value.
4268 </summary> 4035 </summary>
4269 <param name="propertyName">Name of the property.</param> 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>
4270 </member> 4041 </member>
4271 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType"> 4042 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
4272 <summary> 4043 <summary>
4273 Gets or sets the converter used when serializing the property's collection items. 4044 Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
4274 </summary> 4045 </summary>
4275 <value>The collection's items converter.</value> 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>
4276 </member> 4051 </member>
4277 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterParameters"> 4052 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
4278 <summary> 4053 <summary>
4279 The parameter list to use when constructing the JsonConverter described by ItemConverterType. 4054 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
4280 If null, the default constructor is used.
4281 When non-null, there must be a constructor defined in the JsonConverter that exactly matches the number,
4282 order, and type of these parameters.
4283 </summary> 4055 </summary>
4284 <example> 4056 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
4285 [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] 4057 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4286 </example> 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>
4287 </member> 4061 </member>
4288 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling"> 4062 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
4289 <summary> 4063 <summary>
4290 Gets or sets the null value handling used when serializing this property. 4064 Asynchronously writes a <see cref="T:System.UInt32"/> value.
4291 </summary> 4065 </summary>
4292 <value>The null value handling.</value> 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>
4293 </member> 4071 </member>
4294 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling"> 4072 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
4295 <summary> 4073 <summary>
4296 Gets or sets the default value handling used when serializing this property. 4074 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
4297 </summary> 4075 </summary>
4298 <value>The default value handling.</value> 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>
4299 </member> 4081 </member>
4300 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling"> 4082 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
4301 <summary> 4083 <summary>
4302 Gets or sets the reference loop handling used when serializing this property. 4084 Asynchronously writes a <see cref="T:System.UInt64"/> value.
4303 </summary> 4085 </summary>
4304 <value>The reference loop handling.</value> 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>
4305 </member> 4091 </member>
4306 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling"> 4092 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
4307 <summary> 4093 <summary>
4308 Gets or sets the object creation handling used when deserializing this property. 4094 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
4309 </summary> 4095 </summary>
4310 <value>The object creation handling.</value> 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>
4311 </member> 4101 </member>
4312 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling"> 4102 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
4313 <summary> 4103 <summary>
4314 Gets or sets the type name handling used when serializing this property. 4104 Asynchronously writes a <see cref="T:System.Uri"/> value.
4315 </summary> 4105 </summary>
4316 <value>The type name handling.</value> 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>
4317 </member> 4111 </member>
4318 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference"> 4112 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
4319 <summary> 4113 <summary>
4320 Gets or sets whether this property's value is serialized as a reference. 4114 Asynchronously writes a <see cref="T:System.UInt16"/> value.
4321 </summary> 4115 </summary>
4322 <value>Whether this property's value is serialized as a reference.</value> 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>
4323 </member> 4121 </member>
4324 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order"> 4122 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
4325 <summary> 4123 <summary>
4326 Gets or sets the order of serialization and deserialization of a member. 4124 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
4327 </summary> 4125 </summary>
4328 <value>The numeric order of serialization or deserialization.</value> 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>
4329 </member> 4131 </member>
4330 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required"> 4132 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
4331 <summary> 4133 <summary>
4332 Gets or sets a value indicating whether this property is required. 4134 Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
4333 </summary> 4135 </summary>
4334 <value> 4136 <param name="text">Text to place inside the comment.</param>
4335 A value indicating whether this property is required. 4137 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4336 </value> 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>
4337 </member> 4141 </member>
4338 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName"> 4142 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
4339 <summary> 4143 <summary>
4340 Gets or sets the name of the property. 4144 Asynchronously writes the end of an array.
4341 </summary> 4145 </summary>
4342 <value>The name of the property.</value> 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>
4343 </member> 4150 </member>
4344 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling"> 4151 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
4345 <summary> 4152 <summary>
4346 Gets or sets the the reference loop handling used when serializing the property's collection items. 4153 Asynchronously writes the end of a constructor.
4347 </summary> 4154 </summary>
4348 <value>The collection's items reference loop handling.</value> 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>
4349 </member> 4159 </member>
4350 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling"> 4160 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
4351 <summary> 4161 <summary>
4352 Gets or sets the the type name handling used when serializing the property's collection items. 4162 Asynchronously writes the end of a JSON object.
4353 </summary> 4163 </summary>
4354 <value>The collection's items type name handling.</value> 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>
4355 </member> 4168 </member>
4356 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference"> 4169 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
4357 <summary> 4170 <summary>
4358 Gets or sets whether this property's collection items are serialized as a reference. 4171 Asynchronously writes raw JSON where a value is expected and updates the writer's state.
4359 </summary> 4172 </summary>
4360 <value>Whether this property's collection items are serialized as a reference.</value> 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>
4361 </member> 4178 </member>
4362 <member name="T:Newtonsoft.Json.JsonIgnoreAttribute"> 4179 <member name="P:Newtonsoft.Json.JsonTextWriter.ArrayPool">
4363 <summary> 4180 <summary>
4364 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value. 4181 Gets or sets the writer's character array pool.
4365 </summary> 4182 </summary>
4366 </member> 4183 </member>
4367 <member name="T:Newtonsoft.Json.JsonTextWriter"> 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">
4368 <summary> 4200 <summary>
4369 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. 4201 Gets or sets a value indicating whether object names will be surrounded with quotes.
4370 </summary> 4202 </summary>
4371 </member> 4203 </member>
4372 <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)"> 4204 <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
4373 <summary> 4205 <summary>
4374 Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. 4206 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonTextWriter"/> class using the specified <see cref="T:System.IO.TextWriter"/>.
4375 </summary> 4207 </summary>
4376 <param name="textWriter">The <c>TextWriter</c> to write to.</param> 4208 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> to write to.</param>
4377 </member> 4209 </member>
4378 <member name="M:Newtonsoft.Json.JsonTextWriter.Flush"> 4210 <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
4379 <summary> 4211 <summary>
4380 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. 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"/>.
4381 </summary> 4213 </summary>
4382 </member> 4214 </member>
4383 <member name="M:Newtonsoft.Json.JsonTextWriter.Close"> 4215 <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
4384 <summary> 4216 <summary>
4385 Closes this stream and the underlying stream. 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.
4386 </summary> 4220 </summary>
4387 </member> 4221 </member>
4388 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject"> 4222 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
4389 <summary> 4223 <summary>
4390 Writes the beginning of a Json object. 4224 Writes the beginning of a JSON object.
4391 </summary> 4225 </summary>
4392 </member> 4226 </member>
4393 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray"> 4227 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
4394 <summary> 4228 <summary>
4395 Writes the beginning of a Json array. 4229 Writes the beginning of a JSON array.
4396 </summary> 4230 </summary>
4397 </member> 4231 </member>
4398 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)"> 4232 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
@@ -4409,7 +4243,7 @@
4409 </member> 4243 </member>
4410 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)"> 4244 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
4411 <summary> 4245 <summary>
4412 Writes the property name of a name/value pair on a Json object. 4246 Writes the property name of a name/value pair on a JSON object.
4413 </summary> 4247 </summary>
4414 <param name="name">The name of the property.</param> 4248 <param name="name">The name of the property.</param>
4415 </member> 4249 </member>
@@ -4496,9 +4330,9 @@
4496 </member> 4330 </member>
4497 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})"> 4331 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Single})">
4498 <summary> 4332 <summary>
4499 Writes a <see cref="T:System.Nullable`1"/> value. 4333 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
4500 </summary> 4334 </summary>
4501 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> 4335 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
4502 </member> 4336 </member>
4503 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)"> 4337 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
4504 <summary> 4338 <summary>
@@ -4508,9 +4342,9 @@
4508 </member> 4342 </member>
4509 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})"> 4343 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Nullable{System.Double})">
4510 <summary> 4344 <summary>
4511 Writes a <see cref="T:System.Nullable`1"/> value. 4345 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
4512 </summary> 4346 </summary>
4513 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> 4347 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
4514 </member> 4348 </member>
4515 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)"> 4349 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
4516 <summary> 4350 <summary>
@@ -4562,9 +4396,9 @@
4562 </member> 4396 </member>
4563 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])"> 4397 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
4564 <summary> 4398 <summary>
4565 Writes a <see cref="T:Byte[]"/> value. 4399 Writes a <see cref="T:System.Byte"/>[] value.
4566 </summary> 4400 </summary>
4567 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> 4401 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
4568 </member> 4402 </member>
4569 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)"> 4403 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
4570 <summary> 4404 <summary>
@@ -4592,1112 +4426,1430 @@
4592 </member> 4426 </member>
4593 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)"> 4427 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
4594 <summary> 4428 <summary>
4595 Writes out a comment <code>/*...*/</code> containing the specified text. 4429 Writes a comment <c>/*...*/</c> containing the specified text.
4596 </summary> 4430 </summary>
4597 <param name="text">Text to place inside the comment.</param> 4431 <param name="text">Text to place inside the comment.</param>
4598 </member> 4432 </member>
4599 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)"> 4433 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
4600 <summary> 4434 <summary>
4601 Writes out the given white space. 4435 Writes the given white space.
4602 </summary> 4436 </summary>
4603 <param name="ws">The string of white space characters.</param> 4437 <param name="ws">The string of white space characters.</param>
4604 </member> 4438 </member>
4605 <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation"> 4439 <member name="T:Newtonsoft.Json.JsonToken">
4606 <summary> 4440 <summary>
4607 Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>. 4441 Specifies the type of JSON token.
4608 </summary> 4442 </summary>
4609 </member> 4443 </member>
4610 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar"> 4444 <member name="F:Newtonsoft.Json.JsonToken.None">
4611 <summary> 4445 <summary>
4612 Gets or sets which character to use to quote attribute values. 4446 This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a read method has not been called.
4613 </summary> 4447 </summary>
4614 </member> 4448 </member>
4615 <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar"> 4449 <member name="F:Newtonsoft.Json.JsonToken.StartObject">
4616 <summary> 4450 <summary>
4617 Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>. 4451 An object start token.
4618 </summary> 4452 </summary>
4619 </member> 4453 </member>
4620 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName"> 4454 <member name="F:Newtonsoft.Json.JsonToken.StartArray">
4621 <summary> 4455 <summary>
4622 Gets or sets a value indicating whether object names will be surrounded with quotes. 4456 An array start token.
4623 </summary> 4457 </summary>
4624 </member> 4458 </member>
4625 <member name="T:Newtonsoft.Json.JsonWriterException"> 4459 <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
4626 <summary> 4460 <summary>
4627 The exception thrown when an error occurs while reading Json text. 4461 A constructor start token.
4628 </summary> 4462 </summary>
4629 </member> 4463 </member>
4630 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor"> 4464 <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
4631 <summary> 4465 <summary>
4632 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class. 4466 An object property name.
4633 </summary> 4467 </summary>
4634 </member> 4468 </member>
4635 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)"> 4469 <member name="F:Newtonsoft.Json.JsonToken.Comment">
4636 <summary> 4470 <summary>
4637 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class 4471 A comment.
4638 with a specified error message.
4639 </summary> 4472 </summary>
4640 <param name="message">The error message that explains the reason for the exception.</param>
4641 </member> 4473 </member>
4642 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)"> 4474 <member name="F:Newtonsoft.Json.JsonToken.Raw">
4643 <summary> 4475 <summary>
4644 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class 4476 Raw JSON.
4645 with a specified error message and a reference to the inner exception that is the cause of this exception.
4646 </summary> 4477 </summary>
4647 <param name="message">The error message that explains the reason for the exception.</param>
4648 <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
4649 </member> 4478 </member>
4650 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> 4479 <member name="F:Newtonsoft.Json.JsonToken.Integer">
4651 <summary> 4480 <summary>
4652 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class. 4481 An integer.
4653 </summary> 4482 </summary>
4654 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4655 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4656 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4657 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4658 </member> 4483 </member>
4659 <member name="P:Newtonsoft.Json.JsonWriterException.Path"> 4484 <member name="F:Newtonsoft.Json.JsonToken.Float">
4660 <summary> 4485 <summary>
4661 Gets the path to the JSON where the error occurred. 4486 A float.
4662 </summary> 4487 </summary>
4663 <value>The path to the JSON where the error occurred.</value>
4664 </member> 4488 </member>
4665 <member name="T:Newtonsoft.Json.JsonReaderException"> 4489 <member name="F:Newtonsoft.Json.JsonToken.String">
4666 <summary> 4490 <summary>
4667 The exception thrown when an error occurs while reading Json text. 4491 A string.
4668 </summary> 4492 </summary>
4669 </member> 4493 </member>
4670 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor"> 4494 <member name="F:Newtonsoft.Json.JsonToken.Boolean">
4671 <summary> 4495 <summary>
4672 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class. 4496 A boolean.
4673 </summary> 4497 </summary>
4674 </member> 4498 </member>
4675 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)"> 4499 <member name="F:Newtonsoft.Json.JsonToken.Null">
4676 <summary> 4500 <summary>
4677 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class 4501 A null token.
4678 with a specified error message.
4679 </summary> 4502 </summary>
4680 <param name="message">The error message that explains the reason for the exception.</param>
4681 </member> 4503 </member>
4682 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)"> 4504 <member name="F:Newtonsoft.Json.JsonToken.Undefined">
4683 <summary> 4505 <summary>
4684 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class 4506 An undefined token.
4685 with a specified error message and a reference to the inner exception that is the cause of this exception.
4686 </summary> 4507 </summary>
4687 <param name="message">The error message that explains the reason for the exception.</param>
4688 <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
4689 </member> 4508 </member>
4690 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> 4509 <member name="F:Newtonsoft.Json.JsonToken.EndObject">
4691 <summary> 4510 <summary>
4692 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class. 4511 An object end token.
4693 </summary> 4512 </summary>
4694 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4695 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4696 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4697 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4698 </member> 4513 </member>
4699 <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber"> 4514 <member name="F:Newtonsoft.Json.JsonToken.EndArray">
4700 <summary> 4515 <summary>
4701 Gets the line number indicating where the error occurred. 4516 An array end token.
4702 </summary> 4517 </summary>
4703 <value>The line number indicating where the error occurred.</value>
4704 </member> 4518 </member>
4705 <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition"> 4519 <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
4706 <summary> 4520 <summary>
4707 Gets the line position indicating where the error occurred. 4521 A constructor end token.
4708 </summary> 4522 </summary>
4709 <value>The line position indicating where the error occurred.</value>
4710 </member> 4523 </member>
4711 <member name="P:Newtonsoft.Json.JsonReaderException.Path"> 4524 <member name="F:Newtonsoft.Json.JsonToken.Date">
4712 <summary> 4525 <summary>
4713 Gets the path to the JSON where the error occurred. 4526 A Date.
4714 </summary> 4527 </summary>
4715 <value>The path to the JSON where the error occurred.</value>
4716 </member> 4528 </member>
4717 <member name="T:Newtonsoft.Json.JsonConverterCollection"> 4529 <member name="F:Newtonsoft.Json.JsonToken.Bytes">
4718 <summary> 4530 <summary>
4719 Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 4531 Byte data.
4720 </summary> 4532 </summary>
4721 </member> 4533 </member>
4722 <member name="T:Newtonsoft.Json.JsonConvert"> 4534 <member name="T:Newtonsoft.Json.JsonValidatingReader">
4723 <summary> 4535 <summary>
4724 Provides methods for converting between common language runtime types and JSON types. 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>
4725 </summary> 4542 </summary>
4726 <example>
4727 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
4728 </example>
4729 </member> 4543 </member>
4730 <member name="F:Newtonsoft.Json.JsonConvert.True"> 4544 <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
4731 <summary> 4545 <summary>
4732 Represents JavaScript's boolean value true as a string. This field is read-only. 4546 Sets an event handler for receiving schema validation errors.
4733 </summary> 4547 </summary>
4734 </member> 4548 </member>
4735 <member name="F:Newtonsoft.Json.JsonConvert.False"> 4549 <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
4736 <summary> 4550 <summary>
4737 Represents JavaScript's boolean value false as a string. This field is read-only. 4551 Gets the text value of the current JSON token.
4738 </summary> 4552 </summary>
4553 <value></value>
4739 </member> 4554 </member>
4740 <member name="F:Newtonsoft.Json.JsonConvert.Null"> 4555 <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
4741 <summary> 4556 <summary>
4742 Represents JavaScript's null as a string. This field is read-only. 4557 Gets the depth of the current token in the JSON document.
4743 </summary> 4558 </summary>
4559 <value>The depth of the current token in the JSON document.</value>
4744 </member> 4560 </member>
4745 <member name="F:Newtonsoft.Json.JsonConvert.Undefined"> 4561 <member name="P:Newtonsoft.Json.JsonValidatingReader.Path">
4746 <summary> 4562 <summary>
4747 Represents JavaScript's undefined as a string. This field is read-only. 4563 Gets the path of the current JSON token.
4748 </summary> 4564 </summary>
4749 </member> 4565 </member>
4750 <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity"> 4566 <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
4751 <summary> 4567 <summary>
4752 Represents JavaScript's positive infinity as a string. This field is read-only. 4568 Gets the quotation mark character used to enclose the value of a string.
4753 </summary> 4569 </summary>
4570 <value></value>
4754 </member> 4571 </member>
4755 <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity"> 4572 <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
4756 <summary> 4573 <summary>
4757 Represents JavaScript's negative infinity as a string. This field is read-only. 4574 Gets the type of the current JSON token.
4758 </summary> 4575 </summary>
4576 <value></value>
4759 </member> 4577 </member>
4760 <member name="F:Newtonsoft.Json.JsonConvert.NaN"> 4578 <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
4761 <summary> 4579 <summary>
4762 Represents JavaScript's NaN as a string. This field is read-only. 4580 Gets the .NET type for the current JSON token.
4763 </summary> 4581 </summary>
4582 <value></value>
4764 </member> 4583 </member>
4765 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)"> 4584 <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
4766 <summary> 4585 <summary>
4767 Converts the <see cref="T:System.DateTime"/> to its JSON string representation. 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"/>.
4768 </summary> 4588 </summary>
4769 <param name="value">The value to convert.</param> 4589 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
4770 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4771 </member> 4590 </member>
4772 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)"> 4591 <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
4773 <summary> 4592 <summary>
4774 Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified. 4593 Gets or sets the schema.
4775 </summary> 4594 </summary>
4776 <param name="value">The value to convert.</param> 4595 <value>The schema.</value>
4777 <param name="format">The format the date will be converted to.</param>
4778 <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
4779 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
4780 </member> 4596 </member>
4781 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)"> 4597 <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
4782 <summary> 4598 <summary>
4783 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation. 4599 Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
4784 </summary> 4600 </summary>
4785 <param name="value">The value to convert.</param> 4601 <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
4786 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4787 </member> 4602 </member>
4788 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)"> 4603 <member name="M:Newtonsoft.Json.JsonValidatingReader.Close">
4789 <summary> 4604 <summary>
4790 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified. 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.
4791 </summary> 4607 </summary>
4792 <param name="value">The value to convert.</param>
4793 <param name="format">The format the date will be converted to.</param>
4794 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
4795 </member> 4608 </member>
4796 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)"> 4609 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
4797 <summary> 4610 <summary>
4798 Converts the <see cref="T:System.Boolean"/> to its JSON string representation. 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"/>.
4799 </summary> 4612 </summary>
4800 <param name="value">The value to convert.</param> 4613 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/>.</returns>
4801 <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
4802 </member> 4614 </member>
4803 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)"> 4615 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
4804 <summary> 4616 <summary>
4805 Converts the <see cref="T:System.Char"/> to its JSON string representation. 4617 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.Byte"/>[].
4806 </summary> 4618 </summary>
4807 <param name="value">The value to convert.</param> 4619 <returns>
4808 <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns> 4620 A <see cref="T:System.Byte"/>[] or <c>null</c> if the next JSON token is null.
4621 </returns>
4809 </member> 4622 </member>
4810 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)"> 4623 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
4811 <summary> 4624 <summary>
4812 Converts the <see cref="T:System.Enum"/> to its JSON string representation. 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"/>.
4813 </summary> 4626 </summary>
4814 <param name="value">The value to convert.</param> 4627 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/>.</returns>
4815 <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
4816 </member> 4628 </member>
4817 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)"> 4629 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDouble">
4818 <summary> 4630 <summary>
4819 Converts the <see cref="T:System.Int32"/> to its JSON string representation. 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"/>.
4820 </summary> 4632 </summary>
4821 <param name="value">The value to convert.</param> 4633 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/>.</returns>
4822 <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
4823 </member> 4634 </member>
4824 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)"> 4635 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBoolean">
4825 <summary> 4636 <summary>
4826 Converts the <see cref="T:System.Int16"/> to its JSON string representation. 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"/>.
4827 </summary> 4638 </summary>
4828 <param name="value">The value to convert.</param> 4639 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/>.</returns>
4829 <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
4830 </member> 4640 </member>
4831 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)"> 4641 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsString">
4832 <summary> 4642 <summary>
4833 Converts the <see cref="T:System.UInt16"/> to its JSON string representation. 4643 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/> as a <see cref="T:System.String"/>.
4834 </summary> 4644 </summary>
4835 <param name="value">The value to convert.</param> 4645 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
4836 <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
4837 </member> 4646 </member>
4838 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)"> 4647 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime">
4839 <summary> 4648 <summary>
4840 Converts the <see cref="T:System.UInt32"/> to its JSON string representation. 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"/>.
4841 </summary> 4650 </summary>
4842 <param name="value">The value to convert.</param> 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>
4843 <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
4844 </member> 4652 </member>
4845 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)"> 4653 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
4846 <summary> 4654 <summary>
4847 Converts the <see cref="T:System.Int64"/> to its JSON string representation. 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"/>.
4848 </summary> 4656 </summary>
4849 <param name="value">The value to convert.</param> 4657 <returns>A <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/>.</returns>
4850 <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
4851 </member> 4658 </member>
4852 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)"> 4659 <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
4853 <summary> 4660 <summary>
4854 Converts the <see cref="T:System.UInt64"/> to its JSON string representation. 4661 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.JsonReader"/>.
4855 </summary> 4662 </summary>
4856 <param name="value">The value to convert.</param> 4663 <returns>
4857 <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</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>
4858 </member> 4666 </member>
4859 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)"> 4667 <member name="T:Newtonsoft.Json.JsonWriter">
4860 <summary> 4668 <summary>
4861 Converts the <see cref="T:System.Single"/> to its JSON string representation. 4669 Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
4862 </summary> 4670 </summary>
4863 <param name="value">The value to convert.</param>
4864 <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
4865 </member> 4671 </member>
4866 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)"> 4672 <member name="M:Newtonsoft.Json.JsonWriter.CloseAsync(System.Threading.CancellationToken)">
4867 <summary> 4673 <summary>
4868 Converts the <see cref="T:System.Double"/> to its JSON string representation. 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.
4869 </summary> 4676 </summary>
4870 <param name="value">The value to convert.</param> 4677 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4871 <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns> 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>
4872 </member> 4681 </member>
4873 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)"> 4682 <member name="M:Newtonsoft.Json.JsonWriter.FlushAsync(System.Threading.CancellationToken)">
4874 <summary> 4683 <summary>
4875 Converts the <see cref="T:System.Byte"/> to its JSON string representation. 4684 Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
4876 </summary> 4685 </summary>
4877 <param name="value">The value to convert.</param> 4686 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4878 <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns> 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>
4879 </member> 4690 </member>
4880 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)"> 4691 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(Newtonsoft.Json.JsonToken,System.Threading.CancellationToken)">
4881 <summary> 4692 <summary>
4882 Converts the <see cref="T:System.SByte"/> to its JSON string representation. 4693 Asynchronously writes the specified end token.
4883 </summary> 4694 </summary>
4884 <param name="value">The value to convert.</param> 4695 <param name="token">The end token to write.</param>
4885 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> 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>
4886 </member> 4700 </member>
4887 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)"> 4701 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentAsync(System.Threading.CancellationToken)">
4888 <summary> 4702 <summary>
4889 Converts the <see cref="T:System.Decimal"/> to its JSON string representation. 4703 Asynchronously writes indent characters.
4890 </summary> 4704 </summary>
4891 <param name="value">The value to convert.</param> 4705 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4892 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> 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>
4893 </member> 4709 </member>
4894 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)"> 4710 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiterAsync(System.Threading.CancellationToken)">
4895 <summary> 4711 <summary>
4896 Converts the <see cref="T:System.Guid"/> to its JSON string representation. 4712 Asynchronously writes the JSON value delimiter.
4897 </summary> 4713 </summary>
4898 <param name="value">The value to convert.</param> 4714 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4899 <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns> 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>
4900 </member> 4718 </member>
4901 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)"> 4719 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpaceAsync(System.Threading.CancellationToken)">
4902 <summary> 4720 <summary>
4903 Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation. 4721 Asynchronously writes an indent space.
4904 </summary> 4722 </summary>
4905 <param name="value">The value to convert.</param> 4723 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4906 <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns> 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>
4907 </member> 4727 </member>
4908 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)"> 4728 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawAsync(System.String,System.Threading.CancellationToken)">
4909 <summary> 4729 <summary>
4910 Converts the <see cref="T:System.Uri"/> to its JSON string representation. 4730 Asynchronously writes raw JSON without changing the writer's state.
4911 </summary> 4731 </summary>
4912 <param name="value">The value to convert.</param> 4732 <param name="json">The raw JSON to write.</param>
4913 <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns> 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>
4914 </member> 4737 </member>
4915 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)"> 4738 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndAsync(System.Threading.CancellationToken)">
4916 <summary> 4739 <summary>
4917 Converts the <see cref="T:System.String"/> to its JSON string representation. 4740 Asynchronously writes the end of the current JSON object or array.
4918 </summary> 4741 </summary>
4919 <param name="value">The value to convert.</param> 4742 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4920 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> 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>
4921 </member> 4746 </member>
4922 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)"> 4747 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
4923 <summary> 4748 <summary>
4924 Converts the <see cref="T:System.String"/> to its JSON string representation. 4749 Asynchronously writes the end of an array.
4925 </summary> 4750 </summary>
4926 <param name="value">The value to convert.</param> 4751 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4927 <param name="delimiter">The string delimiter character.</param> 4752 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4928 <returns>A JSON string representation of the <see cref="T:System.String"/>.</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>
4929 </member> 4755 </member>
4930 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)"> 4756 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructorAsync(System.Threading.CancellationToken)">
4931 <summary> 4757 <summary>
4932 Converts the <see cref="T:System.String"/> to its JSON string representation. 4758 Asynchronously writes the end of a constructor.
4933 </summary> 4759 </summary>
4934 <param name="value">The value to convert.</param> 4760 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4935 <param name="delimiter">The string delimiter character.</param> 4761 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4936 <param name="stringEscapeHandling">The string escape handling.</param> 4762 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4937 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> 4763 classes can override this behaviour for true asynchronicity.</remarks>
4938 </member> 4764 </member>
4939 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)"> 4765 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
4940 <summary> 4766 <summary>
4941 Converts the <see cref="T:System.Object"/> to its JSON string representation. 4767 Asynchronously writes the end of a JSON object.
4942 </summary> 4768 </summary>
4943 <param name="value">The value to convert.</param> 4769 <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 JSON string representation of the <see cref="T:System.Object"/>.</returns> 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>
4945 </member> 4773 </member>
4946 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)"> 4774 <member name="M:Newtonsoft.Json.JsonWriter.WriteNullAsync(System.Threading.CancellationToken)">
4947 <summary> 4775 <summary>
4948 Serializes the specified object to a JSON string. 4776 Asynchronously writes a null value.
4949 </summary> 4777 </summary>
4950 <param name="value">The object to serialize.</param> 4778 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4951 <returns>A JSON string representation of the object.</returns> 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>
4952 </member> 4782 </member>
4953 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)"> 4783 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Threading.CancellationToken)">
4954 <summary> 4784 <summary>
4955 Serializes the specified object to a JSON string using formatting. 4785 Asynchronously writes the property name of a name/value pair of a JSON object.
4956 </summary> 4786 </summary>
4957 <param name="value">The object to serialize.</param> 4787 <param name="name">The name of the property.</param>
4958 <param name="formatting">Indicates how the output is formatted.</param> 4788 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4959 <returns> 4789 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4960 A JSON string representation of the object. 4790 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4961 </returns> 4791 classes can override this behaviour for true asynchronicity.</remarks>
4962 </member> 4792 </member>
4963 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])"> 4793 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyNameAsync(System.String,System.Boolean,System.Threading.CancellationToken)">
4964 <summary> 4794 <summary>
4965 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 4795 Asynchronously writes the property name of a name/value pair of a JSON object.
4966 </summary> 4796 </summary>
4967 <param name="value">The object to serialize.</param> 4797 <param name="name">The name of the property.</param>
4968 <param name="converters">A collection converters used while serializing.</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>
4969 <returns>A JSON string representation of the object.</returns> 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>
4970 </member> 4803 </member>
4971 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])"> 4804 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArrayAsync(System.Threading.CancellationToken)">
4972 <summary> 4805 <summary>
4973 Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 4806 Asynchronously writes the beginning of a JSON array.
4974 </summary> 4807 </summary>
4975 <param name="value">The object to serialize.</param> 4808 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4976 <param name="formatting">Indicates how the output is formatted.</param> 4809 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4977 <param name="converters">A collection converters used while serializing.</param> 4810 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4978 <returns>A JSON string representation of the object.</returns> 4811 classes can override this behaviour for true asynchronicity.</remarks>
4979 </member> 4812 </member>
4980 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)"> 4813 <member name="M:Newtonsoft.Json.JsonWriter.WriteCommentAsync(System.String,System.Threading.CancellationToken)">
4981 <summary> 4814 <summary>
4982 Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4815 Asynchronously writes a comment <c>/*...*/</c> containing the specified text.
4983 </summary> 4816 </summary>
4984 <param name="value">The object to serialize.</param> 4817 <param name="text">Text to place inside the comment.</param>
4985 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. 4818 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4986 If this is null, default serialization settings will be used.</param> 4819 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4987 <returns> 4820 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4988 A JSON string representation of the object. 4821 classes can override this behaviour for true asynchronicity.</remarks>
4989 </returns>
4990 </member> 4822 </member>
4991 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> 4823 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValueAsync(System.String,System.Threading.CancellationToken)">
4992 <summary> 4824 <summary>
4993 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4825 Asynchronously writes raw JSON where a value is expected and updates the writer's state.
4994 </summary> 4826 </summary>
4995 <param name="value">The object to serialize.</param> 4827 <param name="json">The raw JSON to write.</param>
4996 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. 4828 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
4997 If this is null, default serialization settings will be used.</param> 4829 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
4998 <param name="type"> 4830 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
4999 The type of the value being serialized. 4831 classes can override this behaviour for true asynchronicity.</remarks>
5000 This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match.
5001 Specifing the type is optional.
5002 </param>
5003 <returns>
5004 A JSON string representation of the object.
5005 </returns>
5006 </member> 4832 </member>
5007 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> 4833 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructorAsync(System.String,System.Threading.CancellationToken)">
5008 <summary> 4834 <summary>
5009 Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4835 Asynchronously writes the start of a constructor with the given name.
5010 </summary> 4836 </summary>
5011 <param name="value">The object to serialize.</param> 4837 <param name="name">The name of the constructor.</param>
5012 <param name="formatting">Indicates how the output is formatted.</param> 4838 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5013 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. 4839 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5014 If this is null, default serialization settings will be used.</param> 4840 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5015 <returns> 4841 classes can override this behaviour for true asynchronicity.</remarks>
5016 A JSON string representation of the object.
5017 </returns>
5018 </member> 4842 </member>
5019 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> 4843 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObjectAsync(System.Threading.CancellationToken)">
5020 <summary> 4844 <summary>
5021 Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4845 Asynchronously writes the beginning of a JSON object.
5022 </summary> 4846 </summary>
5023 <param name="value">The object to serialize.</param> 4847 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5024 <param name="formatting">Indicates how the output is formatted.</param> 4848 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5025 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. 4849 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5026 If this is null, default serialization settings will be used.</param> 4850 classes can override this behaviour for true asynchronicity.</remarks>
5027 <param name="type"> 4851 </member>
5028 The type of the value being serialized. 4852 <member name="M:Newtonsoft.Json.JsonWriter.WriteTokenAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
5029 This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match. 4853 <summary>
5030 Specifing the type is optional. 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"/>.
5031 </param> 4892 </param>
5032 <returns> 4893 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5033 A JSON string representation of the object. 4894 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5034 </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>
5035 </member> 4897 </member>
5036 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)"> 4898 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Boolean,System.Threading.CancellationToken)">
5037 <summary> 4899 <summary>
5038 Asynchronously serializes the specified object to a JSON string. 4900 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value.
5039 Serialization will happen on a new thread.
5040 </summary> 4901 </summary>
5041 <param name="value">The object to serialize.</param> 4902 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Boolean"/> value to write.</param>
5042 <returns> 4903 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5043 A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object. 4904 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5044 </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>
5045 </member> 4907 </member>
5046 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)"> 4908 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Boolean},System.Threading.CancellationToken)">
5047 <summary> 4909 <summary>
5048 Asynchronously serializes the specified object to a JSON string using formatting. 4910 Asynchronously writes a <see cref="T:System.Boolean"/> value.
5049 Serialization will happen on a new thread.
5050 </summary> 4911 </summary>
5051 <param name="value">The object to serialize.</param> 4912 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5052 <param name="formatting">Indicates how the output is formatted.</param> 4913 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5053 <returns> 4914 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5054 A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object. 4915 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5055 </returns> 4916 classes can override this behaviour for true asynchronicity.</remarks>
5056 </member> 4917 </member>
5057 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> 4918 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte,System.Threading.CancellationToken)">
5058 <summary> 4919 <summary>
5059 Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 4920 Asynchronously writes a <see cref="T:System.Byte"/> value.
5060 Serialization will happen on a new thread.
5061 </summary> 4921 </summary>
5062 <param name="value">The object to serialize.</param> 4922 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5063 <param name="formatting">Indicates how the output is formatted.</param> 4923 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5064 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. 4924 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5065 If this is null, default serialization settings will be used.</param> 4925 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5066 <returns> 4926 classes can override this behaviour for true asynchronicity.</remarks>
5067 A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.
5068 </returns>
5069 </member> 4927 </member>
5070 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)"> 4928 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Byte},System.Threading.CancellationToken)">
5071 <summary> 4929 <summary>
5072 Deserializes the JSON to a .NET object. 4930 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value.
5073 </summary> 4931 </summary>
5074 <param name="value">The JSON to deserialize.</param> 4932 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Byte"/> value to write.</param>
5075 <returns>The deserialized object from the JSON string.</returns> 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>
5076 </member> 4937 </member>
5077 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)"> 4938 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Byte[],System.Threading.CancellationToken)">
5078 <summary> 4939 <summary>
5079 Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4940 Asynchronously writes a <see cref="T:System.Byte"/>[] value.
5080 </summary> 4941 </summary>
5081 <param name="value">The JSON to deserialize.</param> 4942 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
5082 <param name="settings"> 4943 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5083 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 4944 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5084 If this is null, default serialization settings will be used. 4945 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5085 </param> 4946 classes can override this behaviour for true asynchronicity.</remarks>
5086 <returns>The deserialized object from the JSON string.</returns>
5087 </member> 4947 </member>
5088 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)"> 4948 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Char,System.Threading.CancellationToken)">
5089 <summary> 4949 <summary>
5090 Deserializes the JSON to the specified .NET type. 4950 Asynchronously writes a <see cref="T:System.Char"/> value.
5091 </summary> 4951 </summary>
5092 <param name="value">The JSON to deserialize.</param> 4952 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5093 <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param> 4953 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5094 <returns>The deserialized object from the JSON string.</returns> 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>
5095 </member> 4957 </member>
5096 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)"> 4958 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Char},System.Threading.CancellationToken)">
5097 <summary> 4959 <summary>
5098 Deserializes the JSON to the specified .NET type. 4960 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value.
5099 </summary> 4961 </summary>
5100 <typeparam name="T">The type of the object to deserialize to.</typeparam> 4962 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Char"/> value to write.</param>
5101 <param name="value">The JSON to deserialize.</param> 4963 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5102 <returns>The deserialized object from the JSON string.</returns> 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>
5103 </member> 4967 </member>
5104 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)"> 4968 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTime,System.Threading.CancellationToken)">
5105 <summary> 4969 <summary>
5106 Deserializes the JSON to the given anonymous type. 4970 Asynchronously writes a <see cref="T:System.DateTime"/> value.
5107 </summary> 4971 </summary>
5108 <typeparam name="T"> 4972 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5109 The anonymous type to deserialize to. This can't be specified 4973 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5110 traditionally and must be infered from the anonymous type passed 4974 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5111 as a parameter. 4975 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5112 </typeparam> 4976 classes can override this behaviour for true asynchronicity.</remarks>
5113 <param name="value">The JSON to deserialize.</param>
5114 <param name="anonymousTypeObject">The anonymous type object.</param>
5115 <returns>The deserialized anonymous type from the JSON string.</returns>
5116 </member> 4977 </member>
5117 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)"> 4978 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTime},System.Threading.CancellationToken)">
5118 <summary> 4979 <summary>
5119 Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 4980 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value.
5120 </summary> 4981 </summary>
5121 <typeparam name="T"> 4982 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTime"/> value to write.</param>
5122 The anonymous type to deserialize to. This can't be specified 4983 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5123 traditionally and must be infered from the anonymous type passed 4984 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5124 as a parameter. 4985 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5125 </typeparam> 4986 classes can override this behaviour for true asynchronicity.</remarks>
5126 <param name="value">The JSON to deserialize.</param>
5127 <param name="anonymousTypeObject">The anonymous type object.</param>
5128 <param name="settings">
5129 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
5130 If this is null, default serialization settings will be used.
5131 </param>
5132 <returns>The deserialized anonymous type from the JSON string.</returns>
5133 </member> 4987 </member>
5134 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])"> 4988 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.DateTimeOffset,System.Threading.CancellationToken)">
5135 <summary> 4989 <summary>
5136 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 4990 Asynchronously writes a <see cref="T:System.DateTimeOffset"/> value.
5137 </summary> 4991 </summary>
5138 <typeparam name="T">The type of the object to deserialize to.</typeparam> 4992 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5139 <param name="value">The JSON to deserialize.</param> 4993 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5140 <param name="converters">Converters to use while deserializing.</param> 4994 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5141 <returns>The deserialized object from the JSON string.</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>
5142 </member> 4997 </member>
5143 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)"> 4998 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.DateTimeOffset},System.Threading.CancellationToken)">
5144 <summary> 4999 <summary>
5145 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5000 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value.
5146 </summary> 5001 </summary>
5147 <typeparam name="T">The type of the object to deserialize to.</typeparam> 5002 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.DateTimeOffset"/> value to write.</param>
5148 <param name="value">The object to deserialize.</param> 5003 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5149 <param name="settings"> 5004 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5150 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5005 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5151 If this is null, default serialization settings will be used. 5006 classes can override this behaviour for true asynchronicity.</remarks>
5152 </param>
5153 <returns>The deserialized object from the JSON string.</returns>
5154 </member> 5007 </member>
5155 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])"> 5008 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Decimal,System.Threading.CancellationToken)">
5156 <summary> 5009 <summary>
5157 Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. 5010 Asynchronously writes a <see cref="T:System.Decimal"/> value.
5158 </summary> 5011 </summary>
5159 <param name="value">The JSON to deserialize.</param> 5012 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5160 <param name="type">The type of the object to deserialize.</param> 5013 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5161 <param name="converters">Converters to use while deserializing.</param> 5014 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5162 <returns>The deserialized object from the JSON string.</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>
5163 </member> 5017 </member>
5164 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> 5018 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Decimal},System.Threading.CancellationToken)">
5165 <summary> 5019 <summary>
5166 Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5020 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value.
5167 </summary> 5021 </summary>
5168 <param name="value">The JSON to deserialize.</param> 5022 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Decimal"/> value to write.</param>
5169 <param name="type">The type of the object to deserialize to.</param> 5023 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5170 <param name="settings"> 5024 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5171 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5025 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5172 If this is null, default serialization settings will be used. 5026 classes can override this behaviour for true asynchronicity.</remarks>
5173 </param>
5174 <returns>The deserialized object from the JSON string.</returns>
5175 </member> 5027 </member>
5176 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)"> 5028 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Double,System.Threading.CancellationToken)">
5177 <summary> 5029 <summary>
5178 Asynchronously deserializes the JSON to the specified .NET type. 5030 Asynchronously writes a <see cref="T:System.Double"/> value.
5179 Deserialization will happen on a new thread.
5180 </summary> 5031 </summary>
5181 <typeparam name="T">The type of the object to deserialize to.</typeparam> 5032 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5182 <param name="value">The JSON to deserialize.</param> 5033 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5183 <returns> 5034 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5184 A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. 5035 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5185 </returns> 5036 classes can override this behaviour for true asynchronicity.</remarks>
5186 </member> 5037 </member>
5187 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)"> 5038 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Double},System.Threading.CancellationToken)">
5188 <summary> 5039 <summary>
5189 Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5040 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value.
5190 Deserialization will happen on a new thread.
5191 </summary> 5041 </summary>
5192 <typeparam name="T">The type of the object to deserialize to.</typeparam> 5042 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> value to write.</param>
5193 <param name="value">The JSON to deserialize.</param> 5043 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5194 <param name="settings"> 5044 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5195 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5045 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5196 If this is null, default serialization settings will be used. 5046 classes can override this behaviour for true asynchronicity.</remarks>
5197 </param>
5198 <returns>
5199 A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5200 </returns>
5201 </member> 5047 </member>
5202 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)"> 5048 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Single,System.Threading.CancellationToken)">
5203 <summary> 5049 <summary>
5204 Asynchronously deserializes the JSON to the specified .NET type. 5050 Asynchronously writes a <see cref="T:System.Single"/> value.
5205 Deserialization will happen on a new thread.
5206 </summary> 5051 </summary>
5207 <param name="value">The JSON to deserialize.</param> 5052 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5208 <returns> 5053 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5209 A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. 5054 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5210 </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>
5211 </member> 5057 </member>
5212 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> 5058 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Single},System.Threading.CancellationToken)">
5213 <summary> 5059 <summary>
5214 Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5060 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value.
5215 Deserialization will happen on a new thread.
5216 </summary> 5061 </summary>
5217 <param name="value">The JSON to deserialize.</param> 5062 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Single"/> value to write.</param>
5218 <param name="type">The type of the object to deserialize to.</param> 5063 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5219 <param name="settings"> 5064 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5220 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5065 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5221 If this is null, default serialization settings will be used. 5066 classes can override this behaviour for true asynchronicity.</remarks>
5222 </param>
5223 <returns>
5224 A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.
5225 </returns>
5226 </member> 5067 </member>
5227 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)"> 5068 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Guid,System.Threading.CancellationToken)">
5228 <summary> 5069 <summary>
5229 Populates the object with values from the JSON string. 5070 Asynchronously writes a <see cref="T:System.Guid"/> value.
5230 </summary> 5071 </summary>
5231 <param name="value">The JSON to populate values from.</param> 5072 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5232 <param name="target">The target object to populate values onto.</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>
5233 </member> 5077 </member>
5234 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)"> 5078 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Guid},System.Threading.CancellationToken)">
5235 <summary> 5079 <summary>
5236 Populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5080 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value.
5237 </summary> 5081 </summary>
5238 <param name="value">The JSON to populate values from.</param> 5082 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Guid"/> value to write.</param>
5239 <param name="target">The target object to populate values onto.</param> 5083 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5240 <param name="settings"> 5084 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5241 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5085 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5242 If this is null, default serialization settings will be used. 5086 classes can override this behaviour for true asynchronicity.</remarks>
5243 </param>
5244 </member> 5087 </member>
5245 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)"> 5088 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int32,System.Threading.CancellationToken)">
5246 <summary> 5089 <summary>
5247 Asynchronously populates the object with values from the JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5090 Asynchronously writes a <see cref="T:System.Int32"/> value.
5248 </summary> 5091 </summary>
5249 <param name="value">The JSON to populate values from.</param> 5092 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5250 <param name="target">The target object to populate values onto.</param> 5093 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5251 <param name="settings"> 5094 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5252 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. 5095 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5253 If this is null, default serialization settings will be used. 5096 classes can override this behaviour for true asynchronicity.</remarks>
5254 </param>
5255 <returns>
5256 A task that represents the asynchronous populate operation.
5257 </returns>
5258 </member> 5097 </member>
5259 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)"> 5098 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int32},System.Threading.CancellationToken)">
5260 <summary> 5099 <summary>
5261 Serializes the XML node to a JSON string. 5100 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
5262 </summary> 5101 </summary>
5263 <param name="node">The node to serialize.</param> 5102 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
5264 <returns>A JSON string of the XmlNode.</returns> 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>
5265 </member> 5107 </member>
5266 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)"> 5108 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int64,System.Threading.CancellationToken)">
5267 <summary> 5109 <summary>
5268 Serializes the XML node to a JSON string using formatting. 5110 Asynchronously writes a <see cref="T:System.Int64"/> value.
5269 </summary> 5111 </summary>
5270 <param name="node">The node to serialize.</param> 5112 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5271 <param name="formatting">Indicates how the output is formatted.</param> 5113 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5272 <returns>A JSON string of the XmlNode.</returns> 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>
5273 </member> 5117 </member>
5274 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)"> 5118 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int64},System.Threading.CancellationToken)">
5275 <summary> 5119 <summary>
5276 Serializes the XML node to a JSON string using formatting and omits the root object if <paramref name="omitRootObject"/> is <c>true</c>. 5120 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value.
5277 </summary> 5121 </summary>
5278 <param name="node">The node to serialize.</param> 5122 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int64"/> value to write.</param>
5279 <param name="formatting">Indicates how the output is formatted.</param> 5123 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5280 <param name="omitRootObject">Omits writing the root object.</param> 5124 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5281 <returns>A JSON string of the XmlNode.</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>
5282 </member> 5127 </member>
5283 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)"> 5128 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Object,System.Threading.CancellationToken)">
5284 <summary> 5129 <summary>
5285 Deserializes the XmlNode from a JSON string. 5130 Asynchronously writes a <see cref="T:System.Object"/> value.
5286 </summary> 5131 </summary>
5287 <param name="value">The JSON string.</param> 5132 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
5288 <returns>The deserialized XmlNode</returns> 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>
5289 </member> 5137 </member>
5290 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)"> 5138 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.SByte,System.Threading.CancellationToken)">
5291 <summary> 5139 <summary>
5292 Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>. 5140 Asynchronously writes a <see cref="T:System.SByte"/> value.
5293 </summary> 5141 </summary>
5294 <param name="value">The JSON string.</param> 5142 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5295 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> 5143 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5296 <returns>The deserialized XmlNode</returns> 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>
5297 </member> 5147 </member>
5298 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)"> 5148 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.SByte},System.Threading.CancellationToken)">
5299 <summary> 5149 <summary>
5300 Deserializes the XmlNode from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/> 5150 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value.
5301 and writes a .NET array attribute for collections.
5302 </summary> 5151 </summary>
5303 <param name="value">The JSON string.</param> 5152 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.SByte"/> value to write.</param>
5304 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> 5153 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5305 <param name="writeArrayAttribute"> 5154 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5306 A flag to indicate whether to write the Json.NET array attribute. 5155 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5307 This attribute helps preserve arrays when converting the written XML back to JSON. 5156 classes can override this behaviour for true asynchronicity.</remarks>
5308 </param>
5309 <returns>The deserialized XmlNode</returns>
5310 </member> 5157 </member>
5311 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)"> 5158 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Int16,System.Threading.CancellationToken)">
5312 <summary> 5159 <summary>
5313 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string. 5160 Asynchronously writes a <see cref="T:System.Int16"/> value.
5314 </summary> 5161 </summary>
5315 <param name="node">The node to convert to JSON.</param> 5162 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5316 <returns>A JSON string of the XNode.</returns> 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>
5317 </member> 5167 </member>
5318 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)"> 5168 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.Int16},System.Threading.CancellationToken)">
5319 <summary> 5169 <summary>
5320 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string using formatting. 5170 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value.
5321 </summary> 5171 </summary>
5322 <param name="node">The node to convert to JSON.</param> 5172 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value to write.</param>
5323 <param name="formatting">Indicates how the output is formatted.</param> 5173 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5324 <returns>A JSON string of the XNode.</returns> 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>
5325 </member> 5177 </member>
5326 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)"> 5178 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.String,System.Threading.CancellationToken)">
5327 <summary> 5179 <summary>
5328 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>. 5180 Asynchronously writes a <see cref="T:System.String"/> value.
5329 </summary> 5181 </summary>
5330 <param name="node">The node to serialize.</param> 5182 <param name="value">The <see cref="T:System.String"/> value to write.</param>
5331 <param name="formatting">Indicates how the output is formatted.</param> 5183 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5332 <param name="omitRootObject">Omits writing the root object.</param> 5184 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5333 <returns>A JSON string of the XNode.</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>
5334 </member> 5187 </member>
5335 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)"> 5188 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.TimeSpan,System.Threading.CancellationToken)">
5336 <summary> 5189 <summary>
5337 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string. 5190 Asynchronously writes a <see cref="T:System.TimeSpan"/> value.
5338 </summary> 5191 </summary>
5339 <param name="value">The JSON string.</param> 5192 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5340 <returns>The deserialized XNode</returns> 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>
5341 </member> 5197 </member>
5342 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)"> 5198 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.TimeSpan},System.Threading.CancellationToken)">
5343 <summary> 5199 <summary>
5344 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/>. 5200 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value.
5345 </summary> 5201 </summary>
5346 <param name="value">The JSON string.</param> 5202 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.TimeSpan"/> value to write.</param>
5347 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> 5203 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5348 <returns>The deserialized XNode</returns> 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>
5349 </member> 5207 </member>
5350 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)"> 5208 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt32,System.Threading.CancellationToken)">
5351 <summary> 5209 <summary>
5352 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment specified by <paramref name="deserializeRootElementName"/> 5210 Asynchronously writes a <see cref="T:System.UInt32"/> value.
5353 and writes a .NET array attribute for collections.
5354 </summary> 5211 </summary>
5355 <param name="value">The JSON string.</param> 5212 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5356 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> 5213 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5357 <param name="writeArrayAttribute"> 5214 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5358 A flag to indicate whether to write the Json.NET array attribute. 5215 <remarks>The default behaviour is to execute synchronously, returning an already-completed task. Derived
5359 This attribute helps preserve arrays when converting the written XML back to JSON. 5216 classes can override this behaviour for true asynchronicity.</remarks>
5360 </param>
5361 <returns>The deserialized XNode</returns>
5362 </member> 5217 </member>
5363 <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings"> 5218 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt32},System.Threading.CancellationToken)">
5364 <summary> 5219 <summary>
5365 Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5220 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt32"/> value.
5366 Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
5367 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"/>.
5368 To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
5369 <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
5370 </summary> 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>
5371 </member> 5227 </member>
5372 <member name="T:Newtonsoft.Json.JsonSerializationException"> 5228 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt64,System.Threading.CancellationToken)">
5373 <summary> 5229 <summary>
5374 The exception thrown when an error occurs during Json serialization or deserialization. 5230 Asynchronously writes a <see cref="T:System.UInt64"/> value.
5375 </summary> 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>
5376 </member> 5237 </member>
5377 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor"> 5238 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt64},System.Threading.CancellationToken)">
5378 <summary> 5239 <summary>
5379 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class. 5240 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt64"/> value.
5380 </summary> 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>
5381 </member> 5247 </member>
5382 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)"> 5248 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Uri,System.Threading.CancellationToken)">
5383 <summary> 5249 <summary>
5384 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class 5250 Asynchronously writes a <see cref="T:System.Uri"/> value.
5385 with a specified error message.
5386 </summary> 5251 </summary>
5387 <param name="message">The error message that explains the reason for the exception.</param> 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>
5388 </member> 5257 </member>
5389 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)"> 5258 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.UInt16,System.Threading.CancellationToken)">
5390 <summary> 5259 <summary>
5391 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class 5260 Asynchronously writes a <see cref="T:System.UInt16"/> value.
5392 with a specified error message and a reference to the inner exception that is the cause of this exception.
5393 </summary> 5261 </summary>
5394 <param name="message">The error message that explains the reason for the exception.</param> 5262 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5395 <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> 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>
5396 </member> 5267 </member>
5397 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> 5268 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueAsync(System.Nullable{System.UInt16},System.Threading.CancellationToken)">
5398 <summary> 5269 <summary>
5399 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class. 5270 Asynchronously writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value.
5400 </summary> 5271 </summary>
5401 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> 5272 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.UInt16"/> value to write.</param>
5402 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> 5273 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5403 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> 5274 <returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
5404 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception> 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>
5405 </member> 5277 </member>
5406 <member name="T:Newtonsoft.Json.JsonSerializer"> 5278 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefinedAsync(System.Threading.CancellationToken)">
5407 <summary> 5279 <summary>
5408 Serializes and deserializes objects into and from the JSON format. 5280 Asynchronously writes an undefined value.
5409 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
5410 </summary> 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>
5411 </member> 5286 </member>
5412 <member name="M:Newtonsoft.Json.JsonSerializer.#ctor"> 5287 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespaceAsync(System.String,System.Threading.CancellationToken)">
5413 <summary> 5288 <summary>
5414 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class. 5289 Asynchronously writes the given white space.
5415 </summary> 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>
5416 </member> 5296 </member>
5417 <member name="M:Newtonsoft.Json.JsonSerializer.Create"> 5297 <member name="M:Newtonsoft.Json.JsonWriter.SetWriteStateAsync(Newtonsoft.Json.JsonToken,System.Object,System.Threading.CancellationToken)">
5418 <summary> 5298 <summary>
5419 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance. 5299 Asynchronously ets the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5420 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5421 </summary> 5300 </summary>
5422 <returns> 5301 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> being written.</param>
5423 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance. 5302 <param name="value">The value being written.</param>
5424 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings. 5303 <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
5425 </returns> 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>
5426 </member> 5307 </member>
5427 <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)"> 5308 <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
5428 <summary> 5309 <summary>
5429 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5310 Gets or sets a value indicating whether the destination should be closed when this writer is closed.
5430 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5431 </summary> 5311 </summary>
5432 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param> 5312 <value>
5433 <returns> 5313 <c>true</c> to close the destination when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
5434 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5314 </value>
5435 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will not use default settings.
5436 </returns>
5437 </member> 5315 </member>
5438 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault"> 5316 <member name="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose">
5439 <summary> 5317 <summary>
5440 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance. 5318 Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
5441 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5442 </summary> 5319 </summary>
5443 <returns> 5320 <value>
5444 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance. 5321 <c>true</c> to auto-complete the JSON when this writer is closed; otherwise <c>false</c>. The default is <c>true</c>.
5445 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings. 5322 </value>
5446 </returns>
5447 </member> 5323 </member>
5448 <member name="M:Newtonsoft.Json.JsonSerializer.CreateDefault(Newtonsoft.Json.JsonSerializerSettings)"> 5324 <member name="P:Newtonsoft.Json.JsonWriter.Top">
5449 <summary> 5325 <summary>
5450 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. 5326 Gets the top.
5451 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5452 </summary> 5327 </summary>
5453 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param> 5328 <value>The top.</value>
5454 <returns>
5455 A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
5456 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> will use default settings.
5457 </returns>
5458 </member> 5329 </member>
5459 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)"> 5330 <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
5460 <summary> 5331 <summary>
5461 Populates the JSON values onto the target object. 5332 Gets the state of the writer.
5462 </summary> 5333 </summary>
5463 <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
5464 <param name="target">The target object to populate values onto.</param>
5465 </member> 5334 </member>
5466 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)"> 5335 <member name="P:Newtonsoft.Json.JsonWriter.Path">
5467 <summary> 5336 <summary>
5468 Populates the JSON values onto the target object. 5337 Gets the path of the writer.
5469 </summary> 5338 </summary>
5470 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
5471 <param name="target">The target object to populate values onto.</param>
5472 </member> 5339 </member>
5473 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)"> 5340 <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
5474 <summary> 5341 <summary>
5475 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. 5342 Gets or sets a value indicating how JSON text output should be formatted.
5476 </summary> 5343 </summary>
5477 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
5478 <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
5479 </member> 5344 </member>
5480 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)"> 5345 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatHandling">
5481 <summary> 5346 <summary>
5482 Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/> 5347 Gets or sets how dates are written to JSON text.
5483 into an instance of the specified type.
5484 </summary> 5348 </summary>
5485 <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
5486 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5487 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5488 </member> 5349 </member>
5489 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)"> 5350 <member name="P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling">
5490 <summary> 5351 <summary>
5491 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/> 5352 Gets or sets how <see cref="T:System.DateTime"/> time zones are handled when writing JSON text.
5492 into an instance of the specified type.
5493 </summary> 5353 </summary>
5494 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5495 <typeparam name="T">The type of the object to deserialize.</typeparam>
5496 <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
5497 </member> 5354 </member>
5498 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)"> 5355 <member name="P:Newtonsoft.Json.JsonWriter.StringEscapeHandling">
5499 <summary> 5356 <summary>
5500 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/> 5357 Gets or sets how strings are escaped when writing JSON text.
5501 into an instance of the specified type.
5502 </summary> 5358 </summary>
5503 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
5504 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
5505 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
5506 </member> 5359 </member>
5507 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)"> 5360 <member name="P:Newtonsoft.Json.JsonWriter.FloatFormatHandling">
5508 <summary> 5361 <summary>
5509 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure 5362 Gets or sets how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
5510 to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. 5363 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5364 are written to JSON text.
5511 </summary> 5365 </summary>
5512 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
5513 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5514 </member> 5366 </member>
5515 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)"> 5367 <member name="P:Newtonsoft.Json.JsonWriter.DateFormatString">
5516 <summary> 5368 <summary>
5517 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure 5369 Gets or sets how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatted when writing JSON text.
5518 to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
5519 </summary> 5370 </summary>
5520 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
5521 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5522 <param name="objectType">
5523 The type of the value being serialized.
5524 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.
5525 Specifing the type is optional.
5526 </param>
5527 </member> 5371 </member>
5528 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object,System.Type)"> 5372 <member name="P:Newtonsoft.Json.JsonWriter.Culture">
5529 <summary> 5373 <summary>
5530 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure 5374 Gets or sets the culture used when writing JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
5531 to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
5532 </summary> 5375 </summary>
5533 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param> 5376 </member>
5534 <param name="value">The <see cref="T:System.Object"/> to serialize.</param> 5377 <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
5535 <param name="objectType"> 5378 <summary>
5536 The type of the value being serialized. 5379 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriter"/> class.
5537 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. 5380 </summary>
5538 Specifing the type is optional. 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"/>.
5539 </param> 5465 </param>
5540 </member> 5466 </member>
5541 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)"> 5467 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonToken)">
5542 <summary> 5468 <summary>
5543 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure 5469 Writes the <see cref="T:Newtonsoft.Json.JsonToken"/> token.
5544 to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5545 </summary> 5470 </summary>
5546 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param> 5471 <param name="token">The <see cref="T:Newtonsoft.Json.JsonToken"/> to write.</param>
5547 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
5548 </member> 5472 </member>
5549 <member name="E:Newtonsoft.Json.JsonSerializer.Error"> 5473 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5550 <summary> 5474 <summary>
5551 Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization. 5475 Writes the specified end token.
5552 </summary> 5476 </summary>
5477 <param name="token">The end token to write.</param>
5553 </member> 5478 </member>
5554 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver"> 5479 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
5555 <summary> 5480 <summary>
5556 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. 5481 Writes indent characters.
5557 </summary> 5482 </summary>
5558 </member> 5483 </member>
5559 <member name="P:Newtonsoft.Json.JsonSerializer.Binder"> 5484 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
5560 <summary> 5485 <summary>
5561 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names. 5486 Writes the JSON value delimiter.
5562 </summary> 5487 </summary>
5563 </member> 5488 </member>
5564 <member name="P:Newtonsoft.Json.JsonSerializer.TraceWriter"> 5489 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
5565 <summary> 5490 <summary>
5566 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.ITraceWriter"/> used by the serializer when writing trace messages. 5491 Writes an indent space.
5567 </summary> 5492 </summary>
5568 <value>The trace writer.</value>
5569 </member> 5493 </member>
5570 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"> 5494 <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
5571 <summary> 5495 <summary>
5572 Gets or sets how type name writing and reading is handled by the serializer. 5496 Writes a null value.
5573 </summary> 5497 </summary>
5574 </member> 5498 </member>
5575 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat"> 5499 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
5576 <summary> 5500 <summary>
5577 Gets or sets how a type name assembly is written and resolved by the serializer. 5501 Writes an undefined value.
5578 </summary> 5502 </summary>
5579 <value>The type name assembly format.</value>
5580 </member> 5503 </member>
5581 <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling"> 5504 <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
5582 <summary> 5505 <summary>
5583 Gets or sets how object references are preserved by the serializer. 5506 Writes raw JSON without changing the writer's state.
5584 </summary> 5507 </summary>
5508 <param name="json">The raw JSON to write.</param>
5585 </member> 5509 </member>
5586 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling"> 5510 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
5587 <summary> 5511 <summary>
5588 Get or set how reference loops (e.g. a class referencing itself) is handled. 5512 Writes raw JSON where a value is expected and updates the writer's state.
5589 </summary> 5513 </summary>
5514 <param name="json">The raw JSON to write.</param>
5590 </member> 5515 </member>
5591 <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling"> 5516 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
5592 <summary> 5517 <summary>
5593 Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. 5518 Writes a <see cref="T:System.String"/> value.
5594 </summary> 5519 </summary>
5520 <param name="value">The <see cref="T:System.String"/> value to write.</param>
5595 </member> 5521 </member>
5596 <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling"> 5522 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
5597 <summary> 5523 <summary>
5598 Get or set how null values are handled during serialization and deserialization. 5524 Writes a <see cref="T:System.Int32"/> value.
5599 </summary> 5525 </summary>
5526 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5600 </member> 5527 </member>
5601 <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling"> 5528 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
5602 <summary> 5529 <summary>
5603 Get or set how null default are handled during serialization and deserialization. 5530 Writes a <see cref="T:System.UInt32"/> value.
5604 </summary> 5531 </summary>
5532 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5605 </member> 5533 </member>
5606 <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling"> 5534 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
5607 <summary> 5535 <summary>
5608 Gets or sets how objects are created during deserialization. 5536 Writes a <see cref="T:System.Int64"/> value.
5609 </summary> 5537 </summary>
5610 <value>The object creation handling.</value> 5538 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5611 </member> 5539 </member>
5612 <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling"> 5540 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
5613 <summary> 5541 <summary>
5614 Gets or sets how constructors are used during deserialization. 5542 Writes a <see cref="T:System.UInt64"/> value.
5615 </summary> 5543 </summary>
5616 <value>The constructor handling.</value> 5544 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5617 </member> 5545 </member>
5618 <member name="P:Newtonsoft.Json.JsonSerializer.MetadataPropertyHandling"> 5546 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
5619 <summary> 5547 <summary>
5620 Gets or sets how metadata properties are used during deserialization. 5548 Writes a <see cref="T:System.Single"/> value.
5621 </summary> 5549 </summary>
5622 <value>The metadata properties handling.</value> 5550 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5623 </member> 5551 </member>
5624 <member name="P:Newtonsoft.Json.JsonSerializer.Converters"> 5552 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
5625 <summary> 5553 <summary>
5626 Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization. 5554 Writes a <see cref="T:System.Double"/> value.
5627 </summary> 5555 </summary>
5628 <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value> 5556 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5629 </member> 5557 </member>
5630 <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver"> 5558 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
5631 <summary> 5559 <summary>
5632 Gets or sets the contract resolver used by the serializer when 5560 Writes a <see cref="T:System.Boolean"/> value.
5633 serializing .NET objects to JSON and vice versa.
5634 </summary> 5561 </summary>
5562 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5635 </member> 5563 </member>
5636 <member name="P:Newtonsoft.Json.JsonSerializer.Context"> 5564 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
5637 <summary> 5565 <summary>
5638 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods. 5566 Writes a <see cref="T:System.Int16"/> value.
5639 </summary> 5567 </summary>
5640 <value>The context.</value> 5568 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5641 </member> 5569 </member>
5642 <member name="P:Newtonsoft.Json.JsonSerializer.Formatting"> 5570 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
5643 <summary> 5571 <summary>
5644 Indicates how JSON text output is formatted. 5572 Writes a <see cref="T:System.UInt16"/> value.
5645 </summary> 5573 </summary>
5574 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5646 </member> 5575 </member>
5647 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatHandling"> 5576 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
5648 <summary> 5577 <summary>
5649 Get or set how dates are written to JSON text. 5578 Writes a <see cref="T:System.Char"/> value.
5650 </summary> 5579 </summary>
5580 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5651 </member> 5581 </member>
5652 <member name="P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling"> 5582 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
5653 <summary> 5583 <summary>
5654 Get or set how <see cref="T:System.DateTime"/> time zones are handling during serialization and deserialization. 5584 Writes a <see cref="T:System.Byte"/> value.
5655 </summary> 5585 </summary>
5586 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5656 </member> 5587 </member>
5657 <member name="P:Newtonsoft.Json.JsonSerializer.DateParseHandling"> 5588 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
5658 <summary> 5589 <summary>
5659 Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. 5590 Writes a <see cref="T:System.SByte"/> value.
5660 </summary> 5591 </summary>
5592 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5661 </member> 5593 </member>
5662 <member name="P:Newtonsoft.Json.JsonSerializer.FloatParseHandling"> 5594 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
5663 <summary> 5595 <summary>
5664 Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. 5596 Writes a <see cref="T:System.Decimal"/> value.
5665 </summary> 5597 </summary>
5598 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5666 </member> 5599 </member>
5667 <member name="P:Newtonsoft.Json.JsonSerializer.FloatFormatHandling"> 5600 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
5668 <summary> 5601 <summary>
5669 Get or set how special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, 5602 Writes a <see cref="T:System.DateTime"/> value.
5670 <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/>,
5671 are written as JSON text.
5672 </summary> 5603 </summary>
5604 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5673 </member> 5605 </member>
5674 <member name="P:Newtonsoft.Json.JsonSerializer.StringEscapeHandling"> 5606 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
5675 <summary> 5607 <summary>
5676 Get or set how strings are escaped when writing JSON text. 5608 Writes a <see cref="T:System.DateTimeOffset"/> value.
5677 </summary> 5609 </summary>
5610 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5678 </member> 5611 </member>
5679 <member name="P:Newtonsoft.Json.JsonSerializer.DateFormatString"> 5612 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
5680 <summary> 5613 <summary>
5681 Get or set how <see cref="T:System.DateTime"/> and <see cref="T:System.DateTimeOffset"/> values are formatting when writing JSON text. 5614 Writes a <see cref="T:System.Guid"/> value.
5682 </summary> 5615 </summary>
5616 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5683 </member> 5617 </member>
5684 <member name="P:Newtonsoft.Json.JsonSerializer.Culture"> 5618 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
5685 <summary> 5619 <summary>
5686 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. 5620 Writes a <see cref="T:System.TimeSpan"/> value.
5687 </summary> 5621 </summary>
5622 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5688 </member> 5623 </member>
5689 <member name="P:Newtonsoft.Json.JsonSerializer.MaxDepth"> 5624 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
5690 <summary> 5625 <summary>
5691 Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref="T:Newtonsoft.Json.JsonReaderException"/>. 5626 Writes a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value.
5692 </summary> 5627 </summary>
5628 <param name="value">The <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int32"/> value to write.</param>
5693 </member> 5629 </member>
5694 <member name="P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent"> 5630 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
5695 <summary> 5631 <summary>
5696 Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. 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.
5697 </summary> 5852 </summary>
5698 <value>
5699 <c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.
5700 </value>
5701 </member> 5853 </member>
5702 <member name="T:Newtonsoft.Json.Linq.Extensions"> 5854 <member name="T:Newtonsoft.Json.Linq.Extensions">
5703 <summary> 5855 <summary>
@@ -5710,7 +5862,15 @@
5710 </summary> 5862 </summary>
5711 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam> 5863 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
5712 <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> 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>
5713 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the ancestors of every node in the source collection.</returns> 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>
5714 </member> 5874 </member>
5715 <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})"> 5875 <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
5716 <summary> 5876 <summary>
@@ -5718,7 +5878,15 @@
5718 </summary> 5878 </summary>
5719 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam> 5879 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
5720 <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> 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>
5721 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the descendants of every node in the source collection.</returns> 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>
5722 </member> 5890 </member>
5723 <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})"> 5891 <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
5724 <summary> 5892 <summary>
@@ -5733,14 +5901,14 @@
5733 </summary> 5901 </summary>
5734 <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> 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>
5735 <param name="key">The token key.</param> 5903 <param name="key">The token key.</param>
5736 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection with the given key.</returns> 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>
5737 </member> 5905 </member>
5738 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> 5906 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5739 <summary> 5907 <summary>
5740 Returns a collection of child values of every object in the source collection. 5908 Returns a collection of child values of every object in the source collection.
5741 </summary> 5909 </summary>
5742 <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> 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>
5743 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns> 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>
5744 </member> 5912 </member>
5745 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)"> 5913 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
5746 <summary> 5914 <summary>
@@ -5749,7 +5917,7 @@
5749 <typeparam name="U">The type to convert the values to.</typeparam> 5917 <typeparam name="U">The type to convert the values to.</typeparam>
5750 <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> 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>
5751 <param name="key">The token key.</param> 5919 <param name="key">The token key.</param>
5752 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection with the given key.</returns> 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>
5753 </member> 5921 </member>
5754 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> 5922 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5755 <summary> 5923 <summary>
@@ -5757,7 +5925,7 @@
5757 </summary> 5925 </summary>
5758 <typeparam name="U">The type to convert the values to.</typeparam> 5926 <typeparam name="U">The type to convert the values to.</typeparam>
5759 <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> 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>
5760 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns> 5928 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5761 </member> 5929 </member>
5762 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> 5930 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5763 <summary> 5931 <summary>
@@ -5782,7 +5950,7 @@
5782 </summary> 5950 </summary>
5783 <typeparam name="T">The source collection type.</typeparam> 5951 <typeparam name="T">The source collection type.</typeparam>
5784 <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> 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>
5785 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the values of every node in the source collection.</returns> 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>
5786 </member> 5954 </member>
5787 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})"> 5955 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
5788 <summary> 5956 <summary>
@@ -5791,7 +5959,7 @@
5791 <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> 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>
5792 <typeparam name="U">The type to convert the values to.</typeparam> 5960 <typeparam name="U">The type to convert the values to.</typeparam>
5793 <typeparam name="T">The source collection type.</typeparam> 5961 <typeparam name="T">The source collection type.</typeparam>
5794 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns> 5962 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every token in the source collection.</returns>
5795 </member> 5963 </member>
5796 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> 5964 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
5797 <summary> 5965 <summary>
@@ -5808,98 +5976,357 @@
5808 <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> 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>
5809 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns> 5977 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
5810 </member> 5978 </member>
5811 <member name="T:Newtonsoft.Json.Linq.JConstructor"> 5979 <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
5812 <summary> 5980 <summary>
5813 Represents a JSON constructor. 5981 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
5814 </summary> 5982 </summary>
5983 <typeparam name="T">The type of token.</typeparam>
5815 </member> 5984 </member>
5816 <member name="T:Newtonsoft.Json.Linq.JContainer"> 5985 <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
5817 <summary> 5986 <summary>
5818 Represents a token that can contain other tokens. 5987 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
5819 </summary> 5988 </summary>
5989 <value></value>
5820 </member> 5990 </member>
5821 <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)"> 5991 <member name="T:Newtonsoft.Json.Linq.JArray">
5822 <summary> 5992 <summary>
5823 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event. 5993 Represents a JSON array.
5824 </summary> 5994 </summary>
5825 <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param> 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>
5826 </member> 5998 </member>
5827 <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)"> 5999 <member name="M:Newtonsoft.Json.Linq.JArray.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
5828 <summary> 6000 <summary>
5829 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event. 6001 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
5830 </summary> 6002 </summary>
5831 <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param> 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>
5832 </member> 6007 </member>
5833 <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)"> 6008 <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
5834 <summary> 6009 <summary>
5835 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event. 6010 Asynchronously loads a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5836 </summary> 6011 </summary>
5837 <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param> 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>
5838 </member> 6016 </member>
5839 <member name="M:Newtonsoft.Json.Linq.JContainer.Children"> 6017 <member name="M:Newtonsoft.Json.Linq.JArray.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
5840 <summary> 6018 <summary>
5841 Returns a collection of the child tokens of this token, in document order. 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.
5842 </summary> 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>
5843 <returns> 6139 <returns>
5844 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. 6140 The index of <paramref name="item"/> if found in the list; otherwise, -1.
5845 </returns> 6141 </returns>
5846 </member> 6142 </member>
5847 <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1"> 6143 <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
5848 <summary> 6144 <summary>
5849 Returns a collection of the child values of this token, in document order. 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.
5850 </summary> 6165 </summary>
5851 <typeparam name="T">The type to convert the values to.</typeparam>
5852 <returns> 6166 <returns>
5853 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. 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.
5854 </returns> 6168 </returns>
5855 </member> 6169 </member>
5856 <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants"> 6170 <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
5857 <summary> 6171 <summary>
5858 Returns a collection of the descendant tokens for this token in document order. 6172 Adds an item to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5859 </summary> 6173 </summary>
5860 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns> 6174 <param name="item">The object to add to the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
5861 </member> 6175 </member>
5862 <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)"> 6176 <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
5863 <summary> 6177 <summary>
5864 Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6178 Removes all items from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5865 </summary> 6179 </summary>
5866 <param name="content">The content to be added.</param>
5867 </member> 6180 </member>
5868 <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)"> 6181 <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
5869 <summary> 6182 <summary>
5870 Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6183 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> contains a specific value.
5871 </summary> 6184 </summary>
5872 <param name="content">The content to be added.</param> 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>
5873 </member> 6189 </member>
5874 <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter"> 6190 <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)">
5875 <summary> 6191 <summary>
5876 Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6192 Copies the elements of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> to an array, starting at a particular array index.
5877 </summary> 6193 </summary>
5878 <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns> 6194 <param name="array">The array.</param>
6195 <param name="arrayIndex">Index of the array.</param>
5879 </member> 6196 </member>
5880 <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)"> 6197 <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly">
5881 <summary> 6198 <summary>
5882 Replaces the children nodes of this token with the specified content. 6199 Gets a value indicating whether the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only.
5883 </summary> 6200 </summary>
5884 <param name="content">The content.</param> 6201 <returns><c>true</c> if the <see cref="T:Newtonsoft.Json.Linq.JArray"/> is read-only; otherwise, <c>false</c>.</returns>
5885 </member> 6202 </member>
5886 <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll"> 6203 <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
5887 <summary> 6204 <summary>
5888 Removes the child nodes from this token. 6205 Removes the first occurrence of a specific object from the <see cref="T:Newtonsoft.Json.Linq.JArray"/>.
5889 </summary> 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>
5890 </member> 6211 </member>
5891 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)"> 6212 <member name="T:Newtonsoft.Json.Linq.JConstructor">
5892 <summary> 6213 <summary>
5893 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6214 Represents a JSON constructor.
5894 </summary> 6215 </summary>
5895 <param name="content">The content to be merged.</param>
5896 </member> 6216 </member>
5897 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)"> 6217 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
5898 <summary> 6218 <summary>
5899 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>. 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.
5900 </summary> 6329 </summary>
5901 <param name="content">The content to be merged.</param>
5902 <param name="settings">The <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/> used to merge the content.</param>
5903 </member> 6330 </member>
5904 <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged"> 6331 <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
5905 <summary> 6332 <summary>
@@ -5922,6 +6349,24 @@
5922 </summary> 6349 </summary>
5923 <value>The container's children tokens.</value> 6350 <value>The container's children tokens.</value>
5924 </member> 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>
5925 <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues"> 6370 <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
5926 <summary> 6371 <summary>
5927 Gets a value indicating whether this token has child tokens. 6372 Gets a value indicating whether this token has child tokens.
@@ -5946,86 +6391,88 @@
5946 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6391 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5947 </value> 6392 </value>
5948 </member> 6393 </member>
5949 <member name="P:Newtonsoft.Json.Linq.JContainer.Count"> 6394 <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
5950 <summary> 6395 <summary>
5951 Gets the count of child JSON tokens. 6396 Returns a collection of the child tokens of this token, in document order.
5952 </summary> 6397 </summary>
5953 <value>The count of child JSON tokens</value> 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>
5954 </member> 6401 </member>
5955 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor"> 6402 <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
5956 <summary> 6403 <summary>
5957 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class. 6404 Returns a collection of the child values of this token, in document order.
5958 </summary> 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>
5959 </member> 6410 </member>
5960 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)"> 6411 <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
5961 <summary> 6412 <summary>
5962 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object. 6413 Returns a collection of the descendant tokens for this token in document order.
5963 </summary> 6414 </summary>
5964 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param> 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>
5965 </member> 6416 </member>
5966 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])"> 6417 <member name="M:Newtonsoft.Json.Linq.JContainer.DescendantsAndSelf">
5967 <summary> 6418 <summary>
5968 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content. 6419 Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
5969 </summary> 6420 </summary>
5970 <param name="name">The constructor name.</param> 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>
5971 <param name="content">The contents of the constructor.</param>
5972 </member> 6422 </member>
5973 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)"> 6423 <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
5974 <summary> 6424 <summary>
5975 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content. 6425 Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5976 </summary> 6426 </summary>
5977 <param name="name">The constructor name.</param> 6427 <param name="content">The content to be added.</param>
5978 <param name="content">The contents of the constructor.</param>
5979 </member> 6428 </member>
5980 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)"> 6429 <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
5981 <summary> 6430 <summary>
5982 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name. 6431 Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5983 </summary> 6432 </summary>
5984 <param name="name">The constructor name.</param> 6433 <param name="content">The content to be added.</param>
5985 </member> 6434 </member>
5986 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 6435 <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
5987 <summary> 6436 <summary>
5988 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 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"/>.
5989 </summary> 6438 </summary>
5990 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 6439 <returns>A <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
5991 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5992 </member> 6440 </member>
5993 <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)"> 6441 <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
5994 <summary> 6442 <summary>
5995 Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 6443 Replaces the child nodes of this token with the specified content.
5996 </summary> 6444 </summary>
5997 <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> 6445 <param name="content">The content.</param>
5998 <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>
5999 </member> 6446 </member>
6000 <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens"> 6447 <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
6001 <summary> 6448 <summary>
6002 Gets the container's children tokens. 6449 Removes the child nodes from this token.
6003 </summary> 6450 </summary>
6004 <value>The container's children tokens.</value>
6005 </member> 6451 </member>
6006 <member name="P:Newtonsoft.Json.Linq.JConstructor.Name"> 6452 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object)">
6007 <summary> 6453 <summary>
6008 Gets or sets the name of this constructor. 6454 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6009 </summary> 6455 </summary>
6010 <value>The constructor name.</value> 6456 <param name="content">The content to be merged.</param>
6011 </member> 6457 </member>
6012 <member name="P:Newtonsoft.Json.Linq.JConstructor.Type"> 6458 <member name="M:Newtonsoft.Json.Linq.JContainer.Merge(System.Object,Newtonsoft.Json.Linq.JsonMergeSettings)">
6013 <summary> 6459 <summary>
6014 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 6460 Merge the specified content into this <see cref="T:Newtonsoft.Json.Linq.JToken"/> using <see cref="T:Newtonsoft.Json.Linq.JsonMergeSettings"/>.
6015 </summary> 6461 </summary>
6016 <value>The type.</value> 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>
6017 </member> 6464 </member>
6018 <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)"> 6465 <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
6019 <summary> 6466 <summary>
6020 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. 6467 Gets the count of child JSON tokens.
6021 </summary> 6468 </summary>
6022 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> 6469 <value>The count of child JSON tokens.</value>
6023 </member> 6470 </member>
6024 <member name="T:Newtonsoft.Json.Linq.JEnumerable`1"> 6471 <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
6025 <summary> 6472 <summary>
6026 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects. 6473 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
6027 </summary> 6474 </summary>
6028 <typeparam name="T">The type of token</typeparam> 6475 <typeparam name="T">The type of token.</typeparam>
6029 </member> 6476 </member>
6030 <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty"> 6477 <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
6031 <summary> 6478 <summary>
@@ -6040,19 +6487,17 @@
6040 </member> 6487 </member>
6041 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator"> 6488 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
6042 <summary> 6489 <summary>
6043 Returns an enumerator that iterates through the collection. 6490 Returns an enumerator that can be used to iterate through the collection.
6044 </summary> 6491 </summary>
6045 <returns> 6492 <returns>
6046 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. 6493 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
6047 </returns> 6494 </returns>
6048 </member> 6495 </member>
6049 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator"> 6496 <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6050 <summary> 6497 <summary>
6051 Returns an enumerator that iterates through a collection. 6498 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
6052 </summary> 6499 </summary>
6053 <returns> 6500 <value></value>
6054 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
6055 </returns>
6056 </member> 6501 </member>
6057 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})"> 6502 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(Newtonsoft.Json.Linq.JEnumerable{`0})">
6058 <summary> 6503 <summary>
@@ -6080,12 +6525,6 @@
6080 A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. 6525 A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
6081 </returns> 6526 </returns>
6082 </member> 6527 </member>
6083 <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
6084 <summary>
6085 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
6086 </summary>
6087 <value></value>
6088 </member>
6089 <member name="T:Newtonsoft.Json.Linq.JObject"> 6528 <member name="T:Newtonsoft.Json.Linq.JObject">
6090 <summary> 6529 <summary>
6091 Represents a JSON object. 6530 Represents a JSON object.
@@ -6094,6 +6533,53 @@
6094 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" /> 6533 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6095 </example> 6534 </example>
6096 </member> 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>
6097 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor"> 6583 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
6098 <summary> 6584 <summary>
6099 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class. 6585 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
@@ -6117,31 +6603,74 @@
6117 </summary> 6603 </summary>
6118 <param name="content">The contents of the object.</param> 6604 <param name="content">The contents of the object.</param>
6119 </member> 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>
6120 <member name="M:Newtonsoft.Json.Linq.JObject.Properties"> 6612 <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
6121 <summary> 6613 <summary>
6122 Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties. 6614 Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> of this object's properties.
6123 </summary> 6615 </summary>
6124 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns> 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>
6125 </member> 6617 </member>
6126 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)"> 6618 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
6127 <summary> 6619 <summary>
6128 Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name. 6620 Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name.
6129 </summary> 6621 </summary>
6130 <param name="name">The property name.</param> 6622 <param name="name">The property name.</param>
6131 <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns> 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>
6132 </member> 6634 </member>
6133 <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues"> 6635 <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
6134 <summary> 6636 <summary>
6135 Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values. 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.
6136 </summary> 6638 </summary>
6137 <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns> 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>
6138 </member> 6652 </member>
6139 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)"> 6653 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
6140 <summary> 6654 <summary>
6141 Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 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"/>.
6142 </summary> 6666 </summary>
6143 <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> 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>
6144 <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> 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>
6145 </member> 6674 </member>
6146 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)"> 6675 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
6147 <summary> 6676 <summary>
@@ -6149,8 +6678,26 @@
6149 </summary> 6678 </summary>
6150 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> 6679 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6151 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns> 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>
6152 <example> 6699 <example>
6153 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text"/> 6700 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParse" title="Parsing a JSON Object from Text" />
6154 </example> 6701 </example>
6155 </member> 6702 </member>
6156 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)"> 6703 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
@@ -6158,7 +6705,7 @@
6158 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object. 6705 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
6159 </summary> 6706 </summary>
6160 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param> 6707 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6161 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns> 6708 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6162 </member> 6709 </member>
6163 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> 6710 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
6164 <summary> 6711 <summary>
@@ -6166,7 +6713,7 @@
6166 </summary> 6713 </summary>
6167 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param> 6714 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
6168 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param> 6715 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6169 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns> 6716 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object.</returns>
6170 </member> 6717 </member>
6171 <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 6718 <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6172 <summary> 6719 <summary>
@@ -6201,7 +6748,7 @@
6201 <param name="propertyName">Name of the property.</param> 6748 <param name="propertyName">Name of the property.</param>
6202 <param name="value">The value.</param> 6749 <param name="value">The value.</param>
6203 <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param> 6750 <param name="comparison">One of the enumeration values that specifies how the strings will be compared.</param>
6204 <returns>true if a value was successfully retrieved; otherwise, false.</returns> 6751 <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6205 </member> 6752 </member>
6206 <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)"> 6753 <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
6207 <summary> 6754 <summary>
@@ -6210,24 +6757,31 @@
6210 <param name="propertyName">Name of the property.</param> 6757 <param name="propertyName">Name of the property.</param>
6211 <param name="value">The value.</param> 6758 <param name="value">The value.</param>
6212 </member> 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>
6213 <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)"> 6767 <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
6214 <summary> 6768 <summary>
6215 Removes the property with the specified name. 6769 Removes the property with the specified name.
6216 </summary> 6770 </summary>
6217 <param name="propertyName">Name of the property.</param> 6771 <param name="propertyName">Name of the property.</param>
6218 <returns>true if item was successfully removed; otherwise, false.</returns> 6772 <returns><c>true</c> if item was successfully removed; otherwise, <c>false</c>.</returns>
6219 </member> 6773 </member>
6220 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)"> 6774 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
6221 <summary> 6775 <summary>
6222 Tries the get value. 6776 Tries to get the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
6223 </summary> 6777 </summary>
6224 <param name="propertyName">Name of the property.</param> 6778 <param name="propertyName">Name of the property.</param>
6225 <param name="value">The value.</param> 6779 <param name="value">The value.</param>
6226 <returns>true if a value was successfully retrieved; otherwise, false.</returns> 6780 <returns><c>true</c> if a value was successfully retrieved; otherwise, <c>false</c>.</returns>
6227 </member> 6781 </member>
6228 <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator"> 6782 <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
6229 <summary> 6783 <summary>
6230 Returns an enumerator that iterates through the collection. 6784 Returns an enumerator that can be used to iterate through the collection.
6231 </summary> 6785 </summary>
6232 <returns> 6786 <returns>
6233 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. 6787 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
@@ -6245,379 +6799,1329 @@
6245 </summary> 6799 </summary>
6246 <param name="propertyName">Name of the property.</param> 6800 <param name="propertyName">Name of the property.</param>
6247 </member> 6801 </member>
6248 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties"> 6802 <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)">
6249 <summary> 6803 <summary>
6250 Returns the properties for this instance of a component. 6804 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6251 </summary> 6805 </summary>
6806 <param name="parameter">The expression tree representation of the runtime value.</param>
6252 <returns> 6807 <returns>
6253 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance. 6808 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6254 </returns> 6809 </returns>
6255 </member> 6810 </member>
6256 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])"> 6811 <member name="T:Newtonsoft.Json.Linq.JProperty">
6257 <summary> 6812 <summary>
6258 Returns the properties for this instance of a component using the attribute array as a filter. 6813 Represents a JSON property.
6259 </summary> 6814 </summary>
6260 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
6261 <returns>
6262 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
6263 </returns>
6264 </member> 6815 </member>
6265 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes"> 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)">
6266 <summary> 6924 <summary>
6267 Returns a collection of custom attributes for this instance of a component. 6925 When overridden in a derived class, returns whether resetting an object changes its value.
6268 </summary> 6926 </summary>
6269 <returns> 6927 <returns>
6270 An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object. 6928 <c>true</c> if resetting the component changes its value; otherwise, <c>false</c>.
6271 </returns> 6929 </returns>
6930 <param name="component">The component to test for reset capability.</param>
6272 </member> 6931 </member>
6273 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName"> 6932 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
6274 <summary> 6933 <summary>
6275 Returns the class name of this instance of a component. 6934 When overridden in a derived class, gets the current value of the property on a component.
6276 </summary> 6935 </summary>
6277 <returns> 6936 <returns>
6278 The class name of the object, or null if the class does not have a name. 6937 The value of a property for a given component.
6279 </returns> 6938 </returns>
6939 <param name="component">The component with the property for which to retrieve the value.</param>
6280 </member> 6940 </member>
6281 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName"> 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)">
6282 <summary> 6955 <summary>
6283 Returns the name of this instance of a component. 6956 When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
6284 </summary> 6957 </summary>
6285 <returns> 6958 <returns>
6286 The name of the object, or null if the object does not have a name. 6959 <c>true</c> if the property should be persisted; otherwise, <c>false</c>.
6287 </returns> 6960 </returns>
6961 <param name="component">The component with the property to be examined for persistence.</param>
6288 </member> 6962 </member>
6289 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter"> 6963 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
6290 <summary> 6964 <summary>
6291 Returns a type converter for this instance of a component. 6965 When overridden in a derived class, gets the type of the component this property is bound to.
6292 </summary> 6966 </summary>
6293 <returns> 6967 <returns>
6294 A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object. 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.
6295 </returns> 6972 </returns>
6296 </member> 6973 </member>
6297 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent"> 6974 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
6298 <summary> 6975 <summary>
6299 Returns the default event for this instance of a component. 6976 When overridden in a derived class, gets a value indicating whether this property is read-only.
6300 </summary> 6977 </summary>
6301 <returns> 6978 <returns>
6302 An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events. 6979 <c>true</c> if the property is read-only; otherwise, <c>false</c>.
6303 </returns> 6980 </returns>
6304 </member> 6981 </member>
6305 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty"> 6982 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
6306 <summary> 6983 <summary>
6307 Returns the default property for this instance of a component. 6984 When overridden in a derived class, gets the type of the property.
6308 </summary> 6985 </summary>
6309 <returns> 6986 <returns>
6310 A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties. 6987 A <see cref="T:System.Type"/> that represents the type of the property.
6311 </returns> 6988 </returns>
6312 </member> 6989 </member>
6313 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)"> 6990 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
6314 <summary> 6991 <summary>
6315 Returns an editor of the specified type for this instance of a component. 6992 Gets the hash code for the name of the member.
6316 </summary> 6993 </summary>
6317 <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param> 6994 <value></value>
6318 <returns> 6995 <returns>
6319 An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found. 6996 The hash code for the name of the member.
6320 </returns> 6997 </returns>
6321 </member> 6998 </member>
6322 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])"> 6999 <member name="T:Newtonsoft.Json.Linq.JRaw">
6323 <summary> 7000 <summary>
6324 Returns the events for this instance of a component using the specified attribute array as a filter. 7001 Represents a raw JSON string.
6325 </summary> 7002 </summary>
6326 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param> 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>
6327 <returns> 7121 <returns>
6328 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance. 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.
6329 </returns> 7127 </returns>
6330 </member> 7128 </member>
6331 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents"> 7129 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFromAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6332 <summary> 7130 <summary>
6333 Returns the events for this instance of a component. 7131 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6334 </summary> 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>
6335 <returns> 7137 <returns>
6336 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance. 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.
6337 </returns> 7143 </returns>
6338 </member> 7144 </member>
6339 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)"> 7145 <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,System.Threading.CancellationToken)">
6340 <summary> 7146 <summary>
6341 Returns an object that contains the property described by the specified property descriptor. 7147 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6342 </summary> 7148 </summary>
6343 <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param> 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>
6344 <returns> 7151 <returns>
6345 An <see cref="T:System.Object"/> that represents the owner of the specified property. 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.
6346 </returns> 7156 </returns>
6347 </member> 7157 </member>
6348 <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)"> 7158 <member name="M:Newtonsoft.Json.Linq.JToken.LoadAsync(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings,System.Threading.CancellationToken)">
6349 <summary> 7159 <summary>
6350 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. 7160 Asynchronously creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6351 </summary> 7161 </summary>
6352 <param name="parameter">The expression tree representation of the runtime value.</param> 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>
6353 <returns> 7166 <returns>
6354 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. 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.
6355 </returns> 7171 </returns>
6356 </member> 7172 </member>
6357 <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens"> 7173 <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
6358 <summary> 7174 <summary>
6359 Gets the container's children tokens. 7175 Gets a comparer that can compare two tokens for value equality.
6360 </summary> 7176 </summary>
6361 <value>The container's children tokens.</value> 7177 <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
6362 </member> 7178 </member>
6363 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"> 7179 <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
6364 <summary> 7180 <summary>
6365 Occurs when a property value changes. 7181 Gets or sets the parent.
6366 </summary> 7182 </summary>
7183 <value>The parent.</value>
6367 </member> 7184 </member>
6368 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"> 7185 <member name="P:Newtonsoft.Json.Linq.JToken.Root">
6369 <summary> 7186 <summary>
6370 Occurs when a property value is changing. 7187 Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6371 </summary> 7188 </summary>
7189 <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
6372 </member> 7190 </member>
6373 <member name="P:Newtonsoft.Json.Linq.JObject.Type"> 7191 <member name="P:Newtonsoft.Json.Linq.JToken.Type">
6374 <summary> 7192 <summary>
6375 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 7193 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6376 </summary> 7194 </summary>
6377 <value>The type.</value> 7195 <value>The type.</value>
6378 </member> 7196 </member>
6379 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)"> 7197 <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
6380 <summary> 7198 <summary>
6381 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. 7199 Gets a value indicating whether this token has child tokens.
6382 </summary> 7200 </summary>
6383 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> 7201 <value>
7202 <c>true</c> if this token has child values; otherwise, <c>false</c>.
7203 </value>
6384 </member> 7204 </member>
6385 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)"> 7205 <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
6386 <summary> 7206 <summary>
6387 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name. 7207 Compares the values of two tokens, including the values of all descendant tokens.
6388 </summary> 7208 </summary>
6389 <value></value> 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>
6390 </member> 7212 </member>
6391 <member name="T:Newtonsoft.Json.Linq.JArray"> 7213 <member name="P:Newtonsoft.Json.Linq.JToken.Next">
6392 <summary> 7214 <summary>
6393 Represents a JSON array. 7215 Gets the next sibling token of this node.
6394 </summary> 7216 </summary>
6395 <example> 7217 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
6396 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text" />
6397 </example>
6398 </member> 7218 </member>
6399 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor"> 7219 <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
6400 <summary> 7220 <summary>
6401 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class. 7221 Gets the previous sibling token of this node.
6402 </summary> 7222 </summary>
7223 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
6403 </member> 7224 </member>
6404 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)"> 7225 <member name="P:Newtonsoft.Json.Linq.JToken.Path">
6405 <summary> 7226 <summary>
6406 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object. 7227 Gets the path of the JSON token.
6407 </summary> 7228 </summary>
6408 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
6409 </member> 7229 </member>
6410 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])"> 7230 <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
6411 <summary> 7231 <summary>
6412 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content. 7232 Adds the specified content immediately after this token.
6413 </summary> 7233 </summary>
6414 <param name="content">The contents of the array.</param> 7234 <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
6415 </member> 7235 </member>
6416 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)"> 7236 <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
6417 <summary> 7237 <summary>
6418 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content. 7238 Adds the specified content immediately before this token.
6419 </summary> 7239 </summary>
6420 <param name="content">The contents of the array.</param> 7240 <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
6421 </member> 7241 </member>
6422 <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)"> 7242 <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
6423 <summary> 7243 <summary>
6424 Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 7244 Returns a collection of the ancestor tokens of this token.
6425 </summary> 7245 </summary>
6426 <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> 7246 <returns>A collection of the ancestor tokens of this token.</returns>
6427 <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>
6428 </member> 7247 </member>
6429 <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)"> 7248 <member name="M:Newtonsoft.Json.Linq.JToken.AncestorsAndSelf">
6430 <summary> 7249 <summary>
6431 Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON. 7250 Returns a collection of tokens that contain this token, and the ancestors of this token.
6432 </summary> 7251 </summary>
6433 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> 7252 <returns>A collection of tokens that contain this token, and the ancestors of this token.</returns>
6434 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
6435 <example>
6436 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\LinqToJsonTests.cs" region="LinqToJsonCreateParseArray" title="Parsing a JSON Array from Text"/>
6437 </example>
6438 </member> 7253 </member>
6439 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)"> 7254 <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
6440 <summary> 7255 <summary>
6441 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object. 7256 Returns a collection of the sibling tokens after this token, in document order.
6442 </summary> 7257 </summary>
6443 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param> 7258 <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
6444 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6445 </member> 7259 </member>
6446 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> 7260 <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
6447 <summary> 7261 <summary>
6448 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object. 7262 Returns a collection of the sibling tokens before this token, in document order.
6449 </summary> 7263 </summary>
6450 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param> 7264 <returns>A collection of the sibling tokens before this token, in document order.</returns>
6451 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
6452 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
6453 </member> 7265 </member>
6454 <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 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[])">
6455 <summary> 7324 <summary>
6456 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 7325 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6457 </summary> 7326 </summary>
6458 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 7327 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6459 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> 7328 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6460 </member> 7329 </member>
6461 <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)"> 7330 <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
6462 <summary> 7331 <summary>
6463 Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>. 7332 Returns the indented JSON for this token.
6464 </summary> 7333 </summary>
6465 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
6466 <returns> 7334 <returns>
6467 The index of <paramref name="item"/> if found in the list; otherwise, -1. 7335 The indented JSON for this token.
6468 </returns> 7336 </returns>
6469 </member> 7337 </member>
6470 <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)"> 7338 <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
6471 <summary> 7339 <summary>
6472 Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index. 7340 Returns the JSON for this token using the given formatting and converters.
6473 </summary> 7341 </summary>
6474 <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param> 7342 <param name="formatting">Indicates how the output should be formatted.</param>
6475 <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param> 7343 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>s which will be used when writing the token.</param>
6476 <exception cref="T:System.ArgumentOutOfRangeException"> 7344 <returns>The JSON for this token using the given formatting and converters.</returns>
6477 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6478 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6479 </member> 7345 </member>
6480 <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)"> 7346 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
6481 <summary> 7347 <summary>
6482 Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index. 7348 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
6483 </summary> 7349 </summary>
6484 <param name="index">The zero-based index of the item to remove.</param> 7350 <param name="value">The value.</param>
6485 <exception cref="T:System.ArgumentOutOfRangeException"> 7351 <returns>The result of the conversion.</returns>
6486 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
6487 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
6488 </member> 7352 </member>
6489 <member name="M:Newtonsoft.Json.Linq.JArray.GetEnumerator"> 7353 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
6490 <summary> 7354 <summary>
6491 Returns an enumerator that iterates through the collection. 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"/>.
6492 </summary> 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>
6493 <returns> 7906 <returns>
6494 A <see cref="T:System.Collections.Generic.IEnumerator`1" /> that can be used to iterate through the collection. 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.
6495 </returns> 7910 </returns>
6496 </member> 7911 </member>
6497 <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)"> 7912 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)">
6498 <summary> 7913 <summary>
6499 Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>. 7914 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6500 </summary> 7915 </summary>
6501 <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> 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>
6502 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception> 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>
6503 </member> 7924 </member>
6504 <member name="M:Newtonsoft.Json.Linq.JArray.Clear"> 7925 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
6505 <summary> 7926 <summary>
6506 Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>. 7927 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
6507 </summary> 7928 </summary>
6508 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception> 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>
6509 </member> 7931 </member>
6510 <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)"> 7932 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)">
6511 <summary> 7933 <summary>
6512 Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value. 7934 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
6513 </summary> 7935 </summary>
6514 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> 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>
6515 <returns> 7948 <returns>
6516 true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. 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.
6517 </returns> 7952 </returns>
6518 </member> 7953 </member>
6519 <member name="M:Newtonsoft.Json.Linq.JArray.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)"> 7954 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
6520 <summary> 7955 <summary>
6521 Copies to. 7956 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
6522 </summary> 7957 </summary>
6523 <param name="array">The array.</param> 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>
6524 <param name="arrayIndex">Index of the array.</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>
6525 </member> 7964 </member>
6526 <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)"> 7965 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
6527 <summary> 7966 <summary>
6528 Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>. 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.
6529 </summary> 7987 </summary>
6530 <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> 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>
6531 <returns> 8008 <returns>
6532 true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>. 8009 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object.
6533 </returns> 8010 </returns>
6534 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
6535 </member> 8011 </member>
6536 <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens"> 8012 <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)">
6537 <summary> 8013 <summary>
6538 Gets the container's children tokens. 8014 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6539 </summary> 8015 </summary>
6540 <value>The container's children tokens.</value> 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>
6541 </member> 8020 </member>
6542 <member name="P:Newtonsoft.Json.Linq.JArray.Type"> 8021 <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
6543 <summary> 8022 <summary>
6544 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 8023 Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
6545 </summary> 8024 </summary>
6546 <value>The type.</value> 8025 <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
6547 </member> 8026 </member>
6548 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)"> 8027 <member name="M:Newtonsoft.Json.Linq.JToken.AddAnnotation(System.Object)">
6549 <summary> 8028 <summary>
6550 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. 8029 Adds an object to the annotation list of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6551 </summary> 8030 </summary>
6552 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> 8031 <param name="annotation">The annotation to add.</param>
6553 </member> 8032 </member>
6554 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)"> 8033 <member name="M:Newtonsoft.Json.Linq.JToken.Annotation``1">
6555 <summary> 8034 <summary>
6556 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index. 8035 Get the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6557 </summary> 8036 </summary>
6558 <value></value> 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>
6559 </member> 8039 </member>
6560 <member name="P:Newtonsoft.Json.Linq.JArray.IsReadOnly"> 8040 <member name="M:Newtonsoft.Json.Linq.JToken.Annotation(System.Type)">
6561 <summary> 8041 <summary>
6562 Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only. 8042 Gets the first annotation object of the specified type from this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6563 </summary> 8043 </summary>
6564 <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, false.</returns> 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>
6565 </member> 8046 </member>
6566 <member name="T:Newtonsoft.Json.Linq.JTokenReader"> 8047 <member name="M:Newtonsoft.Json.Linq.JToken.Annotations``1">
6567 <summary> 8048 <summary>
6568 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. 8049 Gets a collection of annotations of the specified type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6569 </summary> 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>
6570 </member> 8053 </member>
6571 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)"> 8054 <member name="M:Newtonsoft.Json.Linq.JToken.Annotations(System.Type)">
6572 <summary> 8055 <summary>
6573 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class. 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.
6574 </summary> 8076 </summary>
6575 <param name="token">The token to read from.</param>
6576 </member> 8077 </member>
6577 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes"> 8078 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
6578 <summary> 8079 <summary>
6579 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. 8080 Determines whether the specified objects are equal.
6580 </summary> 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>
6581 <returns> 8084 <returns>
6582 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array. 8085 <c>true</c> if the specified objects are equal; otherwise, <c>false</c>.
6583 </returns> 8086 </returns>
6584 </member> 8087 </member>
6585 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal"> 8088 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
6586 <summary> 8089 <summary>
6587 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 8090 Returns a hash code for the specified object.
6588 </summary> 8091 </summary>
6589 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
6590 </member> 8095 </member>
6591 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32"> 8096 <member name="T:Newtonsoft.Json.Linq.JTokenReader">
6592 <summary> 8097 <summary>
6593 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 8098 Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
6594 </summary> 8099 </summary>
6595 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns>
6596 </member> 8100 </member>
6597 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString"> 8101 <member name="P:Newtonsoft.Json.Linq.JTokenReader.CurrentToken">
6598 <summary> 8102 <summary>
6599 Reads the next JSON token from the stream as a <see cref="T:System.String"/>. 8103 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the reader's current position.
6600 </summary> 8104 </summary>
6601 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns>
6602 </member> 8105 </member>
6603 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime"> 8106 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
6604 <summary> 8107 <summary>
6605 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 8108 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6606 </summary> 8109 </summary>
6607 <returns>A <see cref="T:System.String"/>. This method will return <c>null</c> at the end of an array.</returns> 8110 <param name="token">The token to read from.</param>
6608 </member> 8111 </member>
6609 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset"> 8112 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken,System.String)">
6610 <summary> 8113 <summary>
6611 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. 8114 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
6612 </summary> 8115 </summary>
6613 <returns>A <see cref="T:System.Nullable`1"/>. This method will return <c>null</c> at the end of an array.</returns> 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>
6614 </member> 8118 </member>
6615 <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read"> 8119 <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
6616 <summary> 8120 <summary>
6617 Reads the next JSON token from the stream. 8121 Reads the next JSON token from the underlying <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6618 </summary> 8122 </summary>
6619 <returns> 8123 <returns>
6620 true if the next token was read successfully; false if there are no more tokens to read. 8124 <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
6621 </returns> 8125 </returns>
6622 </member> 8126 </member>
6623 <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path"> 8127 <member name="P:Newtonsoft.Json.Linq.JTokenReader.Path">
@@ -6625,10 +8129,116 @@
6625 Gets the path of the current JSON token. 8129 Gets the path of the current JSON token.
6626 </summary> 8130 </summary>
6627 </member> 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>
6628 <member name="T:Newtonsoft.Json.Linq.JTokenWriter"> 8227 <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
6629 <summary> 8228 <summary>
6630 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. 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.
6631 </summary> 8240 </summary>
8241 <value>The token being written.</value>
6632 </member> 8242 </member>
6633 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)"> 8243 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
6634 <summary> 8244 <summary>
@@ -6643,22 +8253,26 @@
6643 </member> 8253 </member>
6644 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush"> 8254 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
6645 <summary> 8255 <summary>
6646 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. 8256 Flushes whatever is in the buffer to the underlying <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
6647 </summary> 8257 </summary>
6648 </member> 8258 </member>
6649 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close"> 8259 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
6650 <summary> 8260 <summary>
6651 Closes this stream and the underlying stream. 8261 Closes this writer.
8262 If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
6652 </summary> 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>
6653 </member> 8267 </member>
6654 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject"> 8268 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
6655 <summary> 8269 <summary>
6656 Writes the beginning of a Json object. 8270 Writes the beginning of a JSON object.
6657 </summary> 8271 </summary>
6658 </member> 8272 </member>
6659 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray"> 8273 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
6660 <summary> 8274 <summary>
6661 Writes the beginning of a Json array. 8275 Writes the beginning of a JSON array.
6662 </summary> 8276 </summary>
6663 </member> 8277 </member>
6664 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)"> 8278 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
@@ -6675,14 +8289,14 @@
6675 </member> 8289 </member>
6676 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)"> 8290 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
6677 <summary> 8291 <summary>
6678 Writes the property name of a name/value pair on a Json object. 8292 Writes the property name of a name/value pair on a JSON object.
6679 </summary> 8293 </summary>
6680 <param name="name">The name of the property.</param> 8294 <param name="name">The name of the property.</param>
6681 </member> 8295 </member>
6682 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)"> 8296 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Object)">
6683 <summary> 8297 <summary>
6684 Writes a <see cref="T:System.Object"/> value. 8298 Writes a <see cref="T:System.Object"/> value.
6685 An error will raised if the value cannot be written as a single JSON token. 8299 An error will be raised if the value cannot be written as a single JSON token.
6686 </summary> 8300 </summary>
6687 <param name="value">The <see cref="T:System.Object"/> value to write.</param> 8301 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
6688 </member> 8302 </member>
@@ -6704,7 +8318,7 @@
6704 </member> 8318 </member>
6705 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)"> 8319 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
6706 <summary> 8320 <summary>
6707 Writes out a comment <code>/*...*/</code> containing the specified text. 8321 Writes a comment <c>/*...*/</c> containing the specified text.
6708 </summary> 8322 </summary>
6709 <param name="text">Text to place inside the comment.</param> 8323 <param name="text">Text to place inside the comment.</param>
6710 </member> 8324 </member>
@@ -6806,9 +8420,9 @@
6806 </member> 8420 </member>
6807 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])"> 8421 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
6808 <summary> 8422 <summary>
6809 Writes a <see cref="T:Byte[]"/> value. 8423 Writes a <see cref="T:System.Byte"/>[] value.
6810 </summary> 8424 </summary>
6811 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> 8425 <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
6812 </member> 8426 </member>
6813 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)"> 8427 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
6814 <summary> 8428 <summary>
@@ -6828,178 +8442,491 @@
6828 </summary> 8442 </summary>
6829 <param name="value">The <see cref="T:System.Uri"/> value to write.</param> 8443 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
6830 </member> 8444 </member>
6831 <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token"> 8445 <member name="T:Newtonsoft.Json.Linq.JValue">
6832 <summary> 8446 <summary>
6833 Gets the token being writen. 8447 Represents a value in JSON (string, integer, date, etc).
6834 </summary> 8448 </summary>
6835 <value>The token being writen.</value>
6836 </member> 8449 </member>
6837 <member name="T:Newtonsoft.Json.Linq.JProperty"> 8450 <member name="M:Newtonsoft.Json.Linq.JValue.WriteToAsync(Newtonsoft.Json.JsonWriter,System.Threading.CancellationToken,Newtonsoft.Json.JsonConverter[])">
6838 <summary> 8451 <summary>
6839 Represents a JSON property. 8452 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/> asynchronously.
6840 </summary> 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>
6841 </member> 8458 </member>
6842 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)"> 8459 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
6843 <summary> 8460 <summary>
6844 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object. 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.
6845 </summary> 8462 </summary>
6846 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param> 8463 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
6847 </member> 8464 </member>
6848 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])"> 8465 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
6849 <summary> 8466 <summary>
6850 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class. 8467 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6851 </summary> 8468 </summary>
6852 <param name="name">The property name.</param> 8469 <param name="value">The value.</param>
6853 <param name="content">The property content.</param>
6854 </member> 8470 </member>
6855 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)"> 8471 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)">
6856 <summary> 8472 <summary>
6857 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class. 8473 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6858 </summary> 8474 </summary>
6859 <param name="name">The property name.</param> 8475 <param name="value">The value.</param>
6860 <param name="content">The property content.</param>
6861 </member> 8476 </member>
6862 <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> 8477 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)">
6863 <summary> 8478 <summary>
6864 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 8479 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6865 </summary> 8480 </summary>
6866 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 8481 <param name="value">The value.</param>
6867 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
6868 </member> 8482 </member>
6869 <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)"> 8483 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
6870 <summary> 8484 <summary>
6871 Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. 8485 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6872 </summary> 8486 </summary>
6873 <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> 8487 <param name="value">The value.</param>
6874 <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>
6875 </member> 8488 </member>
6876 <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens"> 8489 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
6877 <summary> 8490 <summary>
6878 Gets the container's children tokens. 8491 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6879 </summary> 8492 </summary>
6880 <value>The container's children tokens.</value> 8493 <param name="value">The value.</param>
6881 </member> 8494 </member>
6882 <member name="P:Newtonsoft.Json.Linq.JProperty.Name"> 8495 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)">
6883 <summary> 8496 <summary>
6884 Gets the property name. 8497 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6885 </summary> 8498 </summary>
6886 <value>The property name.</value> 8499 <param name="value">The value.</param>
6887 </member> 8500 </member>
6888 <member name="P:Newtonsoft.Json.Linq.JProperty.Value"> 8501 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
6889 <summary> 8502 <summary>
6890 Gets or sets the property value. 8503 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
6891 </summary> 8504 </summary>
6892 <value>The property value.</value> 8505 <param name="value">The value.</param>
6893 </member> 8506 </member>
6894 <member name="P:Newtonsoft.Json.Linq.JProperty.Type"> 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">
6895 <summary> 8584 <summary>
6896 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 8585 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
6897 </summary> 8586 </summary>
6898 <value>The type.</value> 8587 <value>The type.</value>
6899 </member> 8588 </member>
6900 <member name="T:Newtonsoft.Json.Linq.JTokenType"> 8589 <member name="P:Newtonsoft.Json.Linq.JValue.Value">
6901 <summary> 8590 <summary>
6902 Specifies the type of token. 8591 Gets or sets the underlying token value.
6903 </summary> 8592 </summary>
8593 <value>The underlying token value.</value>
6904 </member> 8594 </member>
6905 <member name="F:Newtonsoft.Json.Linq.JTokenType.None"> 8595 <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
6906 <summary> 8596 <summary>
6907 No token type has been set. 8597 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6908 </summary> 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>
6909 </member> 8601 </member>
6910 <member name="F:Newtonsoft.Json.Linq.JTokenType.Object"> 8602 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
6911 <summary> 8603 <summary>
6912 A JSON object. 8604 Indicates whether the current object is equal to another object of the same type.
6913 </summary> 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>
6914 </member> 8610 </member>
6915 <member name="F:Newtonsoft.Json.Linq.JTokenType.Array"> 8611 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
6916 <summary> 8612 <summary>
6917 A JSON array. 8613 Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
6918 </summary> 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>
6919 </member> 8619 </member>
6920 <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor"> 8620 <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
6921 <summary> 8621 <summary>
6922 A JSON constructor. 8622 Serves as a hash function for a particular type.
6923 </summary> 8623 </summary>
8624 <returns>
8625 A hash code for the current <see cref="T:System.Object"/>.
8626 </returns>
6924 </member> 8627 </member>
6925 <member name="F:Newtonsoft.Json.Linq.JTokenType.Property"> 8628 <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
6926 <summary> 8629 <summary>
6927 A JSON object property. 8630 Returns a <see cref="T:System.String"/> that represents this instance.
6928 </summary> 8631 </summary>
8632 <returns>
8633 A <see cref="T:System.String"/> that represents this instance.
8634 </returns>
6929 </member> 8635 </member>
6930 <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment"> 8636 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
6931 <summary> 8637 <summary>
6932 A comment. 8638 Returns a <see cref="T:System.String"/> that represents this instance.
6933 </summary> 8639 </summary>
8640 <param name="format">The format.</param>
8641 <returns>
8642 A <see cref="T:System.String"/> that represents this instance.
8643 </returns>
6934 </member> 8644 </member>
6935 <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer"> 8645 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
6936 <summary> 8646 <summary>
6937 An integer value. 8647 Returns a <see cref="T:System.String"/> that represents this instance.
6938 </summary> 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>
6939 </member> 8653 </member>
6940 <member name="F:Newtonsoft.Json.Linq.JTokenType.Float"> 8654 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
6941 <summary> 8655 <summary>
6942 A float value. 8656 Returns a <see cref="T:System.String"/> that represents this instance.
6943 </summary> 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>
6944 </member> 8663 </member>
6945 <member name="F:Newtonsoft.Json.Linq.JTokenType.String"> 8664 <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)">
6946 <summary> 8665 <summary>
6947 A string value. 8666 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object.
6948 </summary> 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>
6949 </member> 8672 </member>
6950 <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean"> 8673 <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
6951 <summary> 8674 <summary>
6952 A boolean value. 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.
6953 </summary> 8696 </summary>
6954 </member> 8697 </member>
6955 <member name="F:Newtonsoft.Json.Linq.JTokenType.Null"> 8698 <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Ignore">
6956 <summary> 8699 <summary>
6957 A null value. 8700 Ignore line information.
6958 </summary> 8701 </summary>
6959 </member> 8702 </member>
6960 <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined"> 8703 <member name="F:Newtonsoft.Json.Linq.LineInfoHandling.Load">
6961 <summary> 8704 <summary>
6962 An undefined value. 8705 Load line information.
6963 </summary> 8706 </summary>
6964 </member> 8707 </member>
6965 <member name="F:Newtonsoft.Json.Linq.JTokenType.Date"> 8708 <member name="T:Newtonsoft.Json.Linq.MergeArrayHandling">
6966 <summary> 8709 <summary>
6967 A date value. 8710 Specifies how JSON arrays are merged together.
6968 </summary> 8711 </summary>
6969 </member> 8712 </member>
6970 <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw"> 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">
6971 <summary> 8726 <summary>
6972 A raw JSON value. 8727 Specifies how null value properties are merged.
6973 </summary> 8728 </summary>
6974 </member> 8729 </member>
6975 <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes"> 8730 <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Ignore">
6976 <summary> 8731 <summary>
6977 A collection of bytes value. 8732 The content's null value properties will be ignored during merging.
6978 </summary> 8733 </summary>
6979 </member> 8734 </member>
6980 <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid"> 8735 <member name="F:Newtonsoft.Json.Linq.MergeNullValueHandling.Merge">
6981 <summary> 8736 <summary>
6982 A Guid value. 8737 The content's null value properties will be merged.
6983 </summary> 8738 </summary>
6984 </member> 8739 </member>
6985 <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri"> 8740 <member name="T:Newtonsoft.Json.MemberSerialization">
6986 <summary> 8741 <summary>
6987 A Uri value. 8742 Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6988 </summary> 8743 </summary>
6989 </member> 8744 </member>
6990 <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan"> 8745 <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
6991 <summary> 8746 <summary>
6992 A TimeSpan value. 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.
6993 </summary> 8910 </summary>
6994 </member> 8911 </member>
6995 <member name="T:Newtonsoft.Json.Schema.Extensions"> 8912 <member name="T:Newtonsoft.Json.Schema.Extensions">
6996 <summary> 8913 <summary>
8914 <para>
6997 Contains the JSON schema extension methods. 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>
6998 </summary> 8920 </summary>
6999 </member> 8921 </member>
7000 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)"> 8922 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7001 <summary> 8923 <summary>
8924 <para>
7002 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid. 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>
7003 </summary> 8930 </summary>
7004 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> 8931 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7005 <param name="schema">The schema to test with.</param> 8932 <param name="schema">The schema to test with.</param>
@@ -7009,7 +8936,12 @@
7009 </member> 8936 </member>
7010 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)"> 8937 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
7011 <summary> 8938 <summary>
8939 <para>
7012 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid. 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>
7013 </summary> 8945 </summary>
7014 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> 8946 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7015 <param name="schema">The schema to test with.</param> 8947 <param name="schema">The schema to test with.</param>
@@ -7020,24 +8952,319 @@
7020 </member> 8952 </member>
7021 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)"> 8953 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
7022 <summary> 8954 <summary>
8955 <para>
7023 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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>
7024 </summary> 8961 </summary>
7025 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> 8962 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7026 <param name="schema">The schema to test with.</param> 8963 <param name="schema">The schema to test with.</param>
7027 </member> 8964 </member>
7028 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)"> 8965 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
7029 <summary> 8966 <summary>
8967 <para>
7030 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>. 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>
7031 </summary> 8973 </summary>
7032 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> 8974 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
7033 <param name="schema">The schema to test with.</param> 8975 <param name="schema">The schema to test with.</param>
7034 <param name="validationEventHandler">The validation event handler.</param> 8976 <param name="validationEventHandler">The validation event handler.</param>
7035 </member> 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>
7036 <member name="T:Newtonsoft.Json.Schema.JsonSchemaException"> 9240 <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
7037 <summary> 9241 <summary>
9242 <para>
7038 Returns detailed information about the schema exception. 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>
7039 </summary> 9248 </summary>
7040 </member> 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>
7041 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor"> 9268 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
7042 <summary> 9269 <summary>
7043 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class. 9270 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
@@ -7056,7 +9283,7 @@
7056 with a specified error message and a reference to the inner exception that is the cause of this exception. 9283 with a specified error message and a reference to the inner exception that is the cause of this exception.
7057 </summary> 9284 </summary>
7058 <param name="message">The error message that explains the reason for the exception.</param> 9285 <param name="message">The error message that explains the reason for the exception.</param>
7059 <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param> 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>
7060 </member> 9287 </member>
7061 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> 9288 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
7062 <summary> 9289 <summary>
@@ -7064,31 +9291,77 @@
7064 </summary> 9291 </summary>
7065 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> 9292 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
7066 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> 9293 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
7067 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> 9294 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is <c>null</c>.</exception>
7068 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </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>
7069 </member> 9296 </member>
7070 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber"> 9297 <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
7071 <summary> 9298 <summary>
7072 Gets the line number indicating where the error occurred. 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>
7073 </summary> 9305 </summary>
7074 <value>The line number indicating where the error occurred.</value>
7075 </member> 9306 </member>
7076 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition"> 9307 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
7077 <summary> 9308 <summary>
7078 Gets the line position indicating where the error occurred. 9309 Gets or sets how undefined schemas are handled by the serializer.
7079 </summary> 9310 </summary>
7080 <value>The line position indicating where the error occurred.</value>
7081 </member> 9311 </member>
7082 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.Path"> 9312 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
7083 <summary> 9313 <summary>
7084 Gets the path to the JSON where the error occurred. 9314 Gets or sets the contract resolver.
7085 </summary> 9315 </summary>
7086 <value>The path to the JSON where the error occurred.</value> 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>
7087 </member> 9349 </member>
7088 <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver"> 9350 <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
7089 <summary> 9351 <summary>
9352 <para>
7090 Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id. 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.
7091 </summary> 9363 </summary>
9364 <value>The loaded schemas.</value>
7092 </member> 9365 </member>
7093 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor"> 9366 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
7094 <summary> 9367 <summary>
@@ -7102,15 +9375,69 @@
7102 <param name="reference">The id.</param> 9375 <param name="reference">The id.</param>
7103 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns> 9376 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified reference.</returns>
7104 </member> 9377 </member>
7105 <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas"> 9378 <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
7106 <summary> 9379 <summary>
7107 Gets or sets the loaded schemas. 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.
7108 </summary> 9431 </summary>
7109 <value>The loaded schemas.</value>
7110 </member> 9432 </member>
7111 <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling"> 9433 <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
7112 <summary> 9434 <summary>
9435 <para>
7113 Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>. 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>
7114 </summary> 9441 </summary>
7115 </member> 9442 </member>
7116 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None"> 9443 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
@@ -7130,7 +9457,12 @@
7130 </member> 9457 </member>
7131 <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs"> 9458 <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
7132 <summary> 9459 <summary>
9460 <para>
7133 Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>. 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>
7134 </summary> 9466 </summary>
7135 </member> 9467 </member>
7136 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception"> 9468 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
@@ -7153,50 +9485,145 @@
7153 </member> 9485 </member>
7154 <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler"> 9486 <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
7155 <summary> 9487 <summary>
9488 <para>
7156 Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>. 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>
7157 </summary> 9494 </summary>
7158 </member> 9495 </member>
7159 <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"> 9496 <member name="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy">
7160 <summary> 9497 <summary>
7161 Resolves member mappings for a type, camel casing property names. 9498 A camel case naming strategy.
7162 </summary> 9499 </summary>
7163 </member> 9500 </member>
7164 <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver"> 9501 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
7165 <summary> 9502 <summary>
7166 Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>. 9503 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
7167 </summary> 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>
7168 </member> 9512 </member>
7169 <member name="T:Newtonsoft.Json.Serialization.IContractResolver"> 9513 <member name="M:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
7170 <summary> 9514 <summary>
7171 Used by <see cref="T:Newtonsoft.Json.JsonSerializer"/> to resolves a <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for a given <see cref="T:System.Type"/>. 9515 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCaseNamingStrategy"/> class.
7172 </summary> 9516 </summary>
7173 <example> 9517 <param name="processDictionaryKeys">
7174 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverObject" title="IContractResolver Class"/> 9518 A flag indicating whether dictionary keys should be processed.
7175 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeContractResolverExample" title="IContractResolver Example"/> 9519 </param>
7176 </example> 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>
7177 </member> 9527 </member>
7178 <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)"> 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)">
7179 <summary> 9551 <summary>
7180 Resolves the contract for a given type. 9552 Resolves the contract for a given type.
7181 </summary> 9553 </summary>
7182 <param name="type">The type to resolve a contract for.</param> 9554 <param name="type">The type to resolve a contract for.</param>
7183 <returns>The contract for a given type.</returns> 9555 <returns>The contract for a given type.</returns>
7184 </member> 9556 </member>
7185 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor"> 9557 <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
7186 <summary> 9558 <summary>
7187 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class. 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"/>.
7188 </summary> 9560 </summary>
7189 </member> 9561 </member>
7190 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)"> 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">
7191 <summary> 9624 <summary>
7192 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class. 9625 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
7193 </summary> 9626 </summary>
7194 <param name="shareCache">
7195 If set to <c>true</c> the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> will use a cached shared with other resolvers of the same type.
7196 Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only
7197 happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different
7198 results. When set to false it is highly recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7199 </param>
7200 </member> 9627 </member>
7201 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)"> 9628 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
7202 <summary> 9629 <summary>
@@ -7237,10 +9664,10 @@
7237 </member> 9664 </member>
7238 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)"> 9665 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
7239 <summary> 9666 <summary>
7240 Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract. 9667 Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for the contract.
7241 </summary> 9668 </summary>
7242 <param name="objectType">Type of the object.</param> 9669 <param name="objectType">Type of the object.</param>
7243 <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter"/>.</returns> 9670 <returns>The contract's default <see cref="T:Newtonsoft.Json.JsonConverter" />.</returns>
7244 </member> 9671 </member>
7245 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)"> 9672 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
7246 <summary> 9673 <summary>
@@ -7326,7 +9753,21 @@
7326 Resolves the name of the property. 9753 Resolves the name of the property.
7327 </summary> 9754 </summary>
7328 <param name="propertyName">Name of the property.</param> 9755 <param name="propertyName">Name of the property.</param>
7329 <returns>Name of the property.</returns> 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>
7330 </member> 9771 </member>
7331 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)"> 9772 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)">
7332 <summary> 9773 <summary>
@@ -7335,79 +9776,93 @@
7335 <param name="propertyName">Name of the property.</param> 9776 <param name="propertyName">Name of the property.</param>
7336 <returns>Name of the property.</returns> 9777 <returns>Name of the property.</returns>
7337 </member> 9778 </member>
7338 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration"> 9779 <member name="T:Newtonsoft.Json.Serialization.DefaultNamingStrategy">
7339 <summary> 9780 <summary>
7340 Gets a value indicating whether members are being get and set using dynamic code generation. 9781 The default naming strategy. Property names and dictionary keys are unchanged.
7341 This value is determined by the runtime permissions available.
7342 </summary> 9782 </summary>
7343 <value>
7344 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
7345 </value>
7346 </member> 9783 </member>
7347 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags"> 9784 <member name="M:Newtonsoft.Json.Serialization.DefaultNamingStrategy.ResolvePropertyName(System.String)">
7348 <summary> 9785 <summary>
7349 Gets or sets the default members search flags. 9786 Resolves the specified property name.
7350 </summary> 9787 </summary>
7351 <value>The default members search flags.</value> 9788 <param name="name">The property name to resolve.</param>
9789 <returns>The resolved property name.</returns>
7352 </member> 9790 </member>
7353 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers"> 9791 <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
7354 <summary> 9792 <summary>
7355 Gets or sets a value indicating whether compiler generated members should be serialized. 9793 The default serialization binder used when resolving and loading classes from type names.
7356 </summary> 9794 </summary>
7357 <value>
7358 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
7359 </value>
7360 </member> 9795 </member>
7361 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface"> 9796 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.#ctor">
7362 <summary> 9797 <summary>
7363 Gets or sets a value indicating whether to ignore the <see cref="T:System.Runtime.Serialization.ISerializable"/> interface when serializing and deserializing types. 9798 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"/> class.
7364 </summary> 9799 </summary>
7365 <value>
7366 <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>.
7367 </value>
7368 </member> 9800 </member>
7369 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute"> 9801 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
7370 <summary> 9802 <summary>
7371 Gets or sets a value indicating whether to ignore the <see cref="T:System.SerializableAttribute"/> attribute when serializing and deserializing types. 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.
7372 </summary> 9829 </summary>
7373 <value> 9830 <value>
7374 <c>true</c> if the <see cref="T:System.SerializableAttribute"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>. 9831 The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
7375 </value> 9832 </value>
7376 </member> 9833 </member>
7377 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor"> 9834 <member name="M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7378 <summary> 9835 <summary>
7379 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class. 9836 Writes the specified trace level, message and optional exception.
7380 </summary> 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>
7381 </member> 9841 </member>
7382 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)"> 9842 <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
7383 <summary> 9843 <summary>
7384 Resolves the name of the property. 9844 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7385 </summary> 9845 </summary>
7386 <param name="propertyName">Name of the property.</param>
7387 <returns>The property name camel cased.</returns>
7388 </member> 9846 </member>
7389 <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"> 9847 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
7390 <summary> 9848 <summary>
7391 The default serialization binder used when resolving and loading classes from type names. 9849 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
7392 </summary> 9850 </summary>
9851 <param name="memberInfo">The member info.</param>
7393 </member> 9852 </member>
7394 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)"> 9853 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
7395 <summary> 9854 <summary>
7396 When overridden in a derived class, controls the binding of a serialized object to a type. 9855 Sets the value.
7397 </summary> 9856 </summary>
7398 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param> 9857 <param name="target">The target to set the value on.</param>
7399 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param> 9858 <param name="value">The value to set on the target.</param>
7400 <returns>
7401 The type of the object the formatter creates a new instance of.
7402 </returns>
7403 </member> 9859 </member>
7404 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)"> 9860 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
7405 <summary> 9861 <summary>
7406 When overridden in a derived class, controls the binding of a serialized object to a type. 9862 Gets the value.
7407 </summary> 9863 </summary>
7408 <param name="serializedType">The type of the object the formatter creates a new instance of.</param> 9864 <param name="target">The target to get the value from.</param>
7409 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param> 9865 <returns>The value.</returns>
7410 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param>
7411 </member> 9866 </member>
7412 <member name="T:Newtonsoft.Json.Serialization.ErrorContext"> 9867 <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
7413 <summary> 9868 <summary>
@@ -7444,868 +9899,917 @@
7444 </summary> 9899 </summary>
7445 <value><c>true</c> if handled; otherwise, <c>false</c>.</value> 9900 <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
7446 </member> 9901 </member>
7447 <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract"> 9902 <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
7448 <summary> 9903 <summary>
7449 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 9904 Provides data for the Error event.
7450 </summary> 9905 </summary>
7451 </member> 9906 </member>
7452 <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)"> 9907 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
7453 <summary> 9908 <summary>
7454 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class. 9909 Gets the current object the error event is being raised against.
7455 </summary> 9910 </summary>
7456 <param name="underlyingType">The underlying type for the contract.</param> 9911 <value>The current object the error event is being raised against.</value>
7457 </member> 9912 </member>
7458 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType"> 9913 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
7459 <summary> 9914 <summary>
7460 Gets the <see cref="T:System.Type"/> of the collection items. 9915 Gets the error context.
7461 </summary> 9916 </summary>
7462 <value>The <see cref="T:System.Type"/> of the collection items.</value> 9917 <value>The error context.</value>
7463 </member> 9918 </member>
7464 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray"> 9919 <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
7465 <summary> 9920 <summary>
7466 Gets a value indicating whether the collection type is a multidimensional array. 9921 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
7467 </summary> 9922 </summary>
7468 <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value> 9923 <param name="currentObject">The current object.</param>
9924 <param name="errorContext">The error context.</param>
7469 </member> 9925 </member>
7470 <member name="T:Newtonsoft.Json.Serialization.SerializationCallback"> 9926 <member name="T:Newtonsoft.Json.Serialization.ExpressionValueProvider">
7471 <summary> 9927 <summary>
7472 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events. 9928 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
7473 </summary> 9929 </summary>
7474 <param name="o">The object that raised the callback event.</param>
7475 <param name="context">The streaming context.</param>
7476 </member> 9930 </member>
7477 <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback"> 9931 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.#ctor(System.Reflection.MemberInfo)">
7478 <summary> 9932 <summary>
7479 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events. 9933 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ExpressionValueProvider"/> class.
7480 </summary> 9934 </summary>
7481 <param name="o">The object that raised the callback event.</param> 9935 <param name="memberInfo">The member info.</param>
7482 <param name="context">The streaming context.</param>
7483 <param name="errorContext">The error context.</param>
7484 </member> 9936 </member>
7485 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter"> 9937 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.SetValue(System.Object,System.Object)">
7486 <summary> 9938 <summary>
7487 Sets extension data for an object during deserialization. 9939 Sets the value.
7488 </summary> 9940 </summary>
7489 <param name="o">The object to set extension data on.</param> 9941 <param name="target">The target to set the value on.</param>
7490 <param name="key">The extension data key.</param> 9942 <param name="value">The value to set on the target.</param>
7491 <param name="value">The extension data value.</param>
7492 </member> 9943 </member>
7493 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter"> 9944 <member name="M:Newtonsoft.Json.Serialization.ExpressionValueProvider.GetValue(System.Object)">
7494 <summary> 9945 <summary>
7495 Gets extension data for an object during serialization. 9946 Gets the value.
7496 </summary> 9947 </summary>
7497 <param name="o">The object to set extension data on.</param> 9948 <param name="target">The target to get the value from.</param>
9949 <returns>The value.</returns>
7498 </member> 9950 </member>
7499 <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"> 9951 <member name="T:Newtonsoft.Json.Serialization.IAttributeProvider">
7500 <summary> 9952 <summary>
7501 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 9953 Provides methods to get attributes.
7502 </summary> 9954 </summary>
7503 </member> 9955 </member>
7504 <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)"> 9956 <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Boolean)">
7505 <summary> 9957 <summary>
7506 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class. 9958 Returns a collection of all of the attributes, or an empty collection if there are no attributes.
7507 </summary> 9959 </summary>
7508 <param name="underlyingType">The underlying type for the contract.</param> 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>
7509 </member> 9962 </member>
7510 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver"> 9963 <member name="M:Newtonsoft.Json.Serialization.IAttributeProvider.GetAttributes(System.Type,System.Boolean)">
7511 <summary> 9964 <summary>
7512 Gets or sets the property name resolver. 9965 Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
7513 </summary> 9966 </summary>
7514 <value>The property name resolver.</value> 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>
7515 </member> 9970 </member>
7516 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType"> 9971 <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
7517 <summary> 9972 <summary>
7518 Gets the <see cref="T:System.Type"/> of the dictionary keys. 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"/>.
7519 </summary> 9974 </summary>
7520 <value>The <see cref="T:System.Type"/> of the dictionary keys.</value> 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>
7521 </member> 9979 </member>
7522 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType"> 9980 <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
7523 <summary> 9981 <summary>
7524 Gets the <see cref="T:System.Type"/> of the dictionary values. 9982 Resolves the contract for a given type.
7525 </summary> 9983 </summary>
7526 <value>The <see cref="T:System.Type"/> of the dictionary values.</value> 9984 <param name="type">The type to resolve a contract for.</param>
9985 <returns>The contract for a given type.</returns>
7527 </member> 9986 </member>
7528 <member name="T:Newtonsoft.Json.Serialization.JsonProperty"> 9987 <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
7529 <summary> 9988 <summary>
7530 Maps a JSON property to a .NET member or constructor parameter. 9989 Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7531 </summary> 9990 </summary>
7532 </member> 9991 </member>
7533 <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString"> 9992 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
7534 <summary> 9993 <summary>
7535 Returns a <see cref="T:System.String"/> that represents this instance. 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.
7536 </summary> 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>
7537 <returns> 10014 <returns>
7538 A <see cref="T:System.String"/> that represents this instance. 10015 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
7539 </returns> 10016 </returns>
7540 </member> 10017 </member>
7541 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName"> 10018 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
7542 <summary> 10019 <summary>
7543 Gets or sets the name of the property. 10020 Adds a reference to the specified object.
7544 </summary> 10021 </summary>
7545 <value>The name of the property.</value> 10022 <param name="context">The serialization context.</param>
10023 <param name="reference">The reference.</param>
10024 <param name="value">The object to reference.</param>
7546 </member> 10025 </member>
7547 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType"> 10026 <member name="T:Newtonsoft.Json.Serialization.ISerializationBinder">
7548 <summary> 10027 <summary>
7549 Gets or sets the type that declared this property. 10028 Allows users to control class loading and mandate what class to load.
7550 </summary> 10029 </summary>
7551 <value>The type that declared this property.</value>
7552 </member> 10030 </member>
7553 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order"> 10031 <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToType(System.String,System.String)">
7554 <summary> 10032 <summary>
7555 Gets or sets the order of serialization and deserialization of a member. 10033 When implemented, controls the binding of a serialized object to a type.
7556 </summary> 10034 </summary>
7557 <value>The numeric order of serialization or deserialization.</value> 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>
7558 </member> 10038 </member>
7559 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName"> 10039 <member name="M:Newtonsoft.Json.Serialization.ISerializationBinder.BindToName(System.Type,System.String@,System.String@)">
7560 <summary> 10040 <summary>
7561 Gets or sets the name of the underlying member or parameter. 10041 When implemented, controls the binding of a serialized object to a type.
7562 </summary> 10042 </summary>
7563 <value>The name of the underlying member or parameter.</value> 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>
7564 </member> 10046 </member>
7565 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider"> 10047 <member name="T:Newtonsoft.Json.Serialization.ITraceWriter">
7566 <summary> 10048 <summary>
7567 Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization. 10049 Represents a trace writer.
7568 </summary> 10050 </summary>
7569 <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>
7570 </member> 10051 </member>
7571 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType"> 10052 <member name="P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter">
7572 <summary> 10053 <summary>
7573 Gets or sets the type of the property. 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.
7574 </summary> 10057 </summary>
7575 <value>The type of the property.</value> 10058 <value>The <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.</value>
7576 </member> 10059 </member>
7577 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter"> 10060 <member name="M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
7578 <summary> 10061 <summary>
7579 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property. 10062 Writes the specified trace level, message and optional exception.
7580 If set this converter takes presidence over the contract converter for the property type.
7581 </summary> 10063 </summary>
7582 <value>The converter.</value> 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>
7583 </member> 10067 </member>
7584 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter"> 10068 <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
7585 <summary> 10069 <summary>
7586 Gets or sets the member converter. 10070 Provides methods to get and set values.
7587 </summary> 10071 </summary>
7588 <value>The member converter.</value>
7589 </member> 10072 </member>
7590 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored"> 10073 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
7591 <summary> 10074 <summary>
7592 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored. 10075 Sets the value.
7593 </summary> 10076 </summary>
7594 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value> 10077 <param name="target">The target to set the value on.</param>
10078 <param name="value">The value to set on the target.</param>
7595 </member> 10079 </member>
7596 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable"> 10080 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
7597 <summary> 10081 <summary>
7598 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable. 10082 Gets the value.
7599 </summary> 10083 </summary>
7600 <value><c>true</c> if readable; otherwise, <c>false</c>.</value> 10084 <param name="target">The target to get the value from.</param>
10085 <returns>The value.</returns>
7601 </member> 10086 </member>
7602 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable"> 10087 <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
7603 <summary> 10088 <summary>
7604 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable. 10089 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7605 </summary> 10090 </summary>
7606 <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
7607 </member> 10091 </member>
7608 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute"> 10092 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType">
7609 <summary> 10093 <summary>
7610 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute. 10094 Gets the <see cref="T:System.Type"/> of the collection items.
7611 </summary> 10095 </summary>
7612 <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value> 10096 <value>The <see cref="T:System.Type"/> of the collection items.</value>
7613 </member> 10097 </member>
7614 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue"> 10098 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray">
7615 <summary> 10099 <summary>
7616 Gets the default value. 10100 Gets a value indicating whether the collection type is a multidimensional array.
7617 </summary> 10101 </summary>
7618 <value>The default value.</value> 10102 <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>
7619 </member> 10103 </member>
7620 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required"> 10104 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.OverrideCreator">
7621 <summary> 10105 <summary>
7622 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required. 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"/>.
7623 </summary> 10107 </summary>
7624 <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value> 10108 <value>The function used to create the object.</value>
7625 </member> 10109 </member>
7626 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference"> 10110 <member name="P:Newtonsoft.Json.Serialization.JsonArrayContract.HasParameterizedCreator">
7627 <summary> 10111 <summary>
7628 Gets or sets a value indicating whether this property preserves object references. 10112 Gets a value indicating whether the creator has a parameter with the collection values.
7629 </summary> 10113 </summary>
7630 <value> 10114 <value><c>true</c> if the creator has a parameter with the collection values; otherwise, <c>false</c>.</value>
7631 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
7632 </value>
7633 </member> 10115 </member>
7634 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling"> 10116 <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
7635 <summary> 10117 <summary>
7636 Gets or sets the property null value handling. 10118 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
7637 </summary> 10119 </summary>
7638 <value>The null value handling.</value> 10120 <param name="underlyingType">The underlying type for the contract.</param>
7639 </member> 10121 </member>
7640 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling"> 10122 <member name="T:Newtonsoft.Json.Serialization.JsonContainerContract">
7641 <summary> 10123 <summary>
7642 Gets or sets the property default value handling. 10124 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7643 </summary> 10125 </summary>
7644 <value>The default value handling.</value>
7645 </member> 10126 </member>
7646 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling"> 10127 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter">
7647 <summary> 10128 <summary>
7648 Gets or sets the property reference loop handling. 10129 Gets or sets the default collection items <see cref="T:Newtonsoft.Json.JsonConverter" />.
7649 </summary> 10130 </summary>
7650 <value>The reference loop handling.</value> 10131 <value>The converter.</value>
7651 </member> 10132 </member>
7652 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling"> 10133 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference">
7653 <summary> 10134 <summary>
7654 Gets or sets the property object creation handling. 10135 Gets or sets a value indicating whether the collection items preserve object references.
7655 </summary> 10136 </summary>
7656 <value>The object creation handling.</value> 10137 <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>
7657 </member> 10138 </member>
7658 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling"> 10139 <member name="P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling">
7659 <summary> 10140 <summary>
7660 Gets or sets or sets the type name handling. 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.
7661 </summary> 10148 </summary>
7662 <value>The type name handling.</value> 10149 <value>The type name handling.</value>
7663 </member> 10150 </member>
7664 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize"> 10151 <member name="M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)">
7665 <summary> 10152 <summary>
7666 Gets or sets a predicate used to determine whether the property should be serialize. 10153 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonContainerContract"/> class.
7667 </summary> 10154 </summary>
7668 <value>A predicate used to determine whether the property should be serialize.</value> 10155 <param name="underlyingType">The underlying type for the contract.</param>
7669 </member> 10156 </member>
7670 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified"> 10157 <member name="T:Newtonsoft.Json.Serialization.SerializationCallback">
7671 <summary> 10158 <summary>
7672 Gets or sets a predicate used to determine whether the property should be serialized. 10159 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization callback events.
7673 </summary> 10160 </summary>
7674 <value>A predicate used to determine whether the property should be serialized.</value> 10161 <param name="o">The object that raised the callback event.</param>
10162 <param name="context">The streaming context.</param>
7675 </member> 10163 </member>
7676 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified"> 10164 <member name="T:Newtonsoft.Json.Serialization.SerializationErrorCallback">
7677 <summary> 10165 <summary>
7678 Gets or sets an action used to set whether the property has been deserialized. 10166 Handles <see cref="T:Newtonsoft.Json.JsonSerializer"/> serialization error callback events.
7679 </summary> 10167 </summary>
7680 <value>An action used to set whether the property has been deserialized.</value> 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>
7681 </member> 10171 </member>
7682 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter"> 10172 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataSetter">
7683 <summary> 10173 <summary>
7684 Gets or sets the converter used when serializing the property's collection items. 10174 Sets extension data for an object during deserialization.
7685 </summary> 10175 </summary>
7686 <value>The collection's items converter.</value> 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>
7687 </member> 10179 </member>
7688 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference"> 10180 <member name="T:Newtonsoft.Json.Serialization.ExtensionDataGetter">
7689 <summary> 10181 <summary>
7690 Gets or sets whether this property's collection items are serialized as a reference. 10182 Gets extension data for an object during serialization.
7691 </summary> 10183 </summary>
7692 <value>Whether this property's collection items are serialized as a reference.</value> 10184 <param name="o">The object to set extension data on.</param>
7693 </member> 10185 </member>
7694 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling"> 10186 <member name="T:Newtonsoft.Json.Serialization.JsonContract">
7695 <summary> 10187 <summary>
7696 Gets or sets the the type name handling used when serializing the property's collection items. 10188 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7697 </summary> 10189 </summary>
7698 <value>The collection's items type name handling.</value>
7699 </member> 10190 </member>
7700 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling"> 10191 <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
7701 <summary> 10192 <summary>
7702 Gets or sets the the reference loop handling used when serializing the property's collection items. 10193 Gets the underlying type for the contract.
7703 </summary> 10194 </summary>
7704 <value>The collection's items reference loop handling.</value> 10195 <value>The underlying type for the contract.</value>
7705 </member> 10196 </member>
7706 <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"> 10197 <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
7707 <summary> 10198 <summary>
7708 A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects. 10199 Gets or sets the type created during deserialization.
7709 </summary> 10200 </summary>
10201 <value>The type created during deserialization.</value>
7710 </member> 10202 </member>
7711 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)"> 10203 <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
7712 <summary> 10204 <summary>
7713 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class. 10205 Gets or sets whether this type contract is serialized as a reference.
7714 </summary> 10206 </summary>
7715 <param name="type">The type.</param> 10207 <value>Whether this type contract is serialized as a reference.</value>
7716 </member> 10208 </member>
7717 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)"> 10209 <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
7718 <summary> 10210 <summary>
7719 When implemented in a derived class, extracts the key from the specified element. 10211 Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter" /> for this contract.
7720 </summary> 10212 </summary>
7721 <param name="item">The element from which to extract the key.</param> 10213 <value>The converter.</value>
7722 <returns>The key for the specified element.</returns>
7723 </member> 10214 </member>
7724 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)"> 10215 <member name="P:Newtonsoft.Json.Serialization.JsonContract.InternalConverter">
7725 <summary> 10216 <summary>
7726 Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object. 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.
7727 </summary> 10220 </summary>
7728 <param name="property">The property to add to the collection.</param>
7729 </member> 10221 </member>
7730 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)"> 10222 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializedCallbacks">
7731 <summary> 10223 <summary>
7732 Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object. 10224 Gets or sets all methods called immediately after deserialization of the object.
7733 First attempts to get an exact case match of propertyName and then
7734 a case insensitive match.
7735 </summary> 10225 </summary>
7736 <param name="propertyName">Name of the property.</param> 10226 <value>The methods called immediately after deserialization of the object.</value>
7737 <returns>A matching property if found.</returns>
7738 </member> 10227 </member>
7739 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)"> 10228 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializingCallbacks">
7740 <summary> 10229 <summary>
7741 Gets a property by property name. 10230 Gets or sets all methods called during deserialization of the object.
7742 </summary> 10231 </summary>
7743 <param name="propertyName">The name of the property to get.</param> 10232 <value>The methods called during deserialization of the object.</value>
7744 <param name="comparisonType">Type property name string comparison.</param>
7745 <returns>A matching property if found.</returns>
7746 </member> 10233 </member>
7747 <member name="T:Newtonsoft.Json.MissingMemberHandling"> 10234 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializedCallbacks">
7748 <summary> 10235 <summary>
7749 Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10236 Gets or sets all methods called after serialization of the object graph.
7750 </summary> 10237 </summary>
10238 <value>The methods called after serialization of the object graph.</value>
7751 </member> 10239 </member>
7752 <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore"> 10240 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializingCallbacks">
7753 <summary> 10241 <summary>
7754 Ignore a missing member and do not attempt to deserialize it. 10242 Gets or sets all methods called before serialization of the object.
7755 </summary> 10243 </summary>
10244 <value>The methods called before serialization of the object.</value>
7756 </member> 10245 </member>
7757 <member name="F:Newtonsoft.Json.MissingMemberHandling.Error"> 10246 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnErrorCallbacks">
7758 <summary> 10247 <summary>
7759 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization. 10248 Gets or sets all method called when an error is thrown during the serialization of the object.
7760 </summary> 10249 </summary>
10250 <value>The methods called when an error is thrown during the serialization of the object.</value>
7761 </member> 10251 </member>
7762 <member name="T:Newtonsoft.Json.NullValueHandling"> 10252 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
7763 <summary> 10253 <summary>
7764 Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10254 Gets or sets the default creator method used to create the object.
7765 </summary> 10255 </summary>
7766 <example> 10256 <value>The default creator method used to create the object.</value>
7767 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingObject" title="NullValueHandling Class"/>
7768 <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeNullValueHandlingExample" title="NullValueHandling Ignore Example"/>
7769 </example>
7770 </member> 10257 </member>
7771 <member name="F:Newtonsoft.Json.NullValueHandling.Include"> 10258 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
7772 <summary> 10259 <summary>
7773 Include null values when serializing and deserializing objects. 10260 Gets or sets a value indicating whether the default creator is non-public.
7774 </summary> 10261 </summary>
10262 <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
7775 </member> 10263 </member>
7776 <member name="F:Newtonsoft.Json.NullValueHandling.Ignore"> 10264 <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
7777 <summary> 10265 <summary>
7778 Ignore null values when serializing and deserializing objects. 10266 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7779 </summary> 10267 </summary>
7780 </member> 10268 </member>
7781 <member name="T:Newtonsoft.Json.ReferenceLoopHandling"> 10269 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyResolver">
7782 <summary> 10270 <summary>
7783 Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10271 Gets or sets the dictionary key resolver.
7784 </summary> 10272 </summary>
10273 <value>The dictionary key resolver.</value>
7785 </member> 10274 </member>
7786 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error"> 10275 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType">
7787 <summary> 10276 <summary>
7788 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered. 10277 Gets the <see cref="T:System.Type"/> of the dictionary keys.
7789 </summary> 10278 </summary>
10279 <value>The <see cref="T:System.Type"/> of the dictionary keys.</value>
7790 </member> 10280 </member>
7791 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore"> 10281 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType">
7792 <summary> 10282 <summary>
7793 Ignore loop references and do not serialize. 10283 Gets the <see cref="T:System.Type"/> of the dictionary values.
7794 </summary> 10284 </summary>
10285 <value>The <see cref="T:System.Type"/> of the dictionary values.</value>
7795 </member> 10286 </member>
7796 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize"> 10287 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.OverrideCreator">
7797 <summary> 10288 <summary>
7798 Serialize loop references. 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"/>.
7799 </summary> 10290 </summary>
10291 <value>The function used to create the object.</value>
7800 </member> 10292 </member>
7801 <member name="T:Newtonsoft.Json.Schema.JsonSchema"> 10293 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.HasParameterizedCreator">
7802 <summary> 10294 <summary>
7803 An in-memory representation of a JSON Schema. 10295 Gets a value indicating whether the creator has a parameter with the dictionary values.
7804 </summary> 10296 </summary>
10297 <value><c>true</c> if the creator has a parameter with the dictionary values; otherwise, <c>false</c>.</value>
7805 </member> 10298 </member>
7806 <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor"> 10299 <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
7807 <summary> 10300 <summary>
7808 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class. 10301 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
7809 </summary> 10302 </summary>
10303 <param name="underlyingType">The underlying type for the contract.</param>
7810 </member> 10304 </member>
7811 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)"> 10305 <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract">
7812 <summary> 10306 <summary>
7813 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. 10307 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7814 </summary> 10308 </summary>
7815 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
7816 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7817 </member> 10309 </member>
7818 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)"> 10310 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties">
7819 <summary> 10311 <summary>
7820 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. 10312 Gets the object's properties.
7821 </summary> 10313 </summary>
7822 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param> 10314 <value>The object's properties.</value>
7823 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
7824 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
7825 </member> 10315 </member>
7826 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)"> 10316 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver">
7827 <summary> 10317 <summary>
7828 Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON. 10318 Gets or sets the property name resolver.
7829 </summary> 10319 </summary>
7830 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> 10320 <value>The property name resolver.</value>
7831 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7832 </member> 10321 </member>
7833 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)"> 10322 <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)">
7834 <summary> 10323 <summary>
7835 Parses the specified json. 10324 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class.
7836 </summary> 10325 </summary>
7837 <param name="json">The json.</param> 10326 <param name="underlyingType">The underlying type for the contract.</param>
7838 <param name="resolver">The resolver.</param>
7839 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
7840 </member> 10327 </member>
7841 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)"> 10328 <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
7842 <summary> 10329 <summary>
7843 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. 10330 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7844 </summary> 10331 </summary>
7845 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
7846 </member> 10332 </member>
7847 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)"> 10333 <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
7848 <summary> 10334 <summary>
7849 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>. 10335 Gets or sets the <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.
7850 </summary> 10336 </summary>
7851 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> 10337 <value>The <see cref="T:System.Runtime.Serialization.ISerializable"/> object constructor.</value>
7852 <param name="resolver">The resolver used.</param>
7853 </member> 10338 </member>
7854 <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString"> 10339 <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
7855 <summary> 10340 <summary>
7856 Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. 10341 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
7857 </summary> 10342 </summary>
7858 <returns> 10343 <param name="underlyingType">The underlying type for the contract.</param>
7859 A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
7860 </returns>
7861 </member> 10344 </member>
7862 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id"> 10345 <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
7863 <summary> 10346 <summary>
7864 Gets or sets the id. 10347 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7865 </summary> 10348 </summary>
7866 </member> 10349 </member>
7867 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title"> 10350 <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
7868 <summary> 10351 <summary>
7869 Gets or sets the title. 10352 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
7870 </summary> 10353 </summary>
10354 <param name="underlyingType">The underlying type for the contract.</param>
7871 </member> 10355 </member>
7872 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required"> 10356 <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
7873 <summary> 10357 <summary>
7874 Gets or sets whether the object is required. 10358 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7875 </summary> 10359 </summary>
7876 </member> 10360 </member>
7877 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly"> 10361 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
7878 <summary> 10362 <summary>
7879 Gets or sets whether the object is read only. 10363 Gets or sets the object member serialization.
7880 </summary> 10364 </summary>
10365 <value>The member object serialization.</value>
7881 </member> 10366 </member>
7882 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden"> 10367 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MissingMemberHandling">
7883 <summary> 10368 <summary>
7884 Gets or sets whether the object is visible to users. 10369 Gets or sets the missing member handling used when deserializing this object.
7885 </summary> 10370 </summary>
10371 <value>The missing member handling.</value>
7886 </member> 10372 </member>
7887 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient"> 10373 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired">
7888 <summary> 10374 <summary>
7889 Gets or sets whether the object is transient. 10375 Gets or sets a value that indicates whether the object's properties are required.
7890 </summary> 10376 </summary>
10377 <value>
10378 A value indicating whether the object's properties are required.
10379 </value>
7891 </member> 10380 </member>
7892 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description"> 10381 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemNullValueHandling">
7893 <summary> 10382 <summary>
7894 Gets or sets the description of the object. 10383 Gets or sets how the object's properties with null values are handled during serialization and deserialization.
7895 </summary> 10384 </summary>
10385 <value>How the object's properties with null values are handled during serialization and deserialization.</value>
7896 </member> 10386 </member>
7897 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type"> 10387 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
7898 <summary> 10388 <summary>
7899 Gets or sets the types of values allowed by the object. 10389 Gets the object's properties.
7900 </summary> 10390 </summary>
7901 <value>The type.</value> 10391 <value>The object's properties.</value>
7902 </member> 10392 </member>
7903 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern"> 10393 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters">
7904 <summary> 10394 <summary>
7905 Gets or sets the pattern. 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"/>.
7906 </summary> 10396 </summary>
7907 <value>The pattern.</value>
7908 </member> 10397 </member>
7909 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength"> 10398 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator">
7910 <summary> 10399 <summary>
7911 Gets or sets the minimum length. 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.
7912 </summary> 10402 </summary>
7913 <value>The minimum length.</value> 10403 <value>The function used to create the object.</value>
7914 </member> 10404 </member>
7915 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength"> 10405 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter">
7916 <summary> 10406 <summary>
7917 Gets or sets the maximum length. 10407 Gets or sets the extension data setter.
7918 </summary> 10408 </summary>
7919 <value>The maximum length.</value>
7920 </member> 10409 </member>
7921 <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy"> 10410 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter">
7922 <summary> 10411 <summary>
7923 Gets or sets a number that the value should be divisble by. 10412 Gets or sets the extension data getter.
7924 </summary> 10413 </summary>
7925 <value>A number that the value should be divisble by.</value>
7926 </member> 10414 </member>
7927 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"> 10415 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataValueType">
7928 <summary> 10416 <summary>
7929 Gets or sets the minimum. 10417 Gets or sets the extension data value type.
7930 </summary> 10418 </summary>
7931 <value>The minimum.</value>
7932 </member> 10419 </member>
7933 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"> 10420 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataNameResolver">
7934 <summary> 10421 <summary>
7935 Gets or sets the maximum. 10422 Gets or sets the extension data name resolver.
7936 </summary> 10423 </summary>
7937 <value>The maximum.</value> 10424 <value>The extension data name resolver.</value>
7938 </member> 10425 </member>
7939 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum"> 10426 <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
7940 <summary> 10427 <summary>
7941 Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. 10428 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
7942 </summary> 10429 </summary>
7943 <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value> 10430 <param name="underlyingType">The underlying type for the contract.</param>
7944 </member> 10431 </member>
7945 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum"> 10432 <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
7946 <summary> 10433 <summary>
7947 Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. 10434 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
7948 </summary> 10435 </summary>
7949 <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
7950 </member> 10436 </member>
7951 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems"> 10437 <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
7952 <summary> 10438 <summary>
7953 Gets or sets the minimum number of items. 10439 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
7954 </summary> 10440 </summary>
7955 <value>The minimum number of items.</value> 10441 <param name="underlyingType">The underlying type for the contract.</param>
7956 </member> 10442 </member>
7957 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems"> 10443 <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
7958 <summary> 10444 <summary>
7959 Gets or sets the maximum number of items. 10445 Maps a JSON property to a .NET member or constructor parameter.
7960 </summary> 10446 </summary>
7961 <value>The maximum number of items.</value>
7962 </member> 10447 </member>
7963 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items"> 10448 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
7964 <summary> 10449 <summary>
7965 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items. 10450 Gets or sets the name of the property.
7966 </summary> 10451 </summary>
7967 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value> 10452 <value>The name of the property.</value>
7968 </member> 10453 </member>
7969 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PositionalItemsValidation"> 10454 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
7970 <summary> 10455 <summary>
7971 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"/>. 10456 Gets or sets the type that declared this property.
7972 </summary> 10457 </summary>
7973 <value> 10458 <value>The type that declared this property.</value>
7974 <c>true</c> if items are validated using their array position; otherwise, <c>false</c>.
7975 </value>
7976 </member> 10459 </member>
7977 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalItems"> 10460 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
7978 <summary> 10461 <summary>
7979 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items. 10462 Gets or sets the order of serialization of a member.
7980 </summary> 10463 </summary>
7981 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional items.</value> 10464 <value>The numeric order of serialization.</value>
7982 </member> 10465 </member>
7983 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalItems"> 10466 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
7984 <summary> 10467 <summary>
7985 Gets or sets a value indicating whether additional items are allowed. 10468 Gets or sets the name of the underlying member or parameter.
7986 </summary> 10469 </summary>
7987 <value> 10470 <value>The name of the underlying member or parameter.</value>
7988 <c>true</c> if additional items are allowed; otherwise, <c>false</c>.
7989 </value>
7990 </member> 10471 </member>
7991 <member name="P:Newtonsoft.Json.Schema.JsonSchema.UniqueItems"> 10472 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
7992 <summary> 10473 <summary>
7993 Gets or sets whether the array items must be unique. 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.
7994 </summary> 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>
7995 </member> 10477 </member>
7996 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties"> 10478 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.AttributeProvider">
7997 <summary> 10479 <summary>
7998 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties. 10480 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.
7999 </summary> 10481 </summary>
8000 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value> 10482 <value>The <see cref="T:Newtonsoft.Json.Serialization.IAttributeProvider"/> for this property.</value>
8001 </member> 10483 </member>
8002 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties"> 10484 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
8003 <summary> 10485 <summary>
8004 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties. 10486 Gets or sets the type of the property.
8005 </summary> 10487 </summary>
8006 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value> 10488 <value>The type of the property.</value>
8007 </member> 10489 </member>
8008 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties"> 10490 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
8009 <summary> 10491 <summary>
8010 Gets or sets the pattern properties. 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.
8011 </summary> 10494 </summary>
8012 <value>The pattern properties.</value> 10495 <value>The converter.</value>
8013 </member> 10496 </member>
8014 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties"> 10497 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
8015 <summary> 10498 <summary>
8016 Gets or sets a value indicating whether additional properties are allowed. 10499 Gets or sets the member converter.
8017 </summary> 10500 </summary>
8018 <value> 10501 <value>The member converter.</value>
8019 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
8020 </value>
8021 </member> 10502 </member>
8022 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires"> 10503 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
8023 <summary> 10504 <summary>
8024 Gets or sets the required property if this property is present. 10505 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
8025 </summary> 10506 </summary>
8026 <value>The required property if this property is present.</value> 10507 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
8027 </member> 10508 </member>
8028 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum"> 10509 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
8029 <summary> 10510 <summary>
8030 Gets or sets the a collection of valid enum values allowed. 10511 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
8031 </summary> 10512 </summary>
8032 <value>A collection of valid enum values allowed.</value> 10513 <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
8033 </member> 10514 </member>
8034 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow"> 10515 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
8035 <summary> 10516 <summary>
8036 Gets or sets disallowed types. 10517 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
8037 </summary> 10518 </summary>
8038 <value>The disallow types.</value> 10519 <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
8039 </member> 10520 </member>
8040 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default"> 10521 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute">
8041 <summary> 10522 <summary>
8042 Gets or sets the default value. 10523 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute.
8043 </summary> 10524 </summary>
8044 <value>The default value.</value> 10525 <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>
8045 </member> 10526 </member>
8046 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends"> 10527 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
8047 <summary> 10528 <summary>
8048 Gets or sets the collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends. 10529 Gets the default value.
8049 </summary> 10530 </summary>
8050 <value>The collection of <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> that this schema extends.</value> 10531 <value>The default value.</value>
8051 </member> 10532 </member>
8052 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format"> 10533 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
8053 <summary> 10534 <summary>
8054 Gets or sets the format. 10535 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
8055 </summary> 10536 </summary>
8056 <value>The format.</value> 10537 <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
8057 </member> 10538 </member>
8058 <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"> 10539 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsRequiredSpecified">
8059 <summary> 10540 <summary>
8060 Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>. 10541 Gets a value indicating whether <see cref="P:Newtonsoft.Json.Serialization.JsonProperty.Required"/> has a value specified.
8061 </summary> 10542 </summary>
8062 </member> 10543 </member>
8063 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)"> 10544 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
8064 <summary> 10545 <summary>
8065 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. 10546 Gets or sets a value indicating whether this property preserves object references.
8066 </summary> 10547 </summary>
8067 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> 10548 <value>
8068 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns> 10549 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
10550 </value>
8069 </member> 10551 </member>
8070 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)"> 10552 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
8071 <summary> 10553 <summary>
8072 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. 10554 Gets or sets the property null value handling.
8073 </summary> 10555 </summary>
8074 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> 10556 <value>The null value handling.</value>
8075 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8076 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8077 </member> 10557 </member>
8078 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)"> 10558 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
8079 <summary> 10559 <summary>
8080 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. 10560 Gets or sets the property default value handling.
8081 </summary> 10561 </summary>
8082 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> 10562 <value>The default value handling.</value>
8083 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8084 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8085 </member> 10563 </member>
8086 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)"> 10564 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
8087 <summary> 10565 <summary>
8088 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. 10566 Gets or sets the property reference loop handling.
8089 </summary> 10567 </summary>
8090 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> 10568 <value>The reference loop handling.</value>
8091 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
8092 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
8093 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
8094 </member> 10569 </member>
8095 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling"> 10570 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
8096 <summary> 10571 <summary>
8097 Gets or sets how undefined schemas are handled by the serializer. 10572 Gets or sets the property object creation handling.
8098 </summary> 10573 </summary>
10574 <value>The object creation handling.</value>
8099 </member> 10575 </member>
8100 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver"> 10576 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
8101 <summary> 10577 <summary>
8102 Gets or sets the contract resolver. 10578 Gets or sets or sets the type name handling.
8103 </summary> 10579 </summary>
8104 <value>The contract resolver.</value> 10580 <value>The type name handling.</value>
8105 </member> 10581 </member>
8106 <member name="T:Newtonsoft.Json.Schema.JsonSchemaType"> 10582 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
8107 <summary> 10583 <summary>
8108 The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>. 10584 Gets or sets a predicate used to determine whether the property should be serialized.
8109 </summary> 10585 </summary>
10586 <value>A predicate used to determine whether the property should be serialized.</value>
8110 </member> 10587 </member>
8111 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None"> 10588 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldDeserialize">
8112 <summary> 10589 <summary>
8113 No type specified. 10590 Gets or sets a predicate used to determine whether the property should be deserialized.
8114 </summary> 10591 </summary>
10592 <value>A predicate used to determine whether the property should be deserialized.</value>
8115 </member> 10593 </member>
8116 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String"> 10594 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
8117 <summary> 10595 <summary>
8118 String type. 10596 Gets or sets a predicate used to determine whether the property should be serialized.
8119 </summary> 10597 </summary>
10598 <value>A predicate used to determine whether the property should be serialized.</value>
8120 </member> 10599 </member>
8121 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float"> 10600 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
8122 <summary> 10601 <summary>
8123 Float type. 10602 Gets or sets an action used to set whether the property has been deserialized.
8124 </summary> 10603 </summary>
10604 <value>An action used to set whether the property has been deserialized.</value>
8125 </member> 10605 </member>
8126 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer"> 10606 <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
8127 <summary> 10607 <summary>
8128 Integer type. 10608 Returns a <see cref="T:System.String"/> that represents this instance.
8129 </summary> 10609 </summary>
10610 <returns>
10611 A <see cref="T:System.String"/> that represents this instance.
10612 </returns>
8130 </member> 10613 </member>
8131 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean"> 10614 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter">
8132 <summary> 10615 <summary>
8133 Boolean type. 10616 Gets or sets the converter used when serializing the property's collection items.
8134 </summary> 10617 </summary>
10618 <value>The collection's items converter.</value>
8135 </member> 10619 </member>
8136 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object"> 10620 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference">
8137 <summary> 10621 <summary>
8138 Object type. 10622 Gets or sets whether this property's collection items are serialized as a reference.
8139 </summary> 10623 </summary>
10624 <value>Whether this property's collection items are serialized as a reference.</value>
8140 </member> 10625 </member>
8141 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array"> 10626 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling">
8142 <summary> 10627 <summary>
8143 Array type. 10628 Gets or sets the type name handling used when serializing the property's collection items.
8144 </summary> 10629 </summary>
10630 <value>The collection's items type name handling.</value>
8145 </member> 10631 </member>
8146 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null"> 10632 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling">
8147 <summary> 10633 <summary>
8148 Null type. 10634 Gets or sets the reference loop handling used when serializing the property's collection items.
8149 </summary> 10635 </summary>
10636 <value>The collection's items reference loop handling.</value>
8150 </member> 10637 </member>
8151 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any"> 10638 <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
8152 <summary> 10639 <summary>
8153 Any type. 10640 A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
8154 </summary> 10641 </summary>
8155 </member> 10642 </member>
8156 <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract"> 10643 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
8157 <summary> 10644 <summary>
8158 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10645 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
8159 </summary> 10646 </summary>
10647 <param name="type">The type.</param>
8160 </member> 10648 </member>
8161 <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)"> 10649 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
8162 <summary> 10650 <summary>
8163 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class. 10651 When implemented in a derived class, extracts the key from the specified element.
8164 </summary> 10652 </summary>
8165 <param name="underlyingType">The underlying type for the contract.</param> 10653 <param name="item">The element from which to extract the key.</param>
10654 <returns>The key for the specified element.</returns>
8166 </member> 10655 </member>
8167 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization"> 10656 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
8168 <summary> 10657 <summary>
8169 Gets or sets the object member serialization. 10658 Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
8170 </summary> 10659 </summary>
8171 <value>The member object serialization.</value> 10660 <param name="property">The property to add to the collection.</param>
8172 </member> 10661 </member>
8173 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired"> 10662 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
8174 <summary> 10663 <summary>
8175 Gets or sets a value that indicates whether the object's properties are required. 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.
8176 </summary> 10667 </summary>
8177 <value> 10668 <param name="propertyName">Name of the property.</param>
8178 A value indicating whether the object's properties are required. 10669 <returns>A matching property if found.</returns>
8179 </value>
8180 </member> 10670 </member>
8181 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties"> 10671 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
8182 <summary> 10672 <summary>
8183 Gets the object's properties. 10673 Gets a property by property name.
8184 </summary> 10674 </summary>
8185 <value>The object's properties.</value> 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>
8186 </member> 10678 </member>
8187 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters"> 10679 <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
8188 <summary> 10680 <summary>
8189 Gets the constructor parameters required for any non-default constructor 10681 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8190 </summary> 10682 </summary>
8191 </member> 10683 </member>
8192 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"> 10684 <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
8193 <summary> 10685 <summary>
8194 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"/>. 10686 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
8195 </summary> 10687 </summary>
10688 <param name="underlyingType">The underlying type for the contract.</param>
8196 </member> 10689 </member>
8197 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor"> 10690 <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])">
8198 <summary> 10691 <summary>
8199 Gets or sets the override constructor used to create the object. 10692 Lookup and create an instance of the <see cref="T:Newtonsoft.Json.JsonConverter"/> type described by the argument.
8200 This is set when a constructor is marked up using the
8201 JsonConstructor attribute.
8202 </summary> 10693 </summary>
8203 <value>The override constructor.</value> 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>
8204 </member> 10697 </member>
8205 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor"> 10698 <member name="T:Newtonsoft.Json.Serialization.MemoryTraceWriter">
8206 <summary> 10699 <summary>
8207 Gets or sets the parametrized constructor used to create the object. 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.
8208 </summary> 10702 </summary>
8209 <value>The parametrized constructor.</value>
8210 </member> 10703 </member>
8211 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideCreator"> 10704 <member name="P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter">
8212 <summary> 10705 <summary>
8213 Gets or sets the function used to create the object. When set this function will override <see cref="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"/>. 10706 Gets the <see cref="T:System.Diagnostics.TraceLevel"/> that will be used to filter the trace messages passed to the writer.
8214 This function is called with a collection of arguments which are defined by the <see cref="P:Newtonsoft.Json.Serialization.JsonObjectContract.CreatorParameters"/> collection. 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.
8215 </summary> 10709 </summary>
8216 <value>The function used to create the object.</value> 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>
8217 </member> 10713 </member>
8218 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataSetter"> 10714 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor">
8219 <summary> 10715 <summary>
8220 Gets or sets the extension data setter. 10716 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.MemoryTraceWriter"/> class.
8221 </summary> 10717 </summary>
8222 </member> 10718 </member>
8223 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ExtensionDataGetter"> 10719 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)">
8224 <summary> 10720 <summary>
8225 Gets or sets the extension data getter. 10721 Writes the specified trace level, message and optional exception.
8226 </summary> 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>
8227 </member> 10726 </member>
8228 <member name="T:Newtonsoft.Json.Serialization.JsonStringContract"> 10727 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages">
8229 <summary> 10728 <summary>
8230 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10729 Returns an enumeration of the most recent trace messages.
8231 </summary> 10730 </summary>
10731 <returns>An enumeration of the most recent trace messages.</returns>
8232 </member> 10732 </member>
8233 <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)"> 10733 <member name="M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString">
8234 <summary> 10734 <summary>
8235 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class. 10735 Returns a <see cref="T:System.String"/> of the most recent trace messages.
8236 </summary> 10736 </summary>
8237 <param name="underlyingType">The underlying type for the contract.</param> 10737 <returns>
10738 A <see cref="T:System.String"/> of the most recent trace messages.
10739 </returns>
8238 </member> 10740 </member>
8239 <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.CreateJsonConverterInstance(System.Type,System.Object[])"> 10741 <member name="T:Newtonsoft.Json.Serialization.NamingStrategy">
8240 <summary> 10742 <summary>
8241 Lookup and create an instance of the JsonConverter type described by the argument. 10743 A base class for resolving how property names and dictionary keys are serialized.
8242 </summary> 10744 </summary>
8243 <param name="converterType">The JsonConverter type to create.</param>
8244 <param name="converterArgs">Optional arguments to pass to an initializing constructor of the JsonConverter.
8245 If null, the default constructor is used.</param>
8246 </member> 10745 </member>
8247 <member name="M:Newtonsoft.Json.Serialization.JsonTypeReflector.GetJsonConverterCreator(System.Type)"> 10746 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessDictionaryKeys">
8248 <summary> 10747 <summary>
8249 Create a factory function that can be used to create instances of a JsonConverter described by the 10748 A flag indicating whether dictionary keys should be processed.
8250 argument type. The returned function can then be used to either invoke the converter's default ctor, or any 10749 Defaults to <c>false</c>.
8251 parameterized constructors by way of an object array.
8252 </summary> 10750 </summary>
8253 </member> 10751 </member>
8254 <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"> 10752 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.ProcessExtensionDataNames">
8255 <summary> 10753 <summary>
8256 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection. 10754 A flag indicating whether extension data names should be processed.
10755 Defaults to <c>false</c>.
8257 </summary> 10756 </summary>
8258 </member> 10757 </member>
8259 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)"> 10758 <member name="P:Newtonsoft.Json.Serialization.NamingStrategy.OverrideSpecifiedNames">
8260 <summary> 10759 <summary>
8261 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class. 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>.
8262 </summary> 10763 </summary>
8263 <param name="memberInfo">The member info.</param>
8264 </member> 10764 </member>
8265 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)"> 10765 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetPropertyName(System.String,System.Boolean)">
8266 <summary> 10766 <summary>
8267 Sets the value. 10767 Gets the serialized name for a given property name.
8268 </summary> 10768 </summary>
8269 <param name="target">The target to set the value on.</param> 10769 <param name="name">The initial property name.</param>
8270 <param name="value">The value to set on the target.</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>
8271 </member> 10772 </member>
8272 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)"> 10773 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetExtensionDataName(System.String)">
8273 <summary> 10774 <summary>
8274 Gets the value. 10775 Gets the serialized name for a given extension data name.
8275 </summary> 10776 </summary>
8276 <param name="target">The target to get the value from.</param> 10777 <param name="name">The initial extension data name.</param>
8277 <returns>The value.</returns> 10778 <returns>The serialized extension data name.</returns>
8278 </member> 10779 </member>
8279 <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute"> 10780 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetDictionaryKey(System.String)">
8280 <summary> 10781 <summary>
8281 When applied to a method, specifies that the method is called when an error occurs serializing an object. 10782 Gets the serialized key for a given dictionary key.
8282 </summary> 10783 </summary>
10784 <param name="key">The initial dictionary key.</param>
10785 <returns>The serialized dictionary key.</returns>
8283 </member> 10786 </member>
8284 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)"> 10787 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.ResolvePropertyName(System.String)">
8285 <summary> 10788 <summary>
8286 Helper method for generating a MetaObject which calls a 10789 Resolves the specified property name.
8287 specific method on Dynamic that returns a result
8288 </summary> 10790 </summary>
10791 <param name="name">The property name to resolve.</param>
10792 <returns>The resolved property name.</returns>
8289 </member> 10793 </member>
8290 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)"> 10794 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.GetHashCode">
8291 <summary> 10795 <summary>
8292 Helper method for generating a MetaObject which calls a 10796 Hash code calculation
8293 specific method on Dynamic, but uses one of the arguments for
8294 the result.
8295 </summary> 10797 </summary>
10798 <returns></returns>
8296 </member> 10799 </member>
8297 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)"> 10800 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.Equals(System.Object)">
8298 <summary> 10801 <summary>
8299 Helper method for generating a MetaObject which calls a 10802 Object equality implementation
8300 specific method on Dynamic, but uses one of the arguments for
8301 the result.
8302 </summary> 10803 </summary>
10804 <param name="obj"></param>
10805 <returns></returns>
8303 </member> 10806 </member>
8304 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions"> 10807 <member name="M:Newtonsoft.Json.Serialization.NamingStrategy.Equals(Newtonsoft.Json.Serialization.NamingStrategy)">
8305 <summary> 10808 <summary>
8306 Returns a Restrictions object which includes our current restrictions merged 10809 Compare to another NamingStrategy
8307 with a restriction limiting our type
8308 </summary> 10810 </summary>
10811 <param name="other"></param>
10812 <returns></returns>
8309 </member> 10813 </member>
8310 <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1"> 10814 <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
8311 <summary> 10815 <summary>
@@ -8313,187 +10817,240 @@
8313 </summary> 10817 </summary>
8314 <typeparam name="T">The object type to create.</typeparam> 10818 <typeparam name="T">The object type to create.</typeparam>
8315 </member> 10819 </member>
8316 <member name="T:Newtonsoft.Json.TypeNameHandling"> 10820 <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
8317 <summary> 10821 <summary>
8318 Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. 10822 When applied to a method, specifies that the method is called when an error occurs serializing an object.
8319 </summary> 10823 </summary>
8320 </member> 10824 </member>
8321 <member name="F:Newtonsoft.Json.TypeNameHandling.None"> 10825 <member name="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider">
8322 <summary> 10826 <summary>
8323 Do not include the .NET type name when serializing types. 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"/>.
8324 </summary> 10828 </summary>
8325 </member> 10829 </member>
8326 <member name="F:Newtonsoft.Json.TypeNameHandling.Objects"> 10830 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.#ctor(System.Object)">
8327 <summary> 10831 <summary>
8328 Include the .NET type name when serializing into a JSON object structure. 10832 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionAttributeProvider"/> class.
8329 </summary> 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>
8330 </member> 10835 </member>
8331 <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays"> 10836 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Boolean)">
8332 <summary> 10837 <summary>
8333 Include the .NET type name when serializing into a JSON array structure. 10838 Returns a collection of all of the attributes, or an empty collection if there are no attributes.
8334 </summary> 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>
8335 </member> 10842 </member>
8336 <member name="F:Newtonsoft.Json.TypeNameHandling.All"> 10843 <member name="M:Newtonsoft.Json.Serialization.ReflectionAttributeProvider.GetAttributes(System.Type,System.Boolean)">
8337 <summary> 10844 <summary>
8338 Always include the .NET type name when serializing. 10845 Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
8339 </summary> 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>
8340 </member> 10850 </member>
8341 <member name="F:Newtonsoft.Json.TypeNameHandling.Auto"> 10851 <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
8342 <summary> 10852 <summary>
8343 Include the .NET type name when the type of the object being serialized is not the same as its declared type. 10853 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
8344 </summary> 10854 </summary>
8345 </member> 10855 </member>
8346 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)"> 10856 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
8347 <summary> 10857 <summary>
8348 Converts the value to the specified type. If the value is unable to be converted, the 10858 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
8349 value is checked whether it assignable to the specified type.
8350 </summary> 10859 </summary>
8351 <param name="initialValue">The value to convert.</param> 10860 <param name="memberInfo">The member info.</param>
8352 <param name="culture">The culture to use when converting.</param>
8353 <param name="targetType">The type to convert or cast the value to.</param>
8354 <returns>
8355 The converted type. If conversion was unsuccessful, the initial value
8356 is returned if assignable to the target type.
8357 </returns>
8358 </member> 10861 </member>
8359 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1"> 10862 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
8360 <summary> 10863 <summary>
8361 Gets a dictionary of the names and values of an Enum type. 10864 Sets the value.
8362 </summary> 10865 </summary>
8363 <returns></returns> 10866 <param name="target">The target to set the value on.</param>
10867 <param name="value">The value to set on the target.</param>
8364 </member> 10868 </member>
8365 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)"> 10869 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
8366 <summary> 10870 <summary>
8367 Gets a dictionary of the names and values of an Enum type. 10871 Gets the value.
8368 </summary> 10872 </summary>
8369 <param name="enumType">The enum type to get names and values for.</param> 10873 <param name="target">The target to get the value from.</param>
8370 <returns></returns> 10874 <returns>The value.</returns>
8371 </member> 10875 </member>
8372 <member name="T:Newtonsoft.Json.JsonToken"> 10876 <member name="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy">
8373 <summary> 10877 <summary>
8374 Specifies the type of Json token. 10878 A snake case naming strategy.
8375 </summary> 10879 </summary>
8376 </member> 10880 </member>
8377 <member name="F:Newtonsoft.Json.JsonToken.None"> 10881 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean)">
8378 <summary> 10882 <summary>
8379 This is returned by the <see cref="T:Newtonsoft.Json.JsonReader"/> if a <see cref="M:Newtonsoft.Json.JsonReader.Read"/> method has not been called. 10883 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8380 </summary> 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>
8381 </member> 10892 </member>
8382 <member name="F:Newtonsoft.Json.JsonToken.StartObject"> 10893 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor(System.Boolean,System.Boolean,System.Boolean)">
8383 <summary> 10894 <summary>
8384 An object start token. 10895 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8385 </summary> 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>
8386 </member> 10907 </member>
8387 <member name="F:Newtonsoft.Json.JsonToken.StartArray"> 10908 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.#ctor">
8388 <summary> 10909 <summary>
8389 An array start token. 10910 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy"/> class.
8390 </summary> 10911 </summary>
8391 </member> 10912 </member>
8392 <member name="F:Newtonsoft.Json.JsonToken.StartConstructor"> 10913 <member name="M:Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy.ResolvePropertyName(System.String)">
8393 <summary> 10914 <summary>
8394 A constructor start token. 10915 Resolves the specified property name.
8395 </summary> 10916 </summary>
10917 <param name="name">The property name to resolve.</param>
10918 <returns>The resolved property name.</returns>
8396 </member> 10919 </member>
8397 <member name="F:Newtonsoft.Json.JsonToken.PropertyName"> 10920 <member name="T:Newtonsoft.Json.StringEscapeHandling">
8398 <summary> 10921 <summary>
8399 An object property name. 10922 Specifies how strings are escaped when writing JSON text.
8400 </summary> 10923 </summary>
8401 </member> 10924 </member>
8402 <member name="F:Newtonsoft.Json.JsonToken.Comment"> 10925 <member name="F:Newtonsoft.Json.StringEscapeHandling.Default">
8403 <summary> 10926 <summary>
8404 A comment. 10927 Only control characters (e.g. newline) are escaped.
8405 </summary> 10928 </summary>
8406 </member> 10929 </member>
8407 <member name="F:Newtonsoft.Json.JsonToken.Raw"> 10930 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii">
8408 <summary> 10931 <summary>
8409 Raw JSON. 10932 All non-ASCII and control characters (e.g. newline) are escaped.
8410 </summary> 10933 </summary>
8411 </member> 10934 </member>
8412 <member name="F:Newtonsoft.Json.JsonToken.Integer"> 10935 <member name="F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml">
8413 <summary> 10936 <summary>
8414 An integer. 10937 HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.
8415 </summary> 10938 </summary>
8416 </member> 10939 </member>
8417 <member name="F:Newtonsoft.Json.JsonToken.Float"> 10940 <member name="T:Newtonsoft.Json.TypeNameAssemblyFormatHandling">
8418 <summary> 10941 <summary>
8419 A float. 10942 Indicates the method that will be used during deserialization for locating and loading assemblies.
8420 </summary> 10943 </summary>
8421 </member> 10944 </member>
8422 <member name="F:Newtonsoft.Json.JsonToken.String"> 10945 <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Simple">
8423 <summary> 10946 <summary>
8424 A string. 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.
8425 </summary> 10948 </summary>
8426 </member> 10949 </member>
8427 <member name="F:Newtonsoft.Json.JsonToken.Boolean"> 10950 <member name="F:Newtonsoft.Json.TypeNameAssemblyFormatHandling.Full">
8428 <summary> 10951 <summary>
8429 A boolean. 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.
8430 </summary> 10953 </summary>
8431 </member> 10954 </member>
8432 <member name="F:Newtonsoft.Json.JsonToken.Null"> 10955 <member name="T:Newtonsoft.Json.TypeNameHandling">
8433 <summary> 10956 <summary>
8434 A null token. 10957 Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
8435 </summary> 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>
8436 </member> 10964 </member>
8437 <member name="F:Newtonsoft.Json.JsonToken.Undefined"> 10965 <member name="F:Newtonsoft.Json.TypeNameHandling.None">
8438 <summary> 10966 <summary>
8439 An undefined token. 10967 Do not include the .NET type name when serializing types.
8440 </summary> 10968 </summary>
8441 </member> 10969 </member>
8442 <member name="F:Newtonsoft.Json.JsonToken.EndObject"> 10970 <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
8443 <summary> 10971 <summary>
8444 An object end token. 10972 Include the .NET type name when serializing into a JSON object structure.
8445 </summary> 10973 </summary>
8446 </member> 10974 </member>
8447 <member name="F:Newtonsoft.Json.JsonToken.EndArray"> 10975 <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
8448 <summary> 10976 <summary>
8449 An array end token. 10977 Include the .NET type name when serializing into a JSON array structure.
8450 </summary> 10978 </summary>
8451 </member> 10979 </member>
8452 <member name="F:Newtonsoft.Json.JsonToken.EndConstructor"> 10980 <member name="F:Newtonsoft.Json.TypeNameHandling.All">
8453 <summary> 10981 <summary>
8454 A constructor end token. 10982 Always include the .NET type name when serializing.
8455 </summary> 10983 </summary>
8456 </member> 10984 </member>
8457 <member name="F:Newtonsoft.Json.JsonToken.Date"> 10985 <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
8458 <summary> 10986 <summary>
8459 A Date. 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)"/>.
8460 </summary> 10991 </summary>
8461 </member> 10992 </member>
8462 <member name="F:Newtonsoft.Json.JsonToken.Bytes"> 10993 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
8463 <summary> 10994 <summary>
8464 Byte data. 10995 Determines whether the collection is <c>null</c> or empty.
8465 </summary> 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>
8466 </member> 11001 </member>
8467 <member name="T:Newtonsoft.Json.Utilities.StringBuffer"> 11002 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
8468 <summary> 11003 <summary>
8469 Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. 11004 Adds the elements of the specified collection to the specified generic <see cref="T:System.Collections.Generic.IList`1"/>.
8470 </summary> 11005 </summary>
11006 <param name="initial">The list to add to.</param>
11007 <param name="collection">The collection of elements to add.</param>
8471 </member> 11008 </member>
8472 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})"> 11009 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
8473 <summary> 11010 <summary>
8474 Determines whether the collection is null or empty. 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.
8475 </summary> 11013 </summary>
8476 <param name="collection">The collection.</param> 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>
8477 <returns> 11017 <returns>
8478 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>. 11018 The converted type. If conversion was unsuccessful, the initial value
11019 is returned if assignable to the target type.
8479 </returns> 11020 </returns>
8480 </member> 11021 </member>
8481 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"> 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)">
8482 <summary> 11023 <summary>
8483 Adds the elements of the specified collection to the specified generic IList. 11024 Helper method for generating a MetaObject which calls a
11025 specific method on Dynamic that returns a result
8484 </summary> 11026 </summary>
8485 <param name="initial">The list to add to.</param>
8486 <param name="collection">The collection of elements to add.</param>
8487 </member> 11027 </member>
8488 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})"> 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)">
8489 <summary> 11029 <summary>
8490 Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. 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
8491 </summary> 11053 </summary>
8492 <typeparam name="TSource">The type of the elements of source.</typeparam>
8493 <param name="list">A sequence in which to locate a value.</param>
8494 <param name="value">The object to locate in the sequence</param>
8495 <param name="comparer">An equality comparer to compare values.</param>
8496 <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
8497 </member> 11054 </member>
8498 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)"> 11055 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
8499 <summary> 11056 <summary>
@@ -8509,15 +11066,6 @@
8509 <param name="member">The member.</param> 11066 <param name="member">The member.</param>
8510 <returns>The underlying type of the member.</returns> 11067 <returns>The underlying type of the member.</returns>
8511 </member> 11068 </member>
8512 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
8513 <summary>
8514 Determines whether the member is an indexed property.
8515 </summary>
8516 <param name="member">The member.</param>
8517 <returns>
8518 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
8519 </returns>
8520 </member>
8521 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)"> 11069 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
8522 <summary> 11070 <summary>
8523 Determines whether the property is an indexed property. 11071 Determines whether the property is an indexed property.
@@ -8564,22 +11112,20 @@
8564 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>. 11112 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
8565 </returns> 11113 </returns>
8566 </member> 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>
8567 <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)"> 11120 <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
8568 <summary> 11121 <summary>
8569 Determines whether the string is all white space. Empty string will return false. 11122 Determines whether the string is all white space. Empty string will return <c>false</c>.
8570 </summary> 11123 </summary>
8571 <param name="s">The string to test whether it is all white space.</param> 11124 <param name="s">The string to test whether it is all white space.</param>
8572 <returns> 11125 <returns>
8573 <c>true</c> if the string is all white space; otherwise, <c>false</c>. 11126 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
8574 </returns> 11127 </returns>
8575 </member> 11128 </member>
8576 <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
8577 <summary>
8578 Nulls an empty string.
8579 </summary>
8580 <param name="s">The string.</param>
8581 <returns>Null if the string was null, otherwise the string unchanged.</returns>
8582 </member>
8583 <member name="T:Newtonsoft.Json.WriteState"> 11129 <member name="T:Newtonsoft.Json.WriteState">
8584 <summary> 11130 <summary>
8585 Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>. 11131 Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
@@ -8589,12 +11135,12 @@
8589 <summary> 11135 <summary>
8590 An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state. 11136 An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
8591 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. 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.
8592 Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. 11138 Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls result in an <see cref="T:System.InvalidOperationException"/> being thrown.
8593 </summary> 11139 </summary>
8594 </member> 11140 </member>
8595 <member name="F:Newtonsoft.Json.WriteState.Closed"> 11141 <member name="F:Newtonsoft.Json.WriteState.Closed">
8596 <summary> 11142 <summary>
8597 The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. 11143 The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
8598 </summary> 11144 </summary>
8599 </member> 11145 </member>
8600 <member name="F:Newtonsoft.Json.WriteState.Object"> 11146 <member name="F:Newtonsoft.Json.WriteState.Object">
@@ -8604,7 +11150,7 @@
8604 </member> 11150 </member>
8605 <member name="F:Newtonsoft.Json.WriteState.Array"> 11151 <member name="F:Newtonsoft.Json.WriteState.Array">
8606 <summary> 11152 <summary>
8607 A array is being written. 11153 An array is being written.
8608 </summary> 11154 </summary>
8609 </member> 11155 </member>
8610 <member name="F:Newtonsoft.Json.WriteState.Constructor"> 11156 <member name="F:Newtonsoft.Json.WriteState.Constructor">
@@ -8619,8 +11165,29 @@
8619 </member> 11165 </member>
8620 <member name="F:Newtonsoft.Json.WriteState.Start"> 11166 <member name="F:Newtonsoft.Json.WriteState.Start">
8621 <summary> 11167 <summary>
8622 A write method has not been called. 11168 A <see cref="T:Newtonsoft.Json.JsonWriter"/> write method has not been called.
8623 </summary> 11169 </summary>
8624 </member> 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>
8625 </members> 11192 </members>
8626</doc> 11193</doc>