comparison Stocks/packages/Newtonsoft.Json.4.0.8/lib/net35/Newtonsoft.Json.xml @ 0:e5d46bb6cdb0

Initial commit
author adminSH stevenhollidge@hotmail.com
date Mon, 20 Feb 2012 13:52:35 +0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e5d46bb6cdb0
1 <?xml version="1.0"?>
2 <doc>
3 <assembly>
4 <name>Newtonsoft.Json</name>
5 </assembly>
6 <members>
7 <member name="T:Newtonsoft.Json.Bson.BsonReader">
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"/>.</returns>
33 </member>
34 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes">
35 <summary>
36 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
37 </summary>
38 <returns>A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.</returns>
39 </member>
40 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal">
41 <summary>
42 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
43 </summary>
44 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
45 </member>
46 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset">
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"/>.</returns>
51 </member>
52 <member name="M:Newtonsoft.Json.JsonReader.Skip">
53 <summary>
54 Skips the children of the current token.
55 </summary>
56 </member>
57 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)">
58 <summary>
59 Sets the current token.
60 </summary>
61 <param name="newToken">The new token.</param>
62 </member>
63 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)">
64 <summary>
65 Sets the current token and value.
66 </summary>
67 <param name="newToken">The new token.</param>
68 <param name="value">The value.</param>
69 </member>
70 <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent">
71 <summary>
72 Sets the state based on current token type.
73 </summary>
74 </member>
75 <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose">
76 <summary>
77 Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
78 </summary>
79 </member>
80 <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)">
81 <summary>
82 Releases unmanaged and - optionally - managed resources
83 </summary>
84 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
85 </member>
86 <member name="M:Newtonsoft.Json.JsonReader.Close">
87 <summary>
88 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
89 </summary>
90 </member>
91 <member name="P:Newtonsoft.Json.JsonReader.CurrentState">
92 <summary>
93 Gets the current reader state.
94 </summary>
95 <value>The current reader state.</value>
96 </member>
97 <member name="P:Newtonsoft.Json.JsonReader.CloseInput">
98 <summary>
99 Gets or sets a value indicating whether the underlying stream or
100 <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed.
101 </summary>
102 <value>
103 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
104 the reader is closed; otherwise false. The default is true.
105 </value>
106 </member>
107 <member name="P:Newtonsoft.Json.JsonReader.QuoteChar">
108 <summary>
109 Gets the quotation mark character used to enclose the value of a string.
110 </summary>
111 </member>
112 <member name="P:Newtonsoft.Json.JsonReader.TokenType">
113 <summary>
114 Gets the type of the current Json token.
115 </summary>
116 </member>
117 <member name="P:Newtonsoft.Json.JsonReader.Value">
118 <summary>
119 Gets the text value of the current Json token.
120 </summary>
121 </member>
122 <member name="P:Newtonsoft.Json.JsonReader.ValueType">
123 <summary>
124 Gets The Common Language Runtime (CLR) type for the current Json token.
125 </summary>
126 </member>
127 <member name="P:Newtonsoft.Json.JsonReader.Depth">
128 <summary>
129 Gets the depth of the current token in the JSON document.
130 </summary>
131 <value>The depth of the current token in the JSON document.</value>
132 </member>
133 <member name="P:Newtonsoft.Json.JsonReader.Culture">
134 <summary>
135 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>.
136 </summary>
137 </member>
138 <member name="T:Newtonsoft.Json.JsonReader.State">
139 <summary>
140 Specifies the state of the reader.
141 </summary>
142 </member>
143 <member name="F:Newtonsoft.Json.JsonReader.State.Start">
144 <summary>
145 The Read method has not been called.
146 </summary>
147 </member>
148 <member name="F:Newtonsoft.Json.JsonReader.State.Complete">
149 <summary>
150 The end of the file has been reached successfully.
151 </summary>
152 </member>
153 <member name="F:Newtonsoft.Json.JsonReader.State.Property">
154 <summary>
155 Reader is at a property.
156 </summary>
157 </member>
158 <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart">
159 <summary>
160 Reader is at the start of an object.
161 </summary>
162 </member>
163 <member name="F:Newtonsoft.Json.JsonReader.State.Object">
164 <summary>
165 Reader is in an object.
166 </summary>
167 </member>
168 <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart">
169 <summary>
170 Reader is at the start of an array.
171 </summary>
172 </member>
173 <member name="F:Newtonsoft.Json.JsonReader.State.Array">
174 <summary>
175 Reader is in an array.
176 </summary>
177 </member>
178 <member name="F:Newtonsoft.Json.JsonReader.State.Closed">
179 <summary>
180 The Close method has been called.
181 </summary>
182 </member>
183 <member name="F:Newtonsoft.Json.JsonReader.State.PostValue">
184 <summary>
185 Reader has just read a value.
186 </summary>
187 </member>
188 <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart">
189 <summary>
190 Reader is at the start of a constructor.
191 </summary>
192 </member>
193 <member name="F:Newtonsoft.Json.JsonReader.State.Constructor">
194 <summary>
195 Reader in a constructor.
196 </summary>
197 </member>
198 <member name="F:Newtonsoft.Json.JsonReader.State.Error">
199 <summary>
200 An error occurred that prevents the read operation from continuing.
201 </summary>
202 </member>
203 <member name="F:Newtonsoft.Json.JsonReader.State.Finished">
204 <summary>
205 The end of the file has been reached successfully.
206 </summary>
207 </member>
208 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
209 <summary>
210 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
211 </summary>
212 <param name="stream">The stream.</param>
213 </member>
214 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
215 <summary>
216 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
217 </summary>
218 <param name="reader">The reader.</param>
219 </member>
220 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
221 <summary>
222 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
223 </summary>
224 <param name="stream">The stream.</param>
225 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
226 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
227 </member>
228 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
229 <summary>
230 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
231 </summary>
232 <param name="reader">The reader.</param>
233 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
234 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
235 </member>
236 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes">
237 <summary>
238 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
239 </summary>
240 <returns>
241 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
242 </returns>
243 </member>
244 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal">
245 <summary>
246 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
247 </summary>
248 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
249 </member>
250 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32">
251 <summary>
252 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
253 </summary>
254 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
255 </member>
256 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset">
257 <summary>
258 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
259 </summary>
260 <returns>
261 A <see cref="T:System.Nullable`1"/>.
262 </returns>
263 </member>
264 <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
265 <summary>
266 Reads the next JSON token from the stream.
267 </summary>
268 <returns>
269 true if the next token was read successfully; false if there are no more tokens to read.
270 </returns>
271 </member>
272 <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
273 <summary>
274 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed.
275 </summary>
276 </member>
277 <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
278 <summary>
279 Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
280 </summary>
281 <value>
282 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
283 </value>
284 </member>
285 <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
286 <summary>
287 Gets or sets a value indicating whether the root object will be read as a JSON array.
288 </summary>
289 <value>
290 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
291 </value>
292 </member>
293 <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
294 <summary>
295 Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.
296 </summary>
297 <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
298 </member>
299 <member name="T:Newtonsoft.Json.Bson.BsonWriter">
300 <summary>
301 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
302 </summary>
303 </member>
304 <member name="T:Newtonsoft.Json.JsonWriter">
305 <summary>
306 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
307 </summary>
308 </member>
309 <member name="M:Newtonsoft.Json.JsonWriter.#ctor">
310 <summary>
311 Creates an instance of the <c>JsonWriter</c> class.
312 </summary>
313 </member>
314 <member name="M:Newtonsoft.Json.JsonWriter.Flush">
315 <summary>
316 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
317 </summary>
318 </member>
319 <member name="M:Newtonsoft.Json.JsonWriter.Close">
320 <summary>
321 Closes this stream and the underlying stream.
322 </summary>
323 </member>
324 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject">
325 <summary>
326 Writes the beginning of a Json object.
327 </summary>
328 </member>
329 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject">
330 <summary>
331 Writes the end of a Json object.
332 </summary>
333 </member>
334 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray">
335 <summary>
336 Writes the beginning of a Json array.
337 </summary>
338 </member>
339 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray">
340 <summary>
341 Writes the end of an array.
342 </summary>
343 </member>
344 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)">
345 <summary>
346 Writes the start of a constructor with the given name.
347 </summary>
348 <param name="name">The name of the constructor.</param>
349 </member>
350 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor">
351 <summary>
352 Writes the end constructor.
353 </summary>
354 </member>
355 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)">
356 <summary>
357 Writes the property name of a name/value pair on a Json object.
358 </summary>
359 <param name="name">The name of the property.</param>
360 </member>
361 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd">
362 <summary>
363 Writes the end of the current Json object or array.
364 </summary>
365 </member>
366 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)">
367 <summary>
368 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token.
369 </summary>
370 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param>
371 </member>
372 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
373 <summary>
374 Writes the specified end token.
375 </summary>
376 <param name="token">The end token to write.</param>
377 </member>
378 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent">
379 <summary>
380 Writes indent characters.
381 </summary>
382 </member>
383 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter">
384 <summary>
385 Writes the JSON value delimiter.
386 </summary>
387 </member>
388 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace">
389 <summary>
390 Writes an indent space.
391 </summary>
392 </member>
393 <member name="M:Newtonsoft.Json.JsonWriter.WriteNull">
394 <summary>
395 Writes a null value.
396 </summary>
397 </member>
398 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined">
399 <summary>
400 Writes an undefined value.
401 </summary>
402 </member>
403 <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)">
404 <summary>
405 Writes raw JSON without changing the writer's state.
406 </summary>
407 <param name="json">The raw JSON to write.</param>
408 </member>
409 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)">
410 <summary>
411 Writes raw JSON where a value is expected and updates the writer's state.
412 </summary>
413 <param name="json">The raw JSON to write.</param>
414 </member>
415 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)">
416 <summary>
417 Writes a <see cref="T:System.String"/> value.
418 </summary>
419 <param name="value">The <see cref="T:System.String"/> value to write.</param>
420 </member>
421 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)">
422 <summary>
423 Writes a <see cref="T:System.Int32"/> value.
424 </summary>
425 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
426 </member>
427 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)">
428 <summary>
429 Writes a <see cref="T:System.UInt32"/> value.
430 </summary>
431 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
432 </member>
433 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)">
434 <summary>
435 Writes a <see cref="T:System.Int64"/> value.
436 </summary>
437 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
438 </member>
439 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)">
440 <summary>
441 Writes a <see cref="T:System.UInt64"/> value.
442 </summary>
443 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
444 </member>
445 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)">
446 <summary>
447 Writes a <see cref="T:System.Single"/> value.
448 </summary>
449 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
450 </member>
451 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)">
452 <summary>
453 Writes a <see cref="T:System.Double"/> value.
454 </summary>
455 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
456 </member>
457 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)">
458 <summary>
459 Writes a <see cref="T:System.Boolean"/> value.
460 </summary>
461 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
462 </member>
463 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)">
464 <summary>
465 Writes a <see cref="T:System.Int16"/> value.
466 </summary>
467 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
468 </member>
469 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)">
470 <summary>
471 Writes a <see cref="T:System.UInt16"/> value.
472 </summary>
473 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
474 </member>
475 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)">
476 <summary>
477 Writes a <see cref="T:System.Char"/> value.
478 </summary>
479 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
480 </member>
481 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)">
482 <summary>
483 Writes a <see cref="T:System.Byte"/> value.
484 </summary>
485 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
486 </member>
487 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)">
488 <summary>
489 Writes a <see cref="T:System.SByte"/> value.
490 </summary>
491 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
492 </member>
493 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)">
494 <summary>
495 Writes a <see cref="T:System.Decimal"/> value.
496 </summary>
497 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
498 </member>
499 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)">
500 <summary>
501 Writes a <see cref="T:System.DateTime"/> value.
502 </summary>
503 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
504 </member>
505 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)">
506 <summary>
507 Writes a <see cref="T:System.DateTimeOffset"/> value.
508 </summary>
509 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
510 </member>
511 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)">
512 <summary>
513 Writes a <see cref="T:System.Guid"/> value.
514 </summary>
515 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
516 </member>
517 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)">
518 <summary>
519 Writes a <see cref="T:System.TimeSpan"/> value.
520 </summary>
521 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
522 </member>
523 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})">
524 <summary>
525 Writes a <see cref="T:System.Nullable`1"/> value.
526 </summary>
527 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
528 </member>
529 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})">
530 <summary>
531 Writes a <see cref="T:System.Nullable`1"/> value.
532 </summary>
533 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
534 </member>
535 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})">
536 <summary>
537 Writes a <see cref="T:System.Nullable`1"/> value.
538 </summary>
539 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
540 </member>
541 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})">
542 <summary>
543 Writes a <see cref="T:System.Nullable`1"/> value.
544 </summary>
545 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
546 </member>
547 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})">
548 <summary>
549 Writes a <see cref="T:System.Nullable`1"/> value.
550 </summary>
551 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
552 </member>
553 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})">
554 <summary>
555 Writes a <see cref="T:System.Nullable`1"/> value.
556 </summary>
557 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
558 </member>
559 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})">
560 <summary>
561 Writes a <see cref="T:System.Nullable`1"/> value.
562 </summary>
563 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
564 </member>
565 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})">
566 <summary>
567 Writes a <see cref="T:System.Nullable`1"/> value.
568 </summary>
569 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
570 </member>
571 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})">
572 <summary>
573 Writes a <see cref="T:System.Nullable`1"/> value.
574 </summary>
575 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
576 </member>
577 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})">
578 <summary>
579 Writes a <see cref="T:System.Nullable`1"/> value.
580 </summary>
581 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
582 </member>
583 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})">
584 <summary>
585 Writes a <see cref="T:System.Nullable`1"/> value.
586 </summary>
587 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
588 </member>
589 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})">
590 <summary>
591 Writes a <see cref="T:System.Nullable`1"/> value.
592 </summary>
593 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
594 </member>
595 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})">
596 <summary>
597 Writes a <see cref="T:System.Nullable`1"/> value.
598 </summary>
599 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
600 </member>
601 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})">
602 <summary>
603 Writes a <see cref="T:System.Nullable`1"/> value.
604 </summary>
605 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
606 </member>
607 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})">
608 <summary>
609 Writes a <see cref="T:System.Nullable`1"/> value.
610 </summary>
611 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
612 </member>
613 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})">
614 <summary>
615 Writes a <see cref="T:System.Nullable`1"/> value.
616 </summary>
617 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
618 </member>
619 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})">
620 <summary>
621 Writes a <see cref="T:System.Nullable`1"/> value.
622 </summary>
623 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param>
624 </member>
625 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])">
626 <summary>
627 Writes a <see cref="T:Byte[]"/> value.
628 </summary>
629 <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
630 </member>
631 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)">
632 <summary>
633 Writes a <see cref="T:System.Uri"/> value.
634 </summary>
635 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
636 </member>
637 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)">
638 <summary>
639 Writes a <see cref="T:System.Object"/> value.
640 An error will raised if the value cannot be written as a single JSON token.
641 </summary>
642 <param name="value">The <see cref="T:System.Object"/> value to write.</param>
643 </member>
644 <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)">
645 <summary>
646 Writes out a comment <code>/*...*/</code> containing the specified text.
647 </summary>
648 <param name="text">Text to place inside the comment.</param>
649 </member>
650 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)">
651 <summary>
652 Writes out the given white space.
653 </summary>
654 <param name="ws">The string of white space characters.</param>
655 </member>
656 <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput">
657 <summary>
658 Gets or sets a value indicating whether the underlying stream or
659 <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed.
660 </summary>
661 <value>
662 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when
663 the writer is closed; otherwise false. The default is true.
664 </value>
665 </member>
666 <member name="P:Newtonsoft.Json.JsonWriter.Top">
667 <summary>
668 Gets the top.
669 </summary>
670 <value>The top.</value>
671 </member>
672 <member name="P:Newtonsoft.Json.JsonWriter.WriteState">
673 <summary>
674 Gets the state of the writer.
675 </summary>
676 </member>
677 <member name="P:Newtonsoft.Json.JsonWriter.Formatting">
678 <summary>
679 Indicates how the output is formatted.
680 </summary>
681 </member>
682 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
683 <summary>
684 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
685 </summary>
686 <param name="stream">The stream.</param>
687 </member>
688 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
689 <summary>
690 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
691 </summary>
692 <param name="writer">The writer.</param>
693 </member>
694 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
695 <summary>
696 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
697 </summary>
698 </member>
699 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
700 <summary>
701 Writes the end.
702 </summary>
703 <param name="token">The token.</param>
704 </member>
705 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
706 <summary>
707 Writes out a comment <code>/*...*/</code> containing the specified text.
708 </summary>
709 <param name="text">Text to place inside the comment.</param>
710 </member>
711 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
712 <summary>
713 Writes the start of a constructor with the given name.
714 </summary>
715 <param name="name">The name of the constructor.</param>
716 </member>
717 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
718 <summary>
719 Writes raw JSON.
720 </summary>
721 <param name="json">The raw JSON to write.</param>
722 </member>
723 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
724 <summary>
725 Writes raw JSON where a value is expected and updates the writer's state.
726 </summary>
727 <param name="json">The raw JSON to write.</param>
728 </member>
729 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
730 <summary>
731 Writes the beginning of a Json array.
732 </summary>
733 </member>
734 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
735 <summary>
736 Writes the beginning of a Json object.
737 </summary>
738 </member>
739 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
740 <summary>
741 Writes the property name of a name/value pair on a Json object.
742 </summary>
743 <param name="name">The name of the property.</param>
744 </member>
745 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
746 <summary>
747 Closes this stream and the underlying stream.
748 </summary>
749 </member>
750 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
751 <summary>
752 Writes a null value.
753 </summary>
754 </member>
755 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
756 <summary>
757 Writes an undefined value.
758 </summary>
759 </member>
760 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
761 <summary>
762 Writes a <see cref="T:System.String"/> value.
763 </summary>
764 <param name="value">The <see cref="T:System.String"/> value to write.</param>
765 </member>
766 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
767 <summary>
768 Writes a <see cref="T:System.Int32"/> value.
769 </summary>
770 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
771 </member>
772 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
773 <summary>
774 Writes a <see cref="T:System.UInt32"/> value.
775 </summary>
776 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
777 </member>
778 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
779 <summary>
780 Writes a <see cref="T:System.Int64"/> value.
781 </summary>
782 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
783 </member>
784 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
785 <summary>
786 Writes a <see cref="T:System.UInt64"/> value.
787 </summary>
788 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
789 </member>
790 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
791 <summary>
792 Writes a <see cref="T:System.Single"/> value.
793 </summary>
794 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
795 </member>
796 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
797 <summary>
798 Writes a <see cref="T:System.Double"/> value.
799 </summary>
800 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
801 </member>
802 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
803 <summary>
804 Writes a <see cref="T:System.Boolean"/> value.
805 </summary>
806 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
807 </member>
808 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
809 <summary>
810 Writes a <see cref="T:System.Int16"/> value.
811 </summary>
812 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
813 </member>
814 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
815 <summary>
816 Writes a <see cref="T:System.UInt16"/> value.
817 </summary>
818 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
819 </member>
820 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
821 <summary>
822 Writes a <see cref="T:System.Char"/> value.
823 </summary>
824 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
825 </member>
826 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
827 <summary>
828 Writes a <see cref="T:System.Byte"/> value.
829 </summary>
830 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
831 </member>
832 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
833 <summary>
834 Writes a <see cref="T:System.SByte"/> value.
835 </summary>
836 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
837 </member>
838 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
839 <summary>
840 Writes a <see cref="T:System.Decimal"/> value.
841 </summary>
842 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
843 </member>
844 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
845 <summary>
846 Writes a <see cref="T:System.DateTime"/> value.
847 </summary>
848 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
849 </member>
850 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
851 <summary>
852 Writes a <see cref="T:System.DateTimeOffset"/> value.
853 </summary>
854 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
855 </member>
856 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
857 <summary>
858 Writes a <see cref="T:Byte[]"/> value.
859 </summary>
860 <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
861 </member>
862 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
863 <summary>
864 Writes a <see cref="T:System.Guid"/> value.
865 </summary>
866 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
867 </member>
868 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
869 <summary>
870 Writes a <see cref="T:System.TimeSpan"/> value.
871 </summary>
872 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
873 </member>
874 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
875 <summary>
876 Writes a <see cref="T:System.Uri"/> value.
877 </summary>
878 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
879 </member>
880 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
881 <summary>
882 Writes a <see cref="T:Byte[]"/> value that represents a BSON object id.
883 </summary>
884 <param name="value"></param>
885 </member>
886 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
887 <summary>
888 Writes a BSON regex.
889 </summary>
890 <param name="pattern">The regex pattern.</param>
891 <param name="options">The regex options.</param>
892 </member>
893 <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
894 <summary>
895 Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.
896 When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur.
897 </summary>
898 <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
899 </member>
900 <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
901 <summary>
902 Represents a BSON Oid (object id).
903 </summary>
904 </member>
905 <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
906 <summary>
907 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
908 </summary>
909 <param name="value">The Oid value.</param>
910 </member>
911 <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
912 <summary>
913 Gets or sets the value of the Oid.
914 </summary>
915 <value>The value of the Oid.</value>
916 </member>
917 <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
918 <summary>
919 Converts a binary value to and from a base 64 string value.
920 </summary>
921 </member>
922 <member name="T:Newtonsoft.Json.JsonConverter">
923 <summary>
924 Converts an object to and from JSON.
925 </summary>
926 </member>
927 <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
928 <summary>
929 Writes the JSON representation of the object.
930 </summary>
931 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
932 <param name="value">The value.</param>
933 <param name="serializer">The calling serializer.</param>
934 </member>
935 <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
936 <summary>
937 Reads the JSON representation of the object.
938 </summary>
939 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
940 <param name="objectType">Type of the object.</param>
941 <param name="existingValue">The existing value of object being read.</param>
942 <param name="serializer">The calling serializer.</param>
943 <returns>The object value.</returns>
944 </member>
945 <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)">
946 <summary>
947 Determines whether this instance can convert the specified object type.
948 </summary>
949 <param name="objectType">Type of the object.</param>
950 <returns>
951 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
952 </returns>
953 </member>
954 <member name="M:Newtonsoft.Json.JsonConverter.GetSchema">
955 <summary>
956 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.
957 </summary>
958 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns>
959 </member>
960 <member name="P:Newtonsoft.Json.JsonConverter.CanRead">
961 <summary>
962 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON.
963 </summary>
964 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value>
965 </member>
966 <member name="P:Newtonsoft.Json.JsonConverter.CanWrite">
967 <summary>
968 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
969 </summary>
970 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value>
971 </member>
972 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
973 <summary>
974 Writes the JSON representation of the object.
975 </summary>
976 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
977 <param name="value">The value.</param>
978 <param name="serializer">The calling serializer.</param>
979 </member>
980 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
981 <summary>
982 Reads the JSON representation of the object.
983 </summary>
984 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
985 <param name="objectType">Type of the object.</param>
986 <param name="existingValue">The existing value of object being read.</param>
987 <param name="serializer">The calling serializer.</param>
988 <returns>The object value.</returns>
989 </member>
990 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
991 <summary>
992 Determines whether this instance can convert the specified object type.
993 </summary>
994 <param name="objectType">Type of the object.</param>
995 <returns>
996 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
997 </returns>
998 </member>
999 <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
1000 <summary>
1001 Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
1002 </summary>
1003 </member>
1004 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1005 <summary>
1006 Writes the JSON representation of the object.
1007 </summary>
1008 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1009 <param name="value">The value.</param>
1010 <param name="serializer">The calling serializer.</param>
1011 </member>
1012 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1013 <summary>
1014 Reads the JSON representation of the object.
1015 </summary>
1016 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1017 <param name="objectType">Type of the object.</param>
1018 <param name="existingValue">The existing value of object being read.</param>
1019 <param name="serializer">The calling serializer.</param>
1020 <returns>The object value.</returns>
1021 </member>
1022 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
1023 <summary>
1024 Determines whether this instance can convert the specified value type.
1025 </summary>
1026 <param name="valueType">Type of the value.</param>
1027 <returns>
1028 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1029 </returns>
1030 </member>
1031 <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
1032 <summary>
1033 Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
1034 </summary>
1035 </member>
1036 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1037 <summary>
1038 Writes the JSON representation of the object.
1039 </summary>
1040 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1041 <param name="value">The value.</param>
1042 <param name="serializer">The calling serializer.</param>
1043 </member>
1044 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1045 <summary>
1046 Reads the JSON representation of the object.
1047 </summary>
1048 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1049 <param name="objectType">Type of the object.</param>
1050 <param name="existingValue">The existing value of object being read.</param>
1051 <param name="serializer">The calling serializer.</param>
1052 <returns>The object value.</returns>
1053 </member>
1054 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
1055 <summary>
1056 Determines whether this instance can convert the specified value type.
1057 </summary>
1058 <param name="valueType">Type of the value.</param>
1059 <returns>
1060 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
1061 </returns>
1062 </member>
1063 <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
1064 <summary>
1065 Create a custom object
1066 </summary>
1067 <typeparam name="T"></typeparam>
1068 </member>
1069 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1070 <summary>
1071 Writes the JSON representation of the object.
1072 </summary>
1073 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1074 <param name="value">The value.</param>
1075 <param name="serializer">The calling serializer.</param>
1076 </member>
1077 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1078 <summary>
1079 Reads the JSON representation of the object.
1080 </summary>
1081 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1082 <param name="objectType">Type of the object.</param>
1083 <param name="existingValue">The existing value of object being read.</param>
1084 <param name="serializer">The calling serializer.</param>
1085 <returns>The object value.</returns>
1086 </member>
1087 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
1088 <summary>
1089 Creates an object which will then be populated by the serializer.
1090 </summary>
1091 <param name="objectType">Type of the object.</param>
1092 <returns></returns>
1093 </member>
1094 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
1095 <summary>
1096 Determines whether this instance can convert the specified object type.
1097 </summary>
1098 <param name="objectType">Type of the object.</param>
1099 <returns>
1100 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1101 </returns>
1102 </member>
1103 <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
1104 <summary>
1105 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
1106 </summary>
1107 <value>
1108 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
1109 </value>
1110 </member>
1111 <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
1112 <summary>
1113 Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
1114 </summary>
1115 </member>
1116 <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
1117 <summary>
1118 Determines whether this instance can convert the specified object type.
1119 </summary>
1120 <param name="objectType">Type of the object.</param>
1121 <returns>
1122 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1123 </returns>
1124 </member>
1125 <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
1126 <summary>
1127 Converts an Entity Framework EntityKey to and from JSON.
1128 </summary>
1129 </member>
1130 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1131 <summary>
1132 Writes the JSON representation of the object.
1133 </summary>
1134 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1135 <param name="value">The value.</param>
1136 <param name="serializer">The calling serializer.</param>
1137 </member>
1138 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1139 <summary>
1140 Reads the JSON representation of the object.
1141 </summary>
1142 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1143 <param name="objectType">Type of the object.</param>
1144 <param name="existingValue">The existing value of object being read.</param>
1145 <param name="serializer">The calling serializer.</param>
1146 <returns>The object value.</returns>
1147 </member>
1148 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
1149 <summary>
1150 Determines whether this instance can convert the specified object type.
1151 </summary>
1152 <param name="objectType">Type of the object.</param>
1153 <returns>
1154 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1155 </returns>
1156 </member>
1157 <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
1158 <summary>
1159 Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
1160 </summary>
1161 </member>
1162 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1163 <summary>
1164 Writes the JSON representation of the object.
1165 </summary>
1166 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1167 <param name="value">The value.</param>
1168 <param name="serializer">The calling serializer.</param>
1169 </member>
1170 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1171 <summary>
1172 Reads the JSON representation of the object.
1173 </summary>
1174 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1175 <param name="objectType">Type of the object.</param>
1176 <param name="existingValue">The existing value of object being read.</param>
1177 <param name="serializer">The calling serializer.</param>
1178 <returns>The object value.</returns>
1179 </member>
1180 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
1181 <summary>
1182 Determines whether this instance can convert the specified object type.
1183 </summary>
1184 <param name="objectType">Type of the object.</param>
1185 <returns>
1186 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1187 </returns>
1188 </member>
1189 <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
1190 <summary>
1191 Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
1192 </summary>
1193 </member>
1194 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1195 <summary>
1196 Writes the JSON representation of the object.
1197 </summary>
1198 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1199 <param name="value">The value.</param>
1200 <param name="serializer">The calling serializer.</param>
1201 </member>
1202 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1203 <summary>
1204 Reads the JSON representation of the object.
1205 </summary>
1206 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1207 <param name="objectType">Type of the object.</param>
1208 <param name="existingValue">The existing value of object being read.</param>
1209 <param name="serializer">The calling serializer.</param>
1210 <returns>The object value.</returns>
1211 </member>
1212 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
1213 <summary>
1214 Determines whether this instance can convert the specified object type.
1215 </summary>
1216 <param name="objectType">Type of the object.</param>
1217 <returns>
1218 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1219 </returns>
1220 </member>
1221 <member name="T:Newtonsoft.Json.Converters.RegexConverter">
1222 <summary>
1223 Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
1224 </summary>
1225 </member>
1226 <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1227 <summary>
1228 Writes the JSON representation of the object.
1229 </summary>
1230 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1231 <param name="value">The value.</param>
1232 <param name="serializer">The calling serializer.</param>
1233 </member>
1234 <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1235 <summary>
1236 Reads the JSON representation of the object.
1237 </summary>
1238 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1239 <param name="objectType">Type of the object.</param>
1240 <param name="existingValue">The existing value of object being read.</param>
1241 <param name="serializer">The calling serializer.</param>
1242 <returns>The object value.</returns>
1243 </member>
1244 <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
1245 <summary>
1246 Determines whether this instance can convert the specified object type.
1247 </summary>
1248 <param name="objectType">Type of the object.</param>
1249 <returns>
1250 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1251 </returns>
1252 </member>
1253 <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
1254 <summary>
1255 Converts an <see cref="T:System.Enum"/> to and from its name string value.
1256 </summary>
1257 <summary>
1258 Converts an <see cref="T:System.Enum"/> to and from its name string value.
1259 </summary>
1260 </member>
1261 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1262 <summary>
1263 Writes the JSON representation of the object.
1264 </summary>
1265 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1266 <param name="value">The value.</param>
1267 <param name="serializer">The calling serializer.</param>
1268 </member>
1269 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1270 <summary>
1271 Reads the JSON representation of the object.
1272 </summary>
1273 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1274 <param name="objectType">Type of the object.</param>
1275 <param name="existingValue">The existing value of object being read.</param>
1276 <param name="serializer">The calling serializer.</param>
1277 <returns>The object value.</returns>
1278 </member>
1279 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)">
1280 <summary>
1281 A cached representation of the Enum string representation to respect per Enum field name.
1282 </summary>
1283 <param name="t">The type of the Enum.</param>
1284 <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref="T:System.Runtime.Serialization.EnumMemberAttribute"/>).</returns>
1285 </member>
1286 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
1287 <summary>
1288 Determines whether this instance can convert the specified object type.
1289 </summary>
1290 <param name="objectType">Type of the object.</param>
1291 <returns>
1292 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1293 </returns>
1294 </member>
1295 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
1296 <summary>
1297 Gets or sets a value indicating whether the written enum text should be camel case.
1298 </summary>
1299 <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
1300 </member>
1301 <member name="T:Newtonsoft.Json.ConstructorHandling">
1302 <summary>
1303 Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1304 </summary>
1305 </member>
1306 <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
1307 <summary>
1308 First attempt to use the public default constructor then fall back to single paramatized constructor.
1309 </summary>
1310 </member>
1311 <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
1312 <summary>
1313 Allow Json.NET to use a non-public default constructor.
1314 </summary>
1315 </member>
1316 <member name="T:Newtonsoft.Json.Converters.VersionConverter">
1317 <summary>
1318 Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4").
1319 </summary>
1320 </member>
1321 <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
1322 <summary>
1323 Writes the JSON representation of the object.
1324 </summary>
1325 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
1326 <param name="value">The value.</param>
1327 <param name="serializer">The calling serializer.</param>
1328 </member>
1329 <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
1330 <summary>
1331 Reads the JSON representation of the object.
1332 </summary>
1333 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
1334 <param name="objectType">Type of the object.</param>
1335 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
1336 <param name="serializer">The calling serializer.</param>
1337 <returns>The object value.</returns>
1338 </member>
1339 <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
1340 <summary>
1341 Determines whether this instance can convert the specified object type.
1342 </summary>
1343 <param name="objectType">Type of the object.</param>
1344 <returns>
1345 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
1346 </returns>
1347 </member>
1348 <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1349 <summary>
1350 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1351 </summary>
1352 </member>
1353 <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor">
1354 <summary>
1355 Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>.
1356 </summary>
1357 </member>
1358 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)">
1359 <summary>
1360 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class.
1361 </summary>
1362 <param name="name">The name.</param>
1363 <param name="propertyType">Type of the property.</param>
1364 </member>
1365 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)">
1366 <summary>
1367 When overridden in a derived class, returns whether resetting an object changes its value.
1368 </summary>
1369 <returns>
1370 true if resetting the component changes its value; otherwise, false.
1371 </returns>
1372 <param name="component">The component to test for reset capability.
1373 </param>
1374 </member>
1375 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)">
1376 <summary>
1377 When overridden in a derived class, gets the current value of the property on a component.
1378 </summary>
1379 <returns>
1380 The value of a property for a given component.
1381 </returns>
1382 <param name="component">The component with the property for which to retrieve the value.
1383 </param>
1384 </member>
1385 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)">
1386 <summary>
1387 When overridden in a derived class, resets the value for this property of the component to the default value.
1388 </summary>
1389 <param name="component">The component with the property value that is to be reset to the default value.
1390 </param>
1391 </member>
1392 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)">
1393 <summary>
1394 When overridden in a derived class, sets the value of the component to a different value.
1395 </summary>
1396 <param name="component">The component with the property value that is to be set.
1397 </param><param name="value">The new value.
1398 </param>
1399 </member>
1400 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)">
1401 <summary>
1402 When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
1403 </summary>
1404 <returns>
1405 true if the property should be persisted; otherwise, false.
1406 </returns>
1407 <param name="component">The component with the property to be examined for persistence.
1408 </param>
1409 </member>
1410 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType">
1411 <summary>
1412 When overridden in a derived class, gets the type of the component this property is bound to.
1413 </summary>
1414 <returns>
1415 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.
1416 </returns>
1417 </member>
1418 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly">
1419 <summary>
1420 When overridden in a derived class, gets a value indicating whether this property is read-only.
1421 </summary>
1422 <returns>
1423 true if the property is read-only; otherwise, false.
1424 </returns>
1425 </member>
1426 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType">
1427 <summary>
1428 When overridden in a derived class, gets the type of the property.
1429 </summary>
1430 <returns>
1431 A <see cref="T:System.Type"/> that represents the type of the property.
1432 </returns>
1433 </member>
1434 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode">
1435 <summary>
1436 Gets the hash code for the name of the member.
1437 </summary>
1438 <value></value>
1439 <returns>
1440 The hash code for the name of the member.
1441 </returns>
1442 </member>
1443 <member name="T:Newtonsoft.Json.Linq.JRaw">
1444 <summary>
1445 Represents a raw JSON string.
1446 </summary>
1447 </member>
1448 <member name="T:Newtonsoft.Json.Linq.JValue">
1449 <summary>
1450 Represents a value in JSON (string, integer, date, etc).
1451 </summary>
1452 </member>
1453 <member name="T:Newtonsoft.Json.Linq.JToken">
1454 <summary>
1455 Represents an abstract JSON token.
1456 </summary>
1457 </member>
1458 <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1">
1459 <summary>
1460 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
1461 </summary>
1462 <typeparam name="T">The type of token</typeparam>
1463 </member>
1464 <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)">
1465 <summary>
1466 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
1467 </summary>
1468 <value></value>
1469 </member>
1470 <member name="T:Newtonsoft.Json.IJsonLineInfo">
1471 <summary>
1472 Provides an interface to enable a class to return line and position information.
1473 </summary>
1474 </member>
1475 <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1476 <summary>
1477 Gets a value indicating whether the class can return line information.
1478 </summary>
1479 <returns>
1480 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
1481 </returns>
1482 </member>
1483 <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1484 <summary>
1485 Gets the current line number.
1486 </summary>
1487 <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1488 </member>
1489 <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1490 <summary>
1491 Gets the current line position.
1492 </summary>
1493 <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>
1494 </member>
1495 <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
1496 <summary>
1497 Compares the values of two tokens, including the values of all descendant tokens.
1498 </summary>
1499 <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1500 <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
1501 <returns>true if the tokens are equal; otherwise false.</returns>
1502 </member>
1503 <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)">
1504 <summary>
1505 Adds the specified content immediately after this token.
1506 </summary>
1507 <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param>
1508 </member>
1509 <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)">
1510 <summary>
1511 Adds the specified content immediately before this token.
1512 </summary>
1513 <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param>
1514 </member>
1515 <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors">
1516 <summary>
1517 Returns a collection of the ancestor tokens of this token.
1518 </summary>
1519 <returns>A collection of the ancestor tokens of this token.</returns>
1520 </member>
1521 <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf">
1522 <summary>
1523 Returns a collection of the sibling tokens after this token, in document order.
1524 </summary>
1525 <returns>A collection of the sibling tokens after this tokens, in document order.</returns>
1526 </member>
1527 <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf">
1528 <summary>
1529 Returns a collection of the sibling tokens before this token, in document order.
1530 </summary>
1531 <returns>A collection of the sibling tokens before this token, in document order.</returns>
1532 </member>
1533 <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)">
1534 <summary>
1535 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type.
1536 </summary>
1537 <typeparam name="T">The type to convert the token to.</typeparam>
1538 <param name="key">The token key.</param>
1539 <returns>The converted token value.</returns>
1540 </member>
1541 <member name="M:Newtonsoft.Json.Linq.JToken.Children">
1542 <summary>
1543 Returns a collection of the child tokens of this token, in document order.
1544 </summary>
1545 <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>
1546 </member>
1547 <member name="M:Newtonsoft.Json.Linq.JToken.Children``1">
1548 <summary>
1549 Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
1550 </summary>
1551 <typeparam name="T">The type to filter the child tokens on.</typeparam>
1552 <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>
1553 </member>
1554 <member name="M:Newtonsoft.Json.Linq.JToken.Values``1">
1555 <summary>
1556 Returns a collection of the child values of this token, in document order.
1557 </summary>
1558 <typeparam name="T">The type to convert the values to.</typeparam>
1559 <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>
1560 </member>
1561 <member name="M:Newtonsoft.Json.Linq.JToken.Remove">
1562 <summary>
1563 Removes this token from its parent.
1564 </summary>
1565 </member>
1566 <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)">
1567 <summary>
1568 Replaces this token with the specified token.
1569 </summary>
1570 <param name="value">The value.</param>
1571 </member>
1572 <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
1573 <summary>
1574 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1575 </summary>
1576 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
1577 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1578 </member>
1579 <member name="M:Newtonsoft.Json.Linq.JToken.ToString">
1580 <summary>
1581 Returns the indented JSON for this token.
1582 </summary>
1583 <returns>
1584 The indented JSON for this token.
1585 </returns>
1586 </member>
1587 <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
1588 <summary>
1589 Returns the JSON for this token using the given formatting and converters.
1590 </summary>
1591 <param name="formatting">Indicates how the output is formatted.</param>
1592 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
1593 <returns>The JSON for this token using the given formatting and converters.</returns>
1594 </member>
1595 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean">
1596 <summary>
1597 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>.
1598 </summary>
1599 <param name="value">The value.</param>
1600 <returns>The result of the conversion.</returns>
1601 </member>
1602 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset">
1603 <summary>
1604 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>.
1605 </summary>
1606 <param name="value">The value.</param>
1607 <returns>The result of the conversion.</returns>
1608 </member>
1609 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}">
1610 <summary>
1611 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1612 </summary>
1613 <param name="value">The value.</param>
1614 <returns>The result of the conversion.</returns>
1615 </member>
1616 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64">
1617 <summary>
1618 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>.
1619 </summary>
1620 <param name="value">The value.</param>
1621 <returns>The result of the conversion.</returns>
1622 </member>
1623 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}">
1624 <summary>
1625 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1626 </summary>
1627 <param name="value">The value.</param>
1628 <returns>The result of the conversion.</returns>
1629 </member>
1630 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}">
1631 <summary>
1632 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1633 </summary>
1634 <param name="value">The value.</param>
1635 <returns>The result of the conversion.</returns>
1636 </member>
1637 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}">
1638 <summary>
1639 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1640 </summary>
1641 <param name="value">The value.</param>
1642 <returns>The result of the conversion.</returns>
1643 </member>
1644 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}">
1645 <summary>
1646 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1647 </summary>
1648 <param name="value">The value.</param>
1649 <returns>The result of the conversion.</returns>
1650 </member>
1651 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32">
1652 <summary>
1653 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>.
1654 </summary>
1655 <param name="value">The value.</param>
1656 <returns>The result of the conversion.</returns>
1657 </member>
1658 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16">
1659 <summary>
1660 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>.
1661 </summary>
1662 <param name="value">The value.</param>
1663 <returns>The result of the conversion.</returns>
1664 </member>
1665 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16">
1666 <summary>
1667 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>.
1668 </summary>
1669 <param name="value">The value.</param>
1670 <returns>The result of the conversion.</returns>
1671 </member>
1672 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}">
1673 <summary>
1674 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1675 </summary>
1676 <param name="value">The value.</param>
1677 <returns>The result of the conversion.</returns>
1678 </member>
1679 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}">
1680 <summary>
1681 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1682 </summary>
1683 <param name="value">The value.</param>
1684 <returns>The result of the conversion.</returns>
1685 </member>
1686 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}">
1687 <summary>
1688 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1689 </summary>
1690 <param name="value">The value.</param>
1691 <returns>The result of the conversion.</returns>
1692 </member>
1693 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime">
1694 <summary>
1695 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>.
1696 </summary>
1697 <param name="value">The value.</param>
1698 <returns>The result of the conversion.</returns>
1699 </member>
1700 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}">
1701 <summary>
1702 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1703 </summary>
1704 <param name="value">The value.</param>
1705 <returns>The result of the conversion.</returns>
1706 </member>
1707 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}">
1708 <summary>
1709 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1710 </summary>
1711 <param name="value">The value.</param>
1712 <returns>The result of the conversion.</returns>
1713 </member>
1714 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal">
1715 <summary>
1716 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>.
1717 </summary>
1718 <param name="value">The value.</param>
1719 <returns>The result of the conversion.</returns>
1720 </member>
1721 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}">
1722 <summary>
1723 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1724 </summary>
1725 <param name="value">The value.</param>
1726 <returns>The result of the conversion.</returns>
1727 </member>
1728 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}">
1729 <summary>
1730 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>.
1731 </summary>
1732 <param name="value">The value.</param>
1733 <returns>The result of the conversion.</returns>
1734 </member>
1735 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double">
1736 <summary>
1737 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>.
1738 </summary>
1739 <param name="value">The value.</param>
1740 <returns>The result of the conversion.</returns>
1741 </member>
1742 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single">
1743 <summary>
1744 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>.
1745 </summary>
1746 <param name="value">The value.</param>
1747 <returns>The result of the conversion.</returns>
1748 </member>
1749 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String">
1750 <summary>
1751 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>.
1752 </summary>
1753 <param name="value">The value.</param>
1754 <returns>The result of the conversion.</returns>
1755 </member>
1756 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32">
1757 <summary>
1758 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>.
1759 </summary>
1760 <param name="value">The value.</param>
1761 <returns>The result of the conversion.</returns>
1762 </member>
1763 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64">
1764 <summary>
1765 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>.
1766 </summary>
1767 <param name="value">The value.</param>
1768 <returns>The result of the conversion.</returns>
1769 </member>
1770 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]">
1771 <summary>
1772 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>.
1773 </summary>
1774 <param name="value">The value.</param>
1775 <returns>The result of the conversion.</returns>
1776 </member>
1777 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken">
1778 <summary>
1779 Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1780 </summary>
1781 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1782 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1783 </member>
1784 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken">
1785 <summary>
1786 Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1787 </summary>
1788 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1789 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1790 </member>
1791 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken">
1792 <summary>
1793 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1794 </summary>
1795 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1796 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1797 </member>
1798 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken">
1799 <summary>
1800 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1801 </summary>
1802 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1803 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1804 </member>
1805 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken">
1806 <summary>
1807 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1808 </summary>
1809 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1810 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1811 </member>
1812 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken">
1813 <summary>
1814 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1815 </summary>
1816 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1817 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1818 </member>
1819 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken">
1820 <summary>
1821 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1822 </summary>
1823 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1824 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1825 </member>
1826 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken">
1827 <summary>
1828 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1829 </summary>
1830 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1831 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1832 </member>
1833 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken">
1834 <summary>
1835 Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1836 </summary>
1837 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1838 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1839 </member>
1840 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken">
1841 <summary>
1842 Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1843 </summary>
1844 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1845 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1846 </member>
1847 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken">
1848 <summary>
1849 Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1850 </summary>
1851 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1852 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1853 </member>
1854 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken">
1855 <summary>
1856 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1857 </summary>
1858 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1859 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1860 </member>
1861 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken">
1862 <summary>
1863 Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1864 </summary>
1865 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1866 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1867 </member>
1868 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken">
1869 <summary>
1870 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1871 </summary>
1872 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1873 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1874 </member>
1875 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken">
1876 <summary>
1877 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1878 </summary>
1879 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1880 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1881 </member>
1882 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken">
1883 <summary>
1884 Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1885 </summary>
1886 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1887 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1888 </member>
1889 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken">
1890 <summary>
1891 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1892 </summary>
1893 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1894 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1895 </member>
1896 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken">
1897 <summary>
1898 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1899 </summary>
1900 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1901 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1902 </member>
1903 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken">
1904 <summary>
1905 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1906 </summary>
1907 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1908 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1909 </member>
1910 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken">
1911 <summary>
1912 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1913 </summary>
1914 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1915 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1916 </member>
1917 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken">
1918 <summary>
1919 Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1920 </summary>
1921 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1922 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1923 </member>
1924 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken">
1925 <summary>
1926 Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1927 </summary>
1928 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1929 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1930 </member>
1931 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken">
1932 <summary>
1933 Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1934 </summary>
1935 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1936 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1937 </member>
1938 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken">
1939 <summary>
1940 Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1941 </summary>
1942 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1943 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1944 </member>
1945 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken">
1946 <summary>
1947 Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1948 </summary>
1949 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1950 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1951 </member>
1952 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken">
1953 <summary>
1954 Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1955 </summary>
1956 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param>
1957 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns>
1958 </member>
1959 <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader">
1960 <summary>
1961 Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token.
1962 </summary>
1963 <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns>
1964 </member>
1965 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)">
1966 <summary>
1967 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object.
1968 </summary>
1969 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
1970 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
1971 </member>
1972 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
1973 <summary>
1974 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1975 </summary>
1976 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
1977 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param>
1978 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns>
1979 </member>
1980 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1">
1981 <summary>
1982 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1983 </summary>
1984 <returns>The new object created from the JSON value.</returns>
1985 </member>
1986 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)">
1987 <summary>
1988 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
1989 </summary>
1990 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param>
1991 <returns>The new object created from the JSON value.</returns>
1992 </member>
1993 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)">
1994 <summary>
1995 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
1996 </summary>
1997 <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>
1998 <returns>
1999 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2000 that were read from the reader. The runtime type of the token is determined
2001 by the token type of the first token encountered in the reader.
2002 </returns>
2003 </member>
2004 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)">
2005 <summary>
2006 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON.
2007 </summary>
2008 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
2009 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns>
2010 </member>
2011 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)">
2012 <summary>
2013 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
2014 </summary>
2015 <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>
2016 <returns>
2017 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens
2018 that were read from the reader. The runtime type of the token is determined
2019 by the token type of the first token encountered in the reader.
2020 </returns>
2021 </member>
2022 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)">
2023 <summary>
2024 Selects the token that matches the object path.
2025 </summary>
2026 <param name="path">
2027 The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2028 to be returned. This must be a string of property names or array indexes separated
2029 by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2030 <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2031 </param>
2032 <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path or a null reference if no matching token is found.</returns>
2033 </member>
2034 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)">
2035 <summary>
2036 Selects the token that matches the object path.
2037 </summary>
2038 <param name="path">
2039 The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>
2040 to be returned. This must be a string of property names or array indexes separated
2041 by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or
2042 <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.
2043 </param>
2044 <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param>
2045 <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns>
2046 </member>
2047 <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone">
2048 <summary>
2049 Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned.
2050 </summary>
2051 <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
2052 </member>
2053 <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer">
2054 <summary>
2055 Gets a comparer that can compare two tokens for value equality.
2056 </summary>
2057 <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value>
2058 </member>
2059 <member name="P:Newtonsoft.Json.Linq.JToken.Parent">
2060 <summary>
2061 Gets or sets the parent.
2062 </summary>
2063 <value>The parent.</value>
2064 </member>
2065 <member name="P:Newtonsoft.Json.Linq.JToken.Root">
2066 <summary>
2067 Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2068 </summary>
2069 <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2070 </member>
2071 <member name="P:Newtonsoft.Json.Linq.JToken.Type">
2072 <summary>
2073 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2074 </summary>
2075 <value>The type.</value>
2076 </member>
2077 <member name="P:Newtonsoft.Json.Linq.JToken.HasValues">
2078 <summary>
2079 Gets a value indicating whether this token has childen tokens.
2080 </summary>
2081 <value>
2082 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2083 </value>
2084 </member>
2085 <member name="P:Newtonsoft.Json.Linq.JToken.Next">
2086 <summary>
2087 Gets the next sibling token of this node.
2088 </summary>
2089 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value>
2090 </member>
2091 <member name="P:Newtonsoft.Json.Linq.JToken.Previous">
2092 <summary>
2093 Gets the previous sibling token of this node.
2094 </summary>
2095 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value>
2096 </member>
2097 <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)">
2098 <summary>
2099 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
2100 </summary>
2101 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
2102 </member>
2103 <member name="P:Newtonsoft.Json.Linq.JToken.First">
2104 <summary>
2105 Get the first child token of this token.
2106 </summary>
2107 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2108 </member>
2109 <member name="P:Newtonsoft.Json.Linq.JToken.Last">
2110 <summary>
2111 Get the last child token of this token.
2112 </summary>
2113 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value>
2114 </member>
2115 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)">
2116 <summary>
2117 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object.
2118 </summary>
2119 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param>
2120 </member>
2121 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)">
2122 <summary>
2123 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2124 </summary>
2125 <param name="value">The value.</param>
2126 </member>
2127 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)">
2128 <summary>
2129 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2130 </summary>
2131 <param name="value">The value.</param>
2132 </member>
2133 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)">
2134 <summary>
2135 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2136 </summary>
2137 <param name="value">The value.</param>
2138 </member>
2139 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)">
2140 <summary>
2141 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2142 </summary>
2143 <param name="value">The value.</param>
2144 </member>
2145 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)">
2146 <summary>
2147 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2148 </summary>
2149 <param name="value">The value.</param>
2150 </member>
2151 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)">
2152 <summary>
2153 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2154 </summary>
2155 <param name="value">The value.</param>
2156 </member>
2157 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)">
2158 <summary>
2159 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2160 </summary>
2161 <param name="value">The value.</param>
2162 </member>
2163 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)">
2164 <summary>
2165 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2166 </summary>
2167 <param name="value">The value.</param>
2168 </member>
2169 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)">
2170 <summary>
2171 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2172 </summary>
2173 <param name="value">The value.</param>
2174 </member>
2175 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)">
2176 <summary>
2177 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value.
2178 </summary>
2179 <param name="value">The value.</param>
2180 </member>
2181 <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)">
2182 <summary>
2183 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.
2184 </summary>
2185 <param name="value">The value.</param>
2186 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns>
2187 </member>
2188 <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)">
2189 <summary>
2190 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.
2191 </summary>
2192 <param name="value">The value.</param>
2193 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns>
2194 </member>
2195 <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
2196 <summary>
2197 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
2198 </summary>
2199 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
2200 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
2201 </member>
2202 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)">
2203 <summary>
2204 Indicates whether the current object is equal to another object of the same type.
2205 </summary>
2206 <returns>
2207 true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false.
2208 </returns>
2209 <param name="other">An object to compare with this object.</param>
2210 </member>
2211 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)">
2212 <summary>
2213 Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>.
2214 </summary>
2215 <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param>
2216 <returns>
2217 true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false.
2218 </returns>
2219 <exception cref="T:System.NullReferenceException">
2220 The <paramref name="obj"/> parameter is null.
2221 </exception>
2222 </member>
2223 <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode">
2224 <summary>
2225 Serves as a hash function for a particular type.
2226 </summary>
2227 <returns>
2228 A hash code for the current <see cref="T:System.Object"/>.
2229 </returns>
2230 </member>
2231 <member name="M:Newtonsoft.Json.Linq.JValue.ToString">
2232 <summary>
2233 Returns a <see cref="T:System.String"/> that represents this instance.
2234 </summary>
2235 <returns>
2236 A <see cref="T:System.String"/> that represents this instance.
2237 </returns>
2238 </member>
2239 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)">
2240 <summary>
2241 Returns a <see cref="T:System.String"/> that represents this instance.
2242 </summary>
2243 <param name="format">The format.</param>
2244 <returns>
2245 A <see cref="T:System.String"/> that represents this instance.
2246 </returns>
2247 </member>
2248 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)">
2249 <summary>
2250 Returns a <see cref="T:System.String"/> that represents this instance.
2251 </summary>
2252 <param name="formatProvider">The format provider.</param>
2253 <returns>
2254 A <see cref="T:System.String"/> that represents this instance.
2255 </returns>
2256 </member>
2257 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)">
2258 <summary>
2259 Returns a <see cref="T:System.String"/> that represents this instance.
2260 </summary>
2261 <param name="format">The format.</param>
2262 <param name="formatProvider">The format provider.</param>
2263 <returns>
2264 A <see cref="T:System.String"/> that represents this instance.
2265 </returns>
2266 </member>
2267 <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)">
2268 <summary>
2269 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.
2270 </summary>
2271 <param name="obj">An object to compare with this instance.</param>
2272 <returns>
2273 A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
2274 Value
2275 Meaning
2276 Less than zero
2277 This instance is less than <paramref name="obj"/>.
2278 Zero
2279 This instance is equal to <paramref name="obj"/>.
2280 Greater than zero
2281 This instance is greater than <paramref name="obj"/>.
2282 </returns>
2283 <exception cref="T:System.ArgumentException">
2284 <paramref name="obj"/> is not the same type as this instance.
2285 </exception>
2286 </member>
2287 <member name="P:Newtonsoft.Json.Linq.JValue.HasValues">
2288 <summary>
2289 Gets a value indicating whether this token has childen tokens.
2290 </summary>
2291 <value>
2292 <c>true</c> if this token has child values; otherwise, <c>false</c>.
2293 </value>
2294 </member>
2295 <member name="P:Newtonsoft.Json.Linq.JValue.Type">
2296 <summary>
2297 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
2298 </summary>
2299 <value>The type.</value>
2300 </member>
2301 <member name="P:Newtonsoft.Json.Linq.JValue.Value">
2302 <summary>
2303 Gets or sets the underlying token value.
2304 </summary>
2305 <value>The underlying token value.</value>
2306 </member>
2307 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)">
2308 <summary>
2309 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object.
2310 </summary>
2311 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param>
2312 </member>
2313 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)">
2314 <summary>
2315 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class.
2316 </summary>
2317 <param name="rawJson">The raw json.</param>
2318 </member>
2319 <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)">
2320 <summary>
2321 Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.
2322 </summary>
2323 <param name="reader">The reader.</param>
2324 <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns>
2325 </member>
2326 <member name="T:Newtonsoft.Json.Required">
2327 <summary>
2328 Indicating whether a property is required.
2329 </summary>
2330 </member>
2331 <member name="F:Newtonsoft.Json.Required.Default">
2332 <summary>
2333 The property is not required. The default state.
2334 </summary>
2335 </member>
2336 <member name="F:Newtonsoft.Json.Required.AllowNull">
2337 <summary>
2338 The property must be defined in JSON but can be a null value.
2339 </summary>
2340 </member>
2341 <member name="F:Newtonsoft.Json.Required.Always">
2342 <summary>
2343 The property must be defined in JSON and cannot be a null value.
2344 </summary>
2345 </member>
2346 <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract">
2347 <summary>
2348 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2349 </summary>
2350 </member>
2351 <member name="T:Newtonsoft.Json.Serialization.JsonContract">
2352 <summary>
2353 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2354 </summary>
2355 </member>
2356 <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType">
2357 <summary>
2358 Gets the underlying type for the contract.
2359 </summary>
2360 <value>The underlying type for the contract.</value>
2361 </member>
2362 <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType">
2363 <summary>
2364 Gets or sets the type created during deserialization.
2365 </summary>
2366 <value>The type created during deserialization.</value>
2367 </member>
2368 <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference">
2369 <summary>
2370 Gets or sets whether this type contract is serialized as a reference.
2371 </summary>
2372 <value>Whether this type contract is serialized as a reference.</value>
2373 </member>
2374 <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter">
2375 <summary>
2376 Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract.
2377 </summary>
2378 <value>The converter.</value>
2379 </member>
2380 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized">
2381 <summary>
2382 Gets or sets the method called immediately after deserialization of the object.
2383 </summary>
2384 <value>The method called immediately after deserialization of the object.</value>
2385 </member>
2386 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing">
2387 <summary>
2388 Gets or sets the method called during deserialization of the object.
2389 </summary>
2390 <value>The method called during deserialization of the object.</value>
2391 </member>
2392 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized">
2393 <summary>
2394 Gets or sets the method called after serialization of the object graph.
2395 </summary>
2396 <value>The method called after serialization of the object graph.</value>
2397 </member>
2398 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing">
2399 <summary>
2400 Gets or sets the method called before serialization of the object.
2401 </summary>
2402 <value>The method called before serialization of the object.</value>
2403 </member>
2404 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator">
2405 <summary>
2406 Gets or sets the default creator method used to create the object.
2407 </summary>
2408 <value>The default creator method used to create the object.</value>
2409 </member>
2410 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic">
2411 <summary>
2412 Gets or sets a value indicating whether [default creator non public].
2413 </summary>
2414 <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>
2415 </member>
2416 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError">
2417 <summary>
2418 Gets or sets the method called when an error is thrown during the serialization of the object.
2419 </summary>
2420 <value>The method called when an error is thrown during the serialization of the object.</value>
2421 </member>
2422 <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)">
2423 <summary>
2424 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class.
2425 </summary>
2426 <param name="underlyingType">The underlying type for the contract.</param>
2427 </member>
2428 <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator">
2429 <summary>
2430 Gets or sets the ISerializable object constructor.
2431 </summary>
2432 <value>The ISerializable object constructor.</value>
2433 </member>
2434 <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract">
2435 <summary>
2436 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2437 </summary>
2438 </member>
2439 <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)">
2440 <summary>
2441 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class.
2442 </summary>
2443 <param name="underlyingType">The underlying type for the contract.</param>
2444 </member>
2445 <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract">
2446 <summary>
2447 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2448 </summary>
2449 </member>
2450 <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)">
2451 <summary>
2452 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class.
2453 </summary>
2454 <param name="underlyingType">The underlying type for the contract.</param>
2455 </member>
2456 <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider">
2457 <summary>
2458 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods.
2459 </summary>
2460 </member>
2461 <member name="T:Newtonsoft.Json.Serialization.IValueProvider">
2462 <summary>
2463 Provides methods to get and set values.
2464 </summary>
2465 </member>
2466 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)">
2467 <summary>
2468 Sets the value.
2469 </summary>
2470 <param name="target">The target to set the value on.</param>
2471 <param name="value">The value to set on the target.</param>
2472 </member>
2473 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)">
2474 <summary>
2475 Gets the value.
2476 </summary>
2477 <param name="target">The target to get the value from.</param>
2478 <returns>The value.</returns>
2479 </member>
2480 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)">
2481 <summary>
2482 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class.
2483 </summary>
2484 <param name="memberInfo">The member info.</param>
2485 </member>
2486 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)">
2487 <summary>
2488 Sets the value.
2489 </summary>
2490 <param name="target">The target to set the value on.</param>
2491 <param name="value">The value to set on the target.</param>
2492 </member>
2493 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)">
2494 <summary>
2495 Gets the value.
2496 </summary>
2497 <param name="target">The target to get the value from.</param>
2498 <returns>The value.</returns>
2499 </member>
2500 <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs">
2501 <summary>
2502 Provides data for the Error event.
2503 </summary>
2504 </member>
2505 <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)">
2506 <summary>
2507 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class.
2508 </summary>
2509 <param name="currentObject">The current object.</param>
2510 <param name="errorContext">The error context.</param>
2511 </member>
2512 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject">
2513 <summary>
2514 Gets the current object the error event is being raised against.
2515 </summary>
2516 <value>The current object the error event is being raised against.</value>
2517 </member>
2518 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext">
2519 <summary>
2520 Gets the error context.
2521 </summary>
2522 <value>The error context.</value>
2523 </member>
2524 <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver">
2525 <summary>
2526 Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2527 </summary>
2528 </member>
2529 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)">
2530 <summary>
2531 Resolves a reference to its object.
2532 </summary>
2533 <param name="context">The serialization context.</param>
2534 <param name="reference">The reference to resolve.</param>
2535 <returns>The object that</returns>
2536 </member>
2537 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)">
2538 <summary>
2539 Gets the reference for the sepecified object.
2540 </summary>
2541 <param name="context">The serialization context.</param>
2542 <param name="value">The object to get a reference for.</param>
2543 <returns>The reference to the object.</returns>
2544 </member>
2545 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)">
2546 <summary>
2547 Determines whether the specified object is referenced.
2548 </summary>
2549 <param name="context">The serialization context.</param>
2550 <param name="value">The object to test for a reference.</param>
2551 <returns>
2552 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>.
2553 </returns>
2554 </member>
2555 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)">
2556 <summary>
2557 Adds a reference to the specified object.
2558 </summary>
2559 <param name="context">The serialization context.</param>
2560 <param name="reference">The reference.</param>
2561 <param name="value">The object to reference.</param>
2562 </member>
2563 <member name="T:Newtonsoft.Json.PreserveReferencesHandling">
2564 <summary>
2565 Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2566 </summary>
2567 </member>
2568 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None">
2569 <summary>
2570 Do not preserve references when serializing types.
2571 </summary>
2572 </member>
2573 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects">
2574 <summary>
2575 Preserve references when serializing into a JSON object structure.
2576 </summary>
2577 </member>
2578 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays">
2579 <summary>
2580 Preserve references when serializing into a JSON array structure.
2581 </summary>
2582 </member>
2583 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All">
2584 <summary>
2585 Preserve references when serializing.
2586 </summary>
2587 </member>
2588 <member name="T:Newtonsoft.Json.JsonArrayAttribute">
2589 <summary>
2590 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
2591 </summary>
2592 </member>
2593 <member name="T:Newtonsoft.Json.JsonContainerAttribute">
2594 <summary>
2595 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2596 </summary>
2597 </member>
2598 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
2599 <summary>
2600 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
2601 </summary>
2602 </member>
2603 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
2604 <summary>
2605 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
2606 </summary>
2607 <param name="id">The container Id.</param>
2608 </member>
2609 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
2610 <summary>
2611 Gets or sets the id.
2612 </summary>
2613 <value>The id.</value>
2614 </member>
2615 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
2616 <summary>
2617 Gets or sets the title.
2618 </summary>
2619 <value>The title.</value>
2620 </member>
2621 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
2622 <summary>
2623 Gets or sets the description.
2624 </summary>
2625 <value>The description.</value>
2626 </member>
2627 <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
2628 <summary>
2629 Gets or sets a value that indicates whether to preserve object reference data.
2630 </summary>
2631 <value>
2632 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
2633 </value>
2634 </member>
2635 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
2636 <summary>
2637 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
2638 </summary>
2639 </member>
2640 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
2641 <summary>
2642 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items
2643 </summary>
2644 <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
2645 </member>
2646 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
2647 <summary>
2648 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
2649 </summary>
2650 <param name="id">The container Id.</param>
2651 </member>
2652 <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
2653 <summary>
2654 Gets or sets a value indicating whether null items are allowed in the collection.
2655 </summary>
2656 <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
2657 </member>
2658 <member name="T:Newtonsoft.Json.DefaultValueHandling">
2659 <summary>
2660 Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2661 </summary>
2662 </member>
2663 <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
2664 <summary>
2665 Include members where the member value is the same as the member's default value when serializing objects.
2666 Included members are written to JSON. Has no effect when deserializing.
2667 </summary>
2668 </member>
2669 <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
2670 <summary>
2671 Ignore members where the member value is the same as the member's default value when serializing objects
2672 so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value.
2673 </summary>
2674 </member>
2675 <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
2676 <summary>
2677 Members with a default value but no JSON will be set to their default value when deserializing.
2678 </summary>
2679 </member>
2680 <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
2681 <summary>
2682 Ignore members where the member value is the same as the member's default value when serializing objects
2683 and sets members to their default value when deserializing.
2684 </summary>
2685 </member>
2686 <member name="T:Newtonsoft.Json.JsonConverterAttribute">
2687 <summary>
2688 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class.
2689 </summary>
2690 </member>
2691 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)">
2692 <summary>
2693 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class.
2694 </summary>
2695 <param name="converterType">Type of the converter.</param>
2696 </member>
2697 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType">
2698 <summary>
2699 Gets the type of the converter.
2700 </summary>
2701 <value>The type of the converter.</value>
2702 </member>
2703 <member name="T:Newtonsoft.Json.JsonObjectAttribute">
2704 <summary>
2705 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
2706 </summary>
2707 </member>
2708 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor">
2709 <summary>
2710 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class.
2711 </summary>
2712 </member>
2713 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)">
2714 <summary>
2715 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization.
2716 </summary>
2717 <param name="memberSerialization">The member serialization.</param>
2718 </member>
2719 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)">
2720 <summary>
2721 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id.
2722 </summary>
2723 <param name="id">The container Id.</param>
2724 </member>
2725 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization">
2726 <summary>
2727 Gets or sets the member serialization.
2728 </summary>
2729 <value>The member serialization.</value>
2730 </member>
2731 <member name="T:Newtonsoft.Json.JsonSerializerSettings">
2732 <summary>
2733 Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object.
2734 </summary>
2735 </member>
2736 <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor">
2737 <summary>
2738 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class.
2739 </summary>
2740 </member>
2741 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling">
2742 <summary>
2743 Gets or sets how reference loops (e.g. a class referencing itself) is handled.
2744 </summary>
2745 <value>Reference loop handling.</value>
2746 </member>
2747 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling">
2748 <summary>
2749 Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
2750 </summary>
2751 <value>Missing member handling.</value>
2752 </member>
2753 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling">
2754 <summary>
2755 Gets or sets how objects are created during deserialization.
2756 </summary>
2757 <value>The object creation handling.</value>
2758 </member>
2759 <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling">
2760 <summary>
2761 Gets or sets how null values are handled during serialization and deserialization.
2762 </summary>
2763 <value>Null value handling.</value>
2764 </member>
2765 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling">
2766 <summary>
2767 Gets or sets how null default are handled during serialization and deserialization.
2768 </summary>
2769 <value>The default value handling.</value>
2770 </member>
2771 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters">
2772 <summary>
2773 Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
2774 </summary>
2775 <value>The converters.</value>
2776 </member>
2777 <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling">
2778 <summary>
2779 Gets or sets how object references are preserved by the serializer.
2780 </summary>
2781 <value>The preserve references handling.</value>
2782 </member>
2783 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling">
2784 <summary>
2785 Gets or sets how type name writing and reading is handled by the serializer.
2786 </summary>
2787 <value>The type name handling.</value>
2788 </member>
2789 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat">
2790 <summary>
2791 Gets or sets how a type name assembly is written and resolved by the serializer.
2792 </summary>
2793 <value>The type name assembly format.</value>
2794 </member>
2795 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling">
2796 <summary>
2797 Gets or sets how constructors are used during deserialization.
2798 </summary>
2799 <value>The constructor handling.</value>
2800 </member>
2801 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver">
2802 <summary>
2803 Gets or sets the contract resolver used by the serializer when
2804 serializing .NET objects to JSON and vice versa.
2805 </summary>
2806 <value>The contract resolver.</value>
2807 </member>
2808 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver">
2809 <summary>
2810 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
2811 </summary>
2812 <value>The reference resolver.</value>
2813 </member>
2814 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder">
2815 <summary>
2816 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
2817 </summary>
2818 <value>The binder.</value>
2819 </member>
2820 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error">
2821 <summary>
2822 Gets or sets the error handler called during serialization and deserialization.
2823 </summary>
2824 <value>The error handler called during serialization and deserialization.</value>
2825 </member>
2826 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context">
2827 <summary>
2828 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
2829 </summary>
2830 <value>The context.</value>
2831 </member>
2832 <member name="T:Newtonsoft.Json.JsonValidatingReader">
2833 <summary>
2834 Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation.
2835 </summary>
2836 </member>
2837 <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)">
2838 <summary>
2839 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that
2840 validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>.
2841 </summary>
2842 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param>
2843 </member>
2844 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32">
2845 <summary>
2846 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2847 </summary>
2848 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
2849 </member>
2850 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes">
2851 <summary>
2852 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
2853 </summary>
2854 <returns>
2855 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
2856 </returns>
2857 </member>
2858 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal">
2859 <summary>
2860 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2861 </summary>
2862 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
2863 </member>
2864 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset">
2865 <summary>
2866 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
2867 </summary>
2868 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
2869 </member>
2870 <member name="M:Newtonsoft.Json.JsonValidatingReader.Read">
2871 <summary>
2872 Reads the next JSON token from the stream.
2873 </summary>
2874 <returns>
2875 true if the next token was read successfully; false if there are no more tokens to read.
2876 </returns>
2877 </member>
2878 <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler">
2879 <summary>
2880 Sets an event handler for receiving schema validation errors.
2881 </summary>
2882 </member>
2883 <member name="P:Newtonsoft.Json.JsonValidatingReader.Value">
2884 <summary>
2885 Gets the text value of the current Json token.
2886 </summary>
2887 <value></value>
2888 </member>
2889 <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth">
2890 <summary>
2891 Gets the depth of the current token in the JSON document.
2892 </summary>
2893 <value>The depth of the current token in the JSON document.</value>
2894 </member>
2895 <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar">
2896 <summary>
2897 Gets the quotation mark character used to enclose the value of a string.
2898 </summary>
2899 <value></value>
2900 </member>
2901 <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType">
2902 <summary>
2903 Gets the type of the current Json token.
2904 </summary>
2905 <value></value>
2906 </member>
2907 <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType">
2908 <summary>
2909 Gets the Common Language Runtime (CLR) type for the current Json token.
2910 </summary>
2911 <value></value>
2912 </member>
2913 <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema">
2914 <summary>
2915 Gets or sets the schema.
2916 </summary>
2917 <value>The schema.</value>
2918 </member>
2919 <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader">
2920 <summary>
2921 Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>.
2922 </summary>
2923 <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value>
2924 </member>
2925 <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer">
2926 <summary>
2927 Compares tokens to determine whether they are equal.
2928 </summary>
2929 </member>
2930 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)">
2931 <summary>
2932 Determines whether the specified objects are equal.
2933 </summary>
2934 <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2935 <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param>
2936 <returns>
2937 true if the specified objects are equal; otherwise, false.
2938 </returns>
2939 </member>
2940 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)">
2941 <summary>
2942 Returns a hash code for the specified object.
2943 </summary>
2944 <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param>
2945 <returns>A hash code for the specified object.</returns>
2946 <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception>
2947 </member>
2948 <member name="T:Newtonsoft.Json.MemberSerialization">
2949 <summary>
2950 Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2951 </summary>
2952 </member>
2953 <member name="F:Newtonsoft.Json.MemberSerialization.OptOut">
2954 <summary>
2955 All members are serialized by default. Members can be excluded using the <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/>.
2956 </summary>
2957 </member>
2958 <member name="F:Newtonsoft.Json.MemberSerialization.OptIn">
2959 <summary>
2960 Only members must be marked with the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> are serialized.
2961 </summary>
2962 </member>
2963 <member name="T:Newtonsoft.Json.ObjectCreationHandling">
2964 <summary>
2965 Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
2966 </summary>
2967 </member>
2968 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto">
2969 <summary>
2970 Reuse existing objects, create new objects when needed.
2971 </summary>
2972 </member>
2973 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse">
2974 <summary>
2975 Only reuse existing objects.
2976 </summary>
2977 </member>
2978 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace">
2979 <summary>
2980 Always create new objects.
2981 </summary>
2982 </member>
2983 <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
2984 <summary>
2985 Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
2986 </summary>
2987 </member>
2988 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
2989 <summary>
2990 Writes the JSON representation of the object.
2991 </summary>
2992 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
2993 <param name="value">The value.</param>
2994 <param name="serializer">The calling serializer.</param>
2995 </member>
2996 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
2997 <summary>
2998 Reads the JSON representation of the object.
2999 </summary>
3000 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3001 <param name="objectType">Type of the object.</param>
3002 <param name="existingValue">The existing value of object being read.</param>
3003 <param name="serializer">The calling serializer.</param>
3004 <returns>The object value.</returns>
3005 </member>
3006 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
3007 <summary>
3008 Gets or sets the date time styles used when converting a date to and from JSON.
3009 </summary>
3010 <value>The date time styles used when converting a date to and from JSON.</value>
3011 </member>
3012 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
3013 <summary>
3014 Gets or sets the date time format used when converting a date to and from JSON.
3015 </summary>
3016 <value>The date time format used when converting a date to and from JSON.</value>
3017 </member>
3018 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
3019 <summary>
3020 Gets or sets the culture used when converting a date to and from JSON.
3021 </summary>
3022 <value>The culture used when converting a date to and from JSON.</value>
3023 </member>
3024 <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
3025 <summary>
3026 Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).
3027 </summary>
3028 </member>
3029 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3030 <summary>
3031 Writes the JSON representation of the object.
3032 </summary>
3033 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3034 <param name="value">The value.</param>
3035 <param name="serializer">The calling serializer.</param>
3036 </member>
3037 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3038 <summary>
3039 Reads the JSON representation of the object.
3040 </summary>
3041 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3042 <param name="objectType">Type of the object.</param>
3043 <param name="existingValue">The existing property value of the JSON that is being converted.</param>
3044 <param name="serializer">The calling serializer.</param>
3045 <returns>The object value.</returns>
3046 </member>
3047 <member name="T:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode">
3048 <summary>
3049 Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC.
3050 </summary>
3051 </member>
3052 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Local">
3053 <summary>
3054 The time represented is local time.
3055 </summary>
3056 </member>
3057 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Utc">
3058 <summary>
3059 The time represented is UTC.
3060 </summary>
3061 </member>
3062 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Unspecified">
3063 <summary>
3064 The time represented is not specified as either local time or Coordinated Universal Time (UTC).
3065 </summary>
3066 </member>
3067 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.RoundtripKind">
3068 <summary>
3069 Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object.
3070 </summary>
3071 </member>
3072 <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
3073 <summary>
3074 Converts XML to and from JSON.
3075 </summary>
3076 </member>
3077 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
3078 <summary>
3079 Writes the JSON representation of the object.
3080 </summary>
3081 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
3082 <param name="serializer">The calling serializer.</param>
3083 <param name="value">The value.</param>
3084 </member>
3085 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
3086 <summary>
3087 Reads the JSON representation of the object.
3088 </summary>
3089 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
3090 <param name="objectType">Type of the object.</param>
3091 <param name="existingValue">The existing value of object being read.</param>
3092 <param name="serializer">The calling serializer.</param>
3093 <returns>The object value.</returns>
3094 </member>
3095 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
3096 <summary>
3097 Checks if the attributeName is a namespace attribute.
3098 </summary>
3099 <param name="attributeName">Attribute name to test.</param>
3100 <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
3101 <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>
3102 </member>
3103 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
3104 <summary>
3105 Determines whether this instance can convert the specified value type.
3106 </summary>
3107 <param name="valueType">Type of the value.</param>
3108 <returns>
3109 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
3110 </returns>
3111 </member>
3112 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
3113 <summary>
3114 Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
3115 </summary>
3116 <value>The name of the deserialize root element.</value>
3117 </member>
3118 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
3119 <summary>
3120 Gets or sets a flag to indicate whether to write the Json.NET array attribute.
3121 This attribute helps preserve arrays when converting the written XML back to JSON.
3122 </summary>
3123 <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>
3124 </member>
3125 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
3126 <summary>
3127 Gets or sets a value indicating whether to write the root JSON object.
3128 </summary>
3129 <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
3130 </member>
3131 <member name="T:Newtonsoft.Json.JsonTextReader">
3132 <summary>
3133 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
3134 </summary>
3135 </member>
3136 <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)">
3137 <summary>
3138 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>.
3139 </summary>
3140 <param name="reader">The <c>TextReader</c> containing the XML data to read.</param>
3141 </member>
3142 <member name="M:Newtonsoft.Json.JsonTextReader.Read">
3143 <summary>
3144 Reads the next JSON token from the stream.
3145 </summary>
3146 <returns>
3147 true if the next token was read successfully; false if there are no more tokens to read.
3148 </returns>
3149 </member>
3150 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes">
3151 <summary>
3152 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
3153 </summary>
3154 <returns>
3155 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
3156 </returns>
3157 </member>
3158 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal">
3159 <summary>
3160 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3161 </summary>
3162 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3163 </member>
3164 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32">
3165 <summary>
3166 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3167 </summary>
3168 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
3169 </member>
3170 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset">
3171 <summary>
3172 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
3173 </summary>
3174 <returns>A <see cref="T:System.DateTimeOffset"/>.</returns>
3175 </member>
3176 <member name="M:Newtonsoft.Json.JsonTextReader.Close">
3177 <summary>
3178 Changes the state to closed.
3179 </summary>
3180 </member>
3181 <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo">
3182 <summary>
3183 Gets a value indicating whether the class can return line information.
3184 </summary>
3185 <returns>
3186 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.
3187 </returns>
3188 </member>
3189 <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber">
3190 <summary>
3191 Gets the current line number.
3192 </summary>
3193 <value>
3194 The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
3195 </value>
3196 </member>
3197 <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition">
3198 <summary>
3199 Gets the current line position.
3200 </summary>
3201 <value>
3202 The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
3203 </value>
3204 </member>
3205 <member name="T:Newtonsoft.Json.JsonPropertyAttribute">
3206 <summary>
3207 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name.
3208 </summary>
3209 </member>
3210 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor">
3211 <summary>
3212 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class.
3213 </summary>
3214 </member>
3215 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)">
3216 <summary>
3217 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name.
3218 </summary>
3219 <param name="propertyName">Name of the property.</param>
3220 </member>
3221 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling">
3222 <summary>
3223 Gets or sets the null value handling used when serializing this property.
3224 </summary>
3225 <value>The null value handling.</value>
3226 </member>
3227 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling">
3228 <summary>
3229 Gets or sets the default value handling used when serializing this property.
3230 </summary>
3231 <value>The default value handling.</value>
3232 </member>
3233 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling">
3234 <summary>
3235 Gets or sets the reference loop handling used when serializing this property.
3236 </summary>
3237 <value>The reference loop handling.</value>
3238 </member>
3239 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling">
3240 <summary>
3241 Gets or sets the object creation handling used when deserializing this property.
3242 </summary>
3243 <value>The object creation handling.</value>
3244 </member>
3245 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling">
3246 <summary>
3247 Gets or sets the type name handling used when serializing this property.
3248 </summary>
3249 <value>The type name handling.</value>
3250 </member>
3251 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference">
3252 <summary>
3253 Gets or sets whether this property's value is serialized as a reference.
3254 </summary>
3255 <value>Whether this property's value is serialized as a reference.</value>
3256 </member>
3257 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order">
3258 <summary>
3259 Gets or sets the order of serialization and deserialization of a member.
3260 </summary>
3261 <value>The numeric order of serialization or deserialization.</value>
3262 </member>
3263 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName">
3264 <summary>
3265 Gets or sets the name of the property.
3266 </summary>
3267 <value>The name of the property.</value>
3268 </member>
3269 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required">
3270 <summary>
3271 Gets or sets a value indicating whether this property is required.
3272 </summary>
3273 <value>
3274 A value indicating whether this property is required.
3275 </value>
3276 </member>
3277 <member name="T:Newtonsoft.Json.JsonIgnoreAttribute">
3278 <summary>
3279 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value.
3280 </summary>
3281 </member>
3282 <member name="T:Newtonsoft.Json.JsonTextWriter">
3283 <summary>
3284 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
3285 </summary>
3286 </member>
3287 <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)">
3288 <summary>
3289 Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>.
3290 </summary>
3291 <param name="textWriter">The <c>TextWriter</c> to write to.</param>
3292 </member>
3293 <member name="M:Newtonsoft.Json.JsonTextWriter.Flush">
3294 <summary>
3295 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
3296 </summary>
3297 </member>
3298 <member name="M:Newtonsoft.Json.JsonTextWriter.Close">
3299 <summary>
3300 Closes this stream and the underlying stream.
3301 </summary>
3302 </member>
3303 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject">
3304 <summary>
3305 Writes the beginning of a Json object.
3306 </summary>
3307 </member>
3308 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray">
3309 <summary>
3310 Writes the beginning of a Json array.
3311 </summary>
3312 </member>
3313 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)">
3314 <summary>
3315 Writes the start of a constructor with the given name.
3316 </summary>
3317 <param name="name">The name of the constructor.</param>
3318 </member>
3319 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
3320 <summary>
3321 Writes the specified end token.
3322 </summary>
3323 <param name="token">The end token to write.</param>
3324 </member>
3325 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)">
3326 <summary>
3327 Writes the property name of a name/value pair on a Json object.
3328 </summary>
3329 <param name="name">The name of the property.</param>
3330 </member>
3331 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent">
3332 <summary>
3333 Writes indent characters.
3334 </summary>
3335 </member>
3336 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter">
3337 <summary>
3338 Writes the JSON value delimiter.
3339 </summary>
3340 </member>
3341 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace">
3342 <summary>
3343 Writes an indent space.
3344 </summary>
3345 </member>
3346 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull">
3347 <summary>
3348 Writes a null value.
3349 </summary>
3350 </member>
3351 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined">
3352 <summary>
3353 Writes an undefined value.
3354 </summary>
3355 </member>
3356 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)">
3357 <summary>
3358 Writes raw JSON.
3359 </summary>
3360 <param name="json">The raw JSON to write.</param>
3361 </member>
3362 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)">
3363 <summary>
3364 Writes a <see cref="T:System.String"/> value.
3365 </summary>
3366 <param name="value">The <see cref="T:System.String"/> value to write.</param>
3367 </member>
3368 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)">
3369 <summary>
3370 Writes a <see cref="T:System.Int32"/> value.
3371 </summary>
3372 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
3373 </member>
3374 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)">
3375 <summary>
3376 Writes a <see cref="T:System.UInt32"/> value.
3377 </summary>
3378 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
3379 </member>
3380 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)">
3381 <summary>
3382 Writes a <see cref="T:System.Int64"/> value.
3383 </summary>
3384 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
3385 </member>
3386 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)">
3387 <summary>
3388 Writes a <see cref="T:System.UInt64"/> value.
3389 </summary>
3390 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
3391 </member>
3392 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)">
3393 <summary>
3394 Writes a <see cref="T:System.Single"/> value.
3395 </summary>
3396 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
3397 </member>
3398 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)">
3399 <summary>
3400 Writes a <see cref="T:System.Double"/> value.
3401 </summary>
3402 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
3403 </member>
3404 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)">
3405 <summary>
3406 Writes a <see cref="T:System.Boolean"/> value.
3407 </summary>
3408 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
3409 </member>
3410 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)">
3411 <summary>
3412 Writes a <see cref="T:System.Int16"/> value.
3413 </summary>
3414 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
3415 </member>
3416 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)">
3417 <summary>
3418 Writes a <see cref="T:System.UInt16"/> value.
3419 </summary>
3420 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
3421 </member>
3422 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)">
3423 <summary>
3424 Writes a <see cref="T:System.Char"/> value.
3425 </summary>
3426 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
3427 </member>
3428 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)">
3429 <summary>
3430 Writes a <see cref="T:System.Byte"/> value.
3431 </summary>
3432 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
3433 </member>
3434 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)">
3435 <summary>
3436 Writes a <see cref="T:System.SByte"/> value.
3437 </summary>
3438 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
3439 </member>
3440 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)">
3441 <summary>
3442 Writes a <see cref="T:System.Decimal"/> value.
3443 </summary>
3444 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
3445 </member>
3446 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)">
3447 <summary>
3448 Writes a <see cref="T:System.DateTime"/> value.
3449 </summary>
3450 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
3451 </member>
3452 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])">
3453 <summary>
3454 Writes a <see cref="T:Byte[]"/> value.
3455 </summary>
3456 <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
3457 </member>
3458 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)">
3459 <summary>
3460 Writes a <see cref="T:System.DateTimeOffset"/> value.
3461 </summary>
3462 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
3463 </member>
3464 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)">
3465 <summary>
3466 Writes a <see cref="T:System.Guid"/> value.
3467 </summary>
3468 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
3469 </member>
3470 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)">
3471 <summary>
3472 Writes a <see cref="T:System.TimeSpan"/> value.
3473 </summary>
3474 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
3475 </member>
3476 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)">
3477 <summary>
3478 Writes a <see cref="T:System.Uri"/> value.
3479 </summary>
3480 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
3481 </member>
3482 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)">
3483 <summary>
3484 Writes out a comment <code>/*...*/</code> containing the specified text.
3485 </summary>
3486 <param name="text">Text to place inside the comment.</param>
3487 </member>
3488 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)">
3489 <summary>
3490 Writes out the given white space.
3491 </summary>
3492 <param name="ws">The string of white space characters.</param>
3493 </member>
3494 <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation">
3495 <summary>
3496 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>.
3497 </summary>
3498 </member>
3499 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar">
3500 <summary>
3501 Gets or sets which character to use to quote attribute values.
3502 </summary>
3503 </member>
3504 <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar">
3505 <summary>
3506 Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>.
3507 </summary>
3508 </member>
3509 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName">
3510 <summary>
3511 Gets or sets a value indicating whether object names will be surrounded with quotes.
3512 </summary>
3513 </member>
3514 <member name="T:Newtonsoft.Json.JsonWriterException">
3515 <summary>
3516 The exception thrown when an error occurs while reading Json text.
3517 </summary>
3518 </member>
3519 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor">
3520 <summary>
3521 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
3522 </summary>
3523 </member>
3524 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)">
3525 <summary>
3526 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
3527 with a specified error message.
3528 </summary>
3529 <param name="message">The error message that explains the reason for the exception.</param>
3530 </member>
3531 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)">
3532 <summary>
3533 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class
3534 with a specified error message and a reference to the inner exception that is the cause of this exception.
3535 </summary>
3536 <param name="message">The error message that explains the reason for the exception.</param>
3537 <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>
3538 </member>
3539 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3540 <summary>
3541 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class.
3542 </summary>
3543 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
3544 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
3545 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
3546 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
3547 </member>
3548 <member name="T:Newtonsoft.Json.JsonReaderException">
3549 <summary>
3550 The exception thrown when an error occurs while reading Json text.
3551 </summary>
3552 </member>
3553 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor">
3554 <summary>
3555 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3556 </summary>
3557 </member>
3558 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)">
3559 <summary>
3560 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
3561 with a specified error message.
3562 </summary>
3563 <param name="message">The error message that explains the reason for the exception.</param>
3564 </member>
3565 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)">
3566 <summary>
3567 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class
3568 with a specified error message and a reference to the inner exception that is the cause of this exception.
3569 </summary>
3570 <param name="message">The error message that explains the reason for the exception.</param>
3571 <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>
3572 </member>
3573 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3574 <summary>
3575 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class.
3576 </summary>
3577 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
3578 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
3579 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
3580 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
3581 </member>
3582 <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber">
3583 <summary>
3584 Gets the line number indicating where the error occurred.
3585 </summary>
3586 <value>The line number indicating where the error occurred.</value>
3587 </member>
3588 <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition">
3589 <summary>
3590 Gets the line position indicating where the error occurred.
3591 </summary>
3592 <value>The line position indicating where the error occurred.</value>
3593 </member>
3594 <member name="T:Newtonsoft.Json.JsonConverterCollection">
3595 <summary>
3596 Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
3597 </summary>
3598 </member>
3599 <member name="T:Newtonsoft.Json.JsonConvert">
3600 <summary>
3601 Provides methods for converting between common language runtime types and JSON types.
3602 </summary>
3603 </member>
3604 <member name="F:Newtonsoft.Json.JsonConvert.True">
3605 <summary>
3606 Represents JavaScript's boolean value true as a string. This field is read-only.
3607 </summary>
3608 </member>
3609 <member name="F:Newtonsoft.Json.JsonConvert.False">
3610 <summary>
3611 Represents JavaScript's boolean value false as a string. This field is read-only.
3612 </summary>
3613 </member>
3614 <member name="F:Newtonsoft.Json.JsonConvert.Null">
3615 <summary>
3616 Represents JavaScript's null as a string. This field is read-only.
3617 </summary>
3618 </member>
3619 <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
3620 <summary>
3621 Represents JavaScript's undefined as a string. This field is read-only.
3622 </summary>
3623 </member>
3624 <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
3625 <summary>
3626 Represents JavaScript's positive infinity as a string. This field is read-only.
3627 </summary>
3628 </member>
3629 <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
3630 <summary>
3631 Represents JavaScript's negative infinity as a string. This field is read-only.
3632 </summary>
3633 </member>
3634 <member name="F:Newtonsoft.Json.JsonConvert.NaN">
3635 <summary>
3636 Represents JavaScript's NaN as a string. This field is read-only.
3637 </summary>
3638 </member>
3639 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
3640 <summary>
3641 Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
3642 </summary>
3643 <param name="value">The value to convert.</param>
3644 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
3645 </member>
3646 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
3647 <summary>
3648 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
3649 </summary>
3650 <param name="value">The value to convert.</param>
3651 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
3652 </member>
3653 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
3654 <summary>
3655 Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
3656 </summary>
3657 <param name="value">The value to convert.</param>
3658 <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
3659 </member>
3660 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
3661 <summary>
3662 Converts the <see cref="T:System.Char"/> to its JSON string representation.
3663 </summary>
3664 <param name="value">The value to convert.</param>
3665 <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
3666 </member>
3667 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
3668 <summary>
3669 Converts the <see cref="T:System.Enum"/> to its JSON string representation.
3670 </summary>
3671 <param name="value">The value to convert.</param>
3672 <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
3673 </member>
3674 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
3675 <summary>
3676 Converts the <see cref="T:System.Int32"/> to its JSON string representation.
3677 </summary>
3678 <param name="value">The value to convert.</param>
3679 <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
3680 </member>
3681 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
3682 <summary>
3683 Converts the <see cref="T:System.Int16"/> to its JSON string representation.
3684 </summary>
3685 <param name="value">The value to convert.</param>
3686 <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
3687 </member>
3688 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
3689 <summary>
3690 Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
3691 </summary>
3692 <param name="value">The value to convert.</param>
3693 <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
3694 </member>
3695 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
3696 <summary>
3697 Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
3698 </summary>
3699 <param name="value">The value to convert.</param>
3700 <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
3701 </member>
3702 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
3703 <summary>
3704 Converts the <see cref="T:System.Int64"/> to its JSON string representation.
3705 </summary>
3706 <param name="value">The value to convert.</param>
3707 <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
3708 </member>
3709 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
3710 <summary>
3711 Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
3712 </summary>
3713 <param name="value">The value to convert.</param>
3714 <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
3715 </member>
3716 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
3717 <summary>
3718 Converts the <see cref="T:System.Single"/> to its JSON string representation.
3719 </summary>
3720 <param name="value">The value to convert.</param>
3721 <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
3722 </member>
3723 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
3724 <summary>
3725 Converts the <see cref="T:System.Double"/> to its JSON string representation.
3726 </summary>
3727 <param name="value">The value to convert.</param>
3728 <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
3729 </member>
3730 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
3731 <summary>
3732 Converts the <see cref="T:System.Byte"/> to its JSON string representation.
3733 </summary>
3734 <param name="value">The value to convert.</param>
3735 <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
3736 </member>
3737 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
3738 <summary>
3739 Converts the <see cref="T:System.SByte"/> to its JSON string representation.
3740 </summary>
3741 <param name="value">The value to convert.</param>
3742 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
3743 </member>
3744 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
3745 <summary>
3746 Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
3747 </summary>
3748 <param name="value">The value to convert.</param>
3749 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
3750 </member>
3751 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
3752 <summary>
3753 Converts the <see cref="T:System.Guid"/> to its JSON string representation.
3754 </summary>
3755 <param name="value">The value to convert.</param>
3756 <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns>
3757 </member>
3758 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)">
3759 <summary>
3760 Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation.
3761 </summary>
3762 <param name="value">The value to convert.</param>
3763 <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns>
3764 </member>
3765 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)">
3766 <summary>
3767 Converts the <see cref="T:System.Uri"/> to its JSON string representation.
3768 </summary>
3769 <param name="value">The value to convert.</param>
3770 <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns>
3771 </member>
3772 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)">
3773 <summary>
3774 Converts the <see cref="T:System.String"/> to its JSON string representation.
3775 </summary>
3776 <param name="value">The value to convert.</param>
3777 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
3778 </member>
3779 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)">
3780 <summary>
3781 Converts the <see cref="T:System.String"/> to its JSON string representation.
3782 </summary>
3783 <param name="value">The value to convert.</param>
3784 <param name="delimter">The string delimiter character.</param>
3785 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns>
3786 </member>
3787 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)">
3788 <summary>
3789 Converts the <see cref="T:System.Object"/> to its JSON string representation.
3790 </summary>
3791 <param name="value">The value to convert.</param>
3792 <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns>
3793 </member>
3794 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)">
3795 <summary>
3796 Serializes the specified object to a JSON string.
3797 </summary>
3798 <param name="value">The object to serialize.</param>
3799 <returns>A JSON string representation of the object.</returns>
3800 </member>
3801 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)">
3802 <summary>
3803 Serializes the specified object to a JSON string.
3804 </summary>
3805 <param name="value">The object to serialize.</param>
3806 <param name="formatting">Indicates how the output is formatted.</param>
3807 <returns>
3808 A JSON string representation of the object.
3809 </returns>
3810 </member>
3811 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])">
3812 <summary>
3813 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
3814 </summary>
3815 <param name="value">The object to serialize.</param>
3816 <param name="converters">A collection converters used while serializing.</param>
3817 <returns>A JSON string representation of the object.</returns>
3818 </member>
3819 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])">
3820 <summary>
3821 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
3822 </summary>
3823 <param name="value">The object to serialize.</param>
3824 <param name="formatting">Indicates how the output is formatted.</param>
3825 <param name="converters">A collection converters used while serializing.</param>
3826 <returns>A JSON string representation of the object.</returns>
3827 </member>
3828 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)">
3829 <summary>
3830 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>.
3831 </summary>
3832 <param name="value">The object to serialize.</param>
3833 <param name="formatting">Indicates how the output is formatted.</param>
3834 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object.
3835 If this is null, default serialization settings will be is used.</param>
3836 <returns>
3837 A JSON string representation of the object.
3838 </returns>
3839 </member>
3840 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)">
3841 <summary>
3842 Deserializes the JSON to a .NET object.
3843 </summary>
3844 <param name="value">The JSON to deserialize.</param>
3845 <returns>The deserialized object from the Json string.</returns>
3846 </member>
3847 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)">
3848 <summary>
3849 Deserializes the JSON to a .NET object.
3850 </summary>
3851 <param name="value">The JSON to deserialize.</param>
3852 <param name="settings">
3853 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
3854 If this is null, default serialization settings will be is used.
3855 </param>
3856 <returns>The deserialized object from the JSON string.</returns>
3857 </member>
3858 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)">
3859 <summary>
3860 Deserializes the JSON to the specified .NET type.
3861 </summary>
3862 <param name="value">The JSON to deserialize.</param>
3863 <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param>
3864 <returns>The deserialized object from the Json string.</returns>
3865 </member>
3866 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)">
3867 <summary>
3868 Deserializes the JSON to the specified .NET type.
3869 </summary>
3870 <typeparam name="T">The type of the object to deserialize to.</typeparam>
3871 <param name="value">The JSON to deserialize.</param>
3872 <returns>The deserialized object from the Json string.</returns>
3873 </member>
3874 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)">
3875 <summary>
3876 Deserializes the JSON to the given anonymous type.
3877 </summary>
3878 <typeparam name="T">
3879 The anonymous type to deserialize to. This can't be specified
3880 traditionally and must be infered from the anonymous type passed
3881 as a parameter.
3882 </typeparam>
3883 <param name="value">The JSON to deserialize.</param>
3884 <param name="anonymousTypeObject">The anonymous type object.</param>
3885 <returns>The deserialized anonymous type from the JSON string.</returns>
3886 </member>
3887 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])">
3888 <summary>
3889 Deserializes the JSON to the specified .NET type.
3890 </summary>
3891 <typeparam name="T">The type of the object to deserialize to.</typeparam>
3892 <param name="value">The JSON to deserialize.</param>
3893 <param name="converters">Converters to use while deserializing.</param>
3894 <returns>The deserialized object from the JSON string.</returns>
3895 </member>
3896 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)">
3897 <summary>
3898 Deserializes the JSON to the specified .NET type.
3899 </summary>
3900 <typeparam name="T">The type of the object to deserialize to.</typeparam>
3901 <param name="value">The object to deserialize.</param>
3902 <param name="settings">
3903 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
3904 If this is null, default serialization settings will be is used.
3905 </param>
3906 <returns>The deserialized object from the JSON string.</returns>
3907 </member>
3908 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])">
3909 <summary>
3910 Deserializes the JSON to the specified .NET type.
3911 </summary>
3912 <param name="value">The JSON to deserialize.</param>
3913 <param name="type">The type of the object to deserialize.</param>
3914 <param name="converters">Converters to use while deserializing.</param>
3915 <returns>The deserialized object from the JSON string.</returns>
3916 </member>
3917 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)">
3918 <summary>
3919 Deserializes the JSON to the specified .NET type.
3920 </summary>
3921 <param name="value">The JSON to deserialize.</param>
3922 <param name="type">The type of the object to deserialize to.</param>
3923 <param name="settings">
3924 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
3925 If this is null, default serialization settings will be is used.
3926 </param>
3927 <returns>The deserialized object from the JSON string.</returns>
3928 </member>
3929 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)">
3930 <summary>
3931 Populates the object with values from the JSON string.
3932 </summary>
3933 <param name="value">The JSON to populate values from.</param>
3934 <param name="target">The target object to populate values onto.</param>
3935 </member>
3936 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)">
3937 <summary>
3938 Populates the object with values from the JSON string.
3939 </summary>
3940 <param name="value">The JSON to populate values from.</param>
3941 <param name="target">The target object to populate values onto.</param>
3942 <param name="settings">
3943 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object.
3944 If this is null, default serialization settings will be is used.
3945 </param>
3946 </member>
3947 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)">
3948 <summary>
3949 Serializes the XML node to a JSON string.
3950 </summary>
3951 <param name="node">The node to serialize.</param>
3952 <returns>A JSON string of the XmlNode.</returns>
3953 </member>
3954 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)">
3955 <summary>
3956 Serializes the XML node to a JSON string.
3957 </summary>
3958 <param name="node">The node to serialize.</param>
3959 <param name="formatting">Indicates how the output is formatted.</param>
3960 <returns>A JSON string of the XmlNode.</returns>
3961 </member>
3962 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)">
3963 <summary>
3964 Serializes the XML node to a JSON string.
3965 </summary>
3966 <param name="node">The node to serialize.</param>
3967 <param name="formatting">Indicates how the output is formatted.</param>
3968 <param name="omitRootObject">Omits writing the root object.</param>
3969 <returns>A JSON string of the XmlNode.</returns>
3970 </member>
3971 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)">
3972 <summary>
3973 Deserializes the XmlNode from a JSON string.
3974 </summary>
3975 <param name="value">The JSON string.</param>
3976 <returns>The deserialized XmlNode</returns>
3977 </member>
3978 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)">
3979 <summary>
3980 Deserializes the XmlNode from a JSON string nested in a root elment.
3981 </summary>
3982 <param name="value">The JSON string.</param>
3983 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
3984 <returns>The deserialized XmlNode</returns>
3985 </member>
3986 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)">
3987 <summary>
3988 Deserializes the XmlNode from a JSON string nested in a root elment.
3989 </summary>
3990 <param name="value">The JSON string.</param>
3991 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
3992 <param name="writeArrayAttribute">
3993 A flag to indicate whether to write the Json.NET array attribute.
3994 This attribute helps preserve arrays when converting the written XML back to JSON.
3995 </param>
3996 <returns>The deserialized XmlNode</returns>
3997 </member>
3998 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)">
3999 <summary>
4000 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4001 </summary>
4002 <param name="node">The node to convert to JSON.</param>
4003 <returns>A JSON string of the XNode.</returns>
4004 </member>
4005 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)">
4006 <summary>
4007 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4008 </summary>
4009 <param name="node">The node to convert to JSON.</param>
4010 <param name="formatting">Indicates how the output is formatted.</param>
4011 <returns>A JSON string of the XNode.</returns>
4012 </member>
4013 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)">
4014 <summary>
4015 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string.
4016 </summary>
4017 <param name="node">The node to serialize.</param>
4018 <param name="formatting">Indicates how the output is formatted.</param>
4019 <param name="omitRootObject">Omits writing the root object.</param>
4020 <returns>A JSON string of the XNode.</returns>
4021 </member>
4022 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)">
4023 <summary>
4024 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string.
4025 </summary>
4026 <param name="value">The JSON string.</param>
4027 <returns>The deserialized XNode</returns>
4028 </member>
4029 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)">
4030 <summary>
4031 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4032 </summary>
4033 <param name="value">The JSON string.</param>
4034 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4035 <returns>The deserialized XNode</returns>
4036 </member>
4037 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)">
4038 <summary>
4039 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment.
4040 </summary>
4041 <param name="value">The JSON string.</param>
4042 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param>
4043 <param name="writeArrayAttribute">
4044 A flag to indicate whether to write the Json.NET array attribute.
4045 This attribute helps preserve arrays when converting the written XML back to JSON.
4046 </param>
4047 <returns>The deserialized XNode</returns>
4048 </member>
4049 <member name="T:Newtonsoft.Json.JsonSerializationException">
4050 <summary>
4051 The exception thrown when an error occurs during Json serialization or deserialization.
4052 </summary>
4053 </member>
4054 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor">
4055 <summary>
4056 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4057 </summary>
4058 </member>
4059 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)">
4060 <summary>
4061 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4062 with a specified error message.
4063 </summary>
4064 <param name="message">The error message that explains the reason for the exception.</param>
4065 </member>
4066 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)">
4067 <summary>
4068 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class
4069 with a specified error message and a reference to the inner exception that is the cause of this exception.
4070 </summary>
4071 <param name="message">The error message that explains the reason for the exception.</param>
4072 <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>
4073 </member>
4074 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
4075 <summary>
4076 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class.
4077 </summary>
4078 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
4079 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
4080 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
4081 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
4082 </member>
4083 <member name="T:Newtonsoft.Json.JsonSerializer">
4084 <summary>
4085 Serializes and deserializes objects into and from the JSON format.
4086 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON.
4087 </summary>
4088 </member>
4089 <member name="M:Newtonsoft.Json.JsonSerializer.#ctor">
4090 <summary>
4091 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class.
4092 </summary>
4093 </member>
4094 <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)">
4095 <summary>
4096 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
4097 </summary>
4098 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param>
4099 <returns>A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.</returns>
4100 </member>
4101 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)">
4102 <summary>
4103 Populates the JSON values onto the target object.
4104 </summary>
4105 <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param>
4106 <param name="target">The target object to populate values onto.</param>
4107 </member>
4108 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)">
4109 <summary>
4110 Populates the JSON values onto the target object.
4111 </summary>
4112 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param>
4113 <param name="target">The target object to populate values onto.</param>
4114 </member>
4115 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)">
4116 <summary>
4117 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
4118 </summary>
4119 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param>
4120 <returns>The <see cref="T:System.Object"/> being deserialized.</returns>
4121 </member>
4122 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)">
4123 <summary>
4124 Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/>
4125 into an instance of the specified type.
4126 </summary>
4127 <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param>
4128 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4129 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4130 </member>
4131 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)">
4132 <summary>
4133 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4134 into an instance of the specified type.
4135 </summary>
4136 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4137 <typeparam name="T">The type of the object to deserialize.</typeparam>
4138 <returns>The instance of <typeparamref name="T"/> being deserialized.</returns>
4139 </member>
4140 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)">
4141 <summary>
4142 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>
4143 into an instance of the specified type.
4144 </summary>
4145 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param>
4146 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param>
4147 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns>
4148 </member>
4149 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)">
4150 <summary>
4151 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4152 to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>.
4153 </summary>
4154 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param>
4155 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4156 </member>
4157 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)">
4158 <summary>
4159 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure
4160 to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4161 </summary>
4162 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param>
4163 <param name="value">The <see cref="T:System.Object"/> to serialize.</param>
4164 </member>
4165 <member name="E:Newtonsoft.Json.JsonSerializer.Error">
4166 <summary>
4167 Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization.
4168 </summary>
4169 </member>
4170 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver">
4171 <summary>
4172 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references.
4173 </summary>
4174 </member>
4175 <member name="P:Newtonsoft.Json.JsonSerializer.Binder">
4176 <summary>
4177 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names.
4178 </summary>
4179 </member>
4180 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling">
4181 <summary>
4182 Gets or sets how type name writing and reading is handled by the serializer.
4183 </summary>
4184 </member>
4185 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat">
4186 <summary>
4187 Gets or sets how a type name assembly is written and resolved by the serializer.
4188 </summary>
4189 <value>The type name assembly format.</value>
4190 </member>
4191 <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling">
4192 <summary>
4193 Gets or sets how object references are preserved by the serializer.
4194 </summary>
4195 </member>
4196 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling">
4197 <summary>
4198 Get or set how reference loops (e.g. a class referencing itself) is handled.
4199 </summary>
4200 </member>
4201 <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling">
4202 <summary>
4203 Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
4204 </summary>
4205 </member>
4206 <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling">
4207 <summary>
4208 Get or set how null values are handled during serialization and deserialization.
4209 </summary>
4210 </member>
4211 <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling">
4212 <summary>
4213 Get or set how null default are handled during serialization and deserialization.
4214 </summary>
4215 </member>
4216 <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling">
4217 <summary>
4218 Gets or sets how objects are created during deserialization.
4219 </summary>
4220 <value>The object creation handling.</value>
4221 </member>
4222 <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling">
4223 <summary>
4224 Gets or sets how constructors are used during deserialization.
4225 </summary>
4226 <value>The constructor handling.</value>
4227 </member>
4228 <member name="P:Newtonsoft.Json.JsonSerializer.Converters">
4229 <summary>
4230 Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.
4231 </summary>
4232 <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value>
4233 </member>
4234 <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver">
4235 <summary>
4236 Gets or sets the contract resolver used by the serializer when
4237 serializing .NET objects to JSON and vice versa.
4238 </summary>
4239 </member>
4240 <member name="P:Newtonsoft.Json.JsonSerializer.Context">
4241 <summary>
4242 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods.
4243 </summary>
4244 <value>The context.</value>
4245 </member>
4246 <member name="T:Newtonsoft.Json.Linq.Extensions">
4247 <summary>
4248 Contains the LINQ to JSON extension methods.
4249 </summary>
4250 </member>
4251 <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
4252 <summary>
4253 Returns a collection of tokens that contains the ancestors of every token in the source collection.
4254 </summary>
4255 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam>
4256 <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>
4257 <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>
4258 </member>
4259 <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
4260 <summary>
4261 Returns a collection of tokens that contains the descendants of every token in the source collection.
4262 </summary>
4263 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam>
4264 <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>
4265 <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>
4266 </member>
4267 <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})">
4268 <summary>
4269 Returns a collection of child properties of every object in the source collection.
4270 </summary>
4271 <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JObject"/> that contains the source collection.</param>
4272 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JProperty"/> that contains the properties of every object in the source collection.</returns>
4273 </member>
4274 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4275 <summary>
4276 Returns a collection of child values of every object in the source collection with the given key.
4277 </summary>
4278 <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>
4279 <param name="key">The token key.</param>
4280 <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>
4281 </member>
4282 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4283 <summary>
4284 Returns a collection of child values of every object in the source collection.
4285 </summary>
4286 <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>
4287 <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>
4288 </member>
4289 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)">
4290 <summary>
4291 Returns a collection of converted child values of every object in the source collection with the given key.
4292 </summary>
4293 <typeparam name="U">The type to convert the values to.</typeparam>
4294 <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>
4295 <param name="key">The token key.</param>
4296 <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>
4297 </member>
4298 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4299 <summary>
4300 Returns a collection of converted child values of every object in the source collection.
4301 </summary>
4302 <typeparam name="U">The type to convert the values to.</typeparam>
4303 <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>
4304 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
4305 </member>
4306 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4307 <summary>
4308 Converts the value.
4309 </summary>
4310 <typeparam name="U">The type to convert the value to.</typeparam>
4311 <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
4312 <returns>A converted value.</returns>
4313 </member>
4314 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})">
4315 <summary>
4316 Converts the value.
4317 </summary>
4318 <typeparam name="T">The source collection type.</typeparam>
4319 <typeparam name="U">The type to convert the value to.</typeparam>
4320 <param name="value">A <see cref="T:Newtonsoft.Json.Linq.JToken"/> cast as a <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param>
4321 <returns>A converted value.</returns>
4322 </member>
4323 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})">
4324 <summary>
4325 Returns a collection of child tokens of every array in the source collection.
4326 </summary>
4327 <typeparam name="T">The source collection type.</typeparam>
4328 <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>
4329 <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>
4330 </member>
4331 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})">
4332 <summary>
4333 Returns a collection of converted child tokens of every array in the source collection.
4334 </summary>
4335 <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>
4336 <typeparam name="U">The type to convert the values to.</typeparam>
4337 <typeparam name="T">The source collection type.</typeparam>
4338 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns>
4339 </member>
4340 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})">
4341 <summary>
4342 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4343 </summary>
4344 <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>
4345 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4346 </member>
4347 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})">
4348 <summary>
4349 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.
4350 </summary>
4351 <typeparam name="T">The source collection type.</typeparam>
4352 <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>
4353 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns>
4354 </member>
4355 <member name="T:Newtonsoft.Json.Linq.JConstructor">
4356 <summary>
4357 Represents a JSON constructor.
4358 </summary>
4359 </member>
4360 <member name="T:Newtonsoft.Json.Linq.JContainer">
4361 <summary>
4362 Represents a token that can contain other tokens.
4363 </summary>
4364 </member>
4365 <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
4366 <summary>
4367 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event.
4368 </summary>
4369 <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param>
4370 </member>
4371 <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
4372 <summary>
4373 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event.
4374 </summary>
4375 <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param>
4376 </member>
4377 <member name="M:Newtonsoft.Json.Linq.JContainer.Children">
4378 <summary>
4379 Returns a collection of the child tokens of this token, in document order.
4380 </summary>
4381 <returns>
4382 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.
4383 </returns>
4384 </member>
4385 <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1">
4386 <summary>
4387 Returns a collection of the child values of this token, in document order.
4388 </summary>
4389 <typeparam name="T">The type to convert the values to.</typeparam>
4390 <returns>
4391 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.
4392 </returns>
4393 </member>
4394 <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants">
4395 <summary>
4396 Returns a collection of the descendant tokens for this token in document order.
4397 </summary>
4398 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns>
4399 </member>
4400 <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)">
4401 <summary>
4402 Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4403 </summary>
4404 <param name="content">The content to be added.</param>
4405 </member>
4406 <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)">
4407 <summary>
4408 Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4409 </summary>
4410 <param name="content">The content to be added.</param>
4411 </member>
4412 <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter">
4413 <summary>
4414 Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4415 </summary>
4416 <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns>
4417 </member>
4418 <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)">
4419 <summary>
4420 Replaces the children nodes of this token with the specified content.
4421 </summary>
4422 <param name="content">The content.</param>
4423 </member>
4424 <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll">
4425 <summary>
4426 Removes the child nodes from this token.
4427 </summary>
4428 </member>
4429 <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged">
4430 <summary>
4431 Occurs when the list changes or an item in the list changes.
4432 </summary>
4433 </member>
4434 <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew">
4435 <summary>
4436 Occurs before an item is added to the collection.
4437 </summary>
4438 </member>
4439 <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens">
4440 <summary>
4441 Gets the container's children tokens.
4442 </summary>
4443 <value>The container's children tokens.</value>
4444 </member>
4445 <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues">
4446 <summary>
4447 Gets a value indicating whether this token has childen tokens.
4448 </summary>
4449 <value>
4450 <c>true</c> if this token has child values; otherwise, <c>false</c>.
4451 </value>
4452 </member>
4453 <member name="P:Newtonsoft.Json.Linq.JContainer.First">
4454 <summary>
4455 Get the first child token of this token.
4456 </summary>
4457 <value>
4458 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4459 </value>
4460 </member>
4461 <member name="P:Newtonsoft.Json.Linq.JContainer.Last">
4462 <summary>
4463 Get the last child token of this token.
4464 </summary>
4465 <value>
4466 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4467 </value>
4468 </member>
4469 <member name="P:Newtonsoft.Json.Linq.JContainer.Count">
4470 <summary>
4471 Gets the count of child JSON tokens.
4472 </summary>
4473 <value>The count of child JSON tokens</value>
4474 </member>
4475 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor">
4476 <summary>
4477 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class.
4478 </summary>
4479 </member>
4480 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)">
4481 <summary>
4482 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object.
4483 </summary>
4484 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param>
4485 </member>
4486 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])">
4487 <summary>
4488 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4489 </summary>
4490 <param name="name">The constructor name.</param>
4491 <param name="content">The contents of the constructor.</param>
4492 </member>
4493 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)">
4494 <summary>
4495 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content.
4496 </summary>
4497 <param name="name">The constructor name.</param>
4498 <param name="content">The contents of the constructor.</param>
4499 </member>
4500 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)">
4501 <summary>
4502 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name.
4503 </summary>
4504 <param name="name">The constructor name.</param>
4505 </member>
4506 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4507 <summary>
4508 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4509 </summary>
4510 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4511 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4512 </member>
4513 <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)">
4514 <summary>
4515 Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4516 </summary>
4517 <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>
4518 <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>
4519 </member>
4520 <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens">
4521 <summary>
4522 Gets the container's children tokens.
4523 </summary>
4524 <value>The container's children tokens.</value>
4525 </member>
4526 <member name="P:Newtonsoft.Json.Linq.JConstructor.Name">
4527 <summary>
4528 Gets or sets the name of this constructor.
4529 </summary>
4530 <value>The constructor name.</value>
4531 </member>
4532 <member name="P:Newtonsoft.Json.Linq.JConstructor.Type">
4533 <summary>
4534 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4535 </summary>
4536 <value>The type.</value>
4537 </member>
4538 <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)">
4539 <summary>
4540 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4541 </summary>
4542 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4543 </member>
4544 <member name="T:Newtonsoft.Json.Linq.JEnumerable`1">
4545 <summary>
4546 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4547 </summary>
4548 <typeparam name="T">The type of token</typeparam>
4549 </member>
4550 <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty">
4551 <summary>
4552 An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects.
4553 </summary>
4554 </member>
4555 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
4556 <summary>
4557 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct.
4558 </summary>
4559 <param name="enumerable">The enumerable.</param>
4560 </member>
4561 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator">
4562 <summary>
4563 Returns an enumerator that iterates through the collection.
4564 </summary>
4565 <returns>
4566 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4567 </returns>
4568 </member>
4569 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator">
4570 <summary>
4571 Returns an enumerator that iterates through a collection.
4572 </summary>
4573 <returns>
4574 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
4575 </returns>
4576 </member>
4577 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)">
4578 <summary>
4579 Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
4580 </summary>
4581 <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param>
4582 <returns>
4583 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
4584 </returns>
4585 </member>
4586 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode">
4587 <summary>
4588 Returns a hash code for this instance.
4589 </summary>
4590 <returns>
4591 A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
4592 </returns>
4593 </member>
4594 <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)">
4595 <summary>
4596 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key.
4597 </summary>
4598 <value></value>
4599 </member>
4600 <member name="T:Newtonsoft.Json.Linq.JObject">
4601 <summary>
4602 Represents a JSON object.
4603 </summary>
4604 </member>
4605 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor">
4606 <summary>
4607 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class.
4608 </summary>
4609 </member>
4610 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)">
4611 <summary>
4612 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object.
4613 </summary>
4614 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param>
4615 </member>
4616 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])">
4617 <summary>
4618 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
4619 </summary>
4620 <param name="content">The contents of the object.</param>
4621 </member>
4622 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)">
4623 <summary>
4624 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content.
4625 </summary>
4626 <param name="content">The contents of the object.</param>
4627 </member>
4628 <member name="M:Newtonsoft.Json.Linq.JObject.Properties">
4629 <summary>
4630 Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.
4631 </summary>
4632 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns>
4633 </member>
4634 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)">
4635 <summary>
4636 Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name.
4637 </summary>
4638 <param name="name">The property name.</param>
4639 <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns>
4640 </member>
4641 <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues">
4642 <summary>
4643 Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.
4644 </summary>
4645 <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns>
4646 </member>
4647 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)">
4648 <summary>
4649 Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4650 </summary>
4651 <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>
4652 <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>
4653 </member>
4654 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)">
4655 <summary>
4656 Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON.
4657 </summary>
4658 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4659 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns>
4660 </member>
4661 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)">
4662 <summary>
4663 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object.
4664 </summary>
4665 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param>
4666 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns>
4667 </member>
4668 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
4669 <summary>
4670 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
4671 </summary>
4672 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4673 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
4674 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
4675 </member>
4676 <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4677 <summary>
4678 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4679 </summary>
4680 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4681 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4682 </member>
4683 <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)">
4684 <summary>
4685 Adds the specified property name.
4686 </summary>
4687 <param name="propertyName">Name of the property.</param>
4688 <param name="value">The value.</param>
4689 </member>
4690 <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)">
4691 <summary>
4692 Removes the property with the specified name.
4693 </summary>
4694 <param name="propertyName">Name of the property.</param>
4695 <returns>true if item was successfully removed; otherwise, false.</returns>
4696 </member>
4697 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)">
4698 <summary>
4699 Tries the get value.
4700 </summary>
4701 <param name="propertyName">Name of the property.</param>
4702 <param name="value">The value.</param>
4703 <returns>true if a value was successfully retrieved; otherwise, false.</returns>
4704 </member>
4705 <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator">
4706 <summary>
4707 Returns an enumerator that iterates through the collection.
4708 </summary>
4709 <returns>
4710 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
4711 </returns>
4712 </member>
4713 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)">
4714 <summary>
4715 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments.
4716 </summary>
4717 <param name="propertyName">Name of the property.</param>
4718 </member>
4719 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)">
4720 <summary>
4721 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments.
4722 </summary>
4723 <param name="propertyName">Name of the property.</param>
4724 </member>
4725 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
4726 <summary>
4727 Returns the properties for this instance of a component.
4728 </summary>
4729 <returns>
4730 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance.
4731 </returns>
4732 </member>
4733 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
4734 <summary>
4735 Returns the properties for this instance of a component using the attribute array as a filter.
4736 </summary>
4737 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
4738 <returns>
4739 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance.
4740 </returns>
4741 </member>
4742 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
4743 <summary>
4744 Returns a collection of custom attributes for this instance of a component.
4745 </summary>
4746 <returns>
4747 An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object.
4748 </returns>
4749 </member>
4750 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
4751 <summary>
4752 Returns the class name of this instance of a component.
4753 </summary>
4754 <returns>
4755 The class name of the object, or null if the class does not have a name.
4756 </returns>
4757 </member>
4758 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
4759 <summary>
4760 Returns the name of this instance of a component.
4761 </summary>
4762 <returns>
4763 The name of the object, or null if the object does not have a name.
4764 </returns>
4765 </member>
4766 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
4767 <summary>
4768 Returns a type converter for this instance of a component.
4769 </summary>
4770 <returns>
4771 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.
4772 </returns>
4773 </member>
4774 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
4775 <summary>
4776 Returns the default event for this instance of a component.
4777 </summary>
4778 <returns>
4779 An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events.
4780 </returns>
4781 </member>
4782 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
4783 <summary>
4784 Returns the default property for this instance of a component.
4785 </summary>
4786 <returns>
4787 A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties.
4788 </returns>
4789 </member>
4790 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
4791 <summary>
4792 Returns an editor of the specified type for this instance of a component.
4793 </summary>
4794 <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param>
4795 <returns>
4796 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.
4797 </returns>
4798 </member>
4799 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
4800 <summary>
4801 Returns the events for this instance of a component using the specified attribute array as a filter.
4802 </summary>
4803 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
4804 <returns>
4805 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance.
4806 </returns>
4807 </member>
4808 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
4809 <summary>
4810 Returns the events for this instance of a component.
4811 </summary>
4812 <returns>
4813 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance.
4814 </returns>
4815 </member>
4816 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
4817 <summary>
4818 Returns an object that contains the property described by the specified property descriptor.
4819 </summary>
4820 <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param>
4821 <returns>
4822 An <see cref="T:System.Object"/> that represents the owner of the specified property.
4823 </returns>
4824 </member>
4825 <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens">
4826 <summary>
4827 Gets the container's children tokens.
4828 </summary>
4829 <value>The container's children tokens.</value>
4830 </member>
4831 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged">
4832 <summary>
4833 Occurs when a property value changes.
4834 </summary>
4835 </member>
4836 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging">
4837 <summary>
4838 Occurs when a property value is changing.
4839 </summary>
4840 </member>
4841 <member name="P:Newtonsoft.Json.Linq.JObject.Type">
4842 <summary>
4843 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4844 </summary>
4845 <value>The type.</value>
4846 </member>
4847 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)">
4848 <summary>
4849 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4850 </summary>
4851 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
4852 </member>
4853 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)">
4854 <summary>
4855 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name.
4856 </summary>
4857 <value></value>
4858 </member>
4859 <member name="T:Newtonsoft.Json.Linq.JArray">
4860 <summary>
4861 Represents a JSON array.
4862 </summary>
4863 </member>
4864 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor">
4865 <summary>
4866 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class.
4867 </summary>
4868 </member>
4869 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)">
4870 <summary>
4871 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object.
4872 </summary>
4873 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param>
4874 </member>
4875 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])">
4876 <summary>
4877 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
4878 </summary>
4879 <param name="content">The contents of the array.</param>
4880 </member>
4881 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)">
4882 <summary>
4883 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content.
4884 </summary>
4885 <param name="content">The contents of the array.</param>
4886 </member>
4887 <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)">
4888 <summary>
4889 Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
4890 </summary>
4891 <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>
4892 <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>
4893 </member>
4894 <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)">
4895 <summary>
4896 Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON.
4897 </summary>
4898 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
4899 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns>
4900 </member>
4901 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)">
4902 <summary>
4903 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
4904 </summary>
4905 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4906 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
4907 </member>
4908 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)">
4909 <summary>
4910 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object.
4911 </summary>
4912 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param>
4913 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param>
4914 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns>
4915 </member>
4916 <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
4917 <summary>
4918 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
4919 </summary>
4920 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
4921 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
4922 </member>
4923 <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)">
4924 <summary>
4925 Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
4926 </summary>
4927 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
4928 <returns>
4929 The index of <paramref name="item"/> if found in the list; otherwise, -1.
4930 </returns>
4931 </member>
4932 <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)">
4933 <summary>
4934 Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index.
4935 </summary>
4936 <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
4937 <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
4938 <exception cref="T:System.ArgumentOutOfRangeException">
4939 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
4940 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
4941 </member>
4942 <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)">
4943 <summary>
4944 Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
4945 </summary>
4946 <param name="index">The zero-based index of the item to remove.</param>
4947 <exception cref="T:System.ArgumentOutOfRangeException">
4948 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
4949 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
4950 </member>
4951 <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)">
4952 <summary>
4953 Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
4954 </summary>
4955 <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
4956 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
4957 </member>
4958 <member name="M:Newtonsoft.Json.Linq.JArray.Clear">
4959 <summary>
4960 Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
4961 </summary>
4962 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception>
4963 </member>
4964 <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)">
4965 <summary>
4966 Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
4967 </summary>
4968 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
4969 <returns>
4970 true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
4971 </returns>
4972 </member>
4973 <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)">
4974 <summary>
4975 Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
4976 </summary>
4977 <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
4978 <returns>
4979 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"/>.
4980 </returns>
4981 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception>
4982 </member>
4983 <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens">
4984 <summary>
4985 Gets the container's children tokens.
4986 </summary>
4987 <value>The container's children tokens.</value>
4988 </member>
4989 <member name="P:Newtonsoft.Json.Linq.JArray.Type">
4990 <summary>
4991 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
4992 </summary>
4993 <value>The type.</value>
4994 </member>
4995 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)">
4996 <summary>
4997 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.
4998 </summary>
4999 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value>
5000 </member>
5001 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)">
5002 <summary>
5003 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index.
5004 </summary>
5005 <value></value>
5006 </member>
5007 <member name="T:Newtonsoft.Json.Linq.JTokenReader">
5008 <summary>
5009 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
5010 </summary>
5011 </member>
5012 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)">
5013 <summary>
5014 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class.
5015 </summary>
5016 <param name="token">The token to read from.</param>
5017 </member>
5018 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes">
5019 <summary>
5020 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>.
5021 </summary>
5022 <returns>
5023 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.
5024 </returns>
5025 </member>
5026 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal">
5027 <summary>
5028 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5029 </summary>
5030 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5031 </member>
5032 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32">
5033 <summary>
5034 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5035 </summary>
5036 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5037 </member>
5038 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset">
5039 <summary>
5040 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>.
5041 </summary>
5042 <returns>A <see cref="T:System.Nullable`1"/>.</returns>
5043 </member>
5044 <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read">
5045 <summary>
5046 Reads the next JSON token from the stream.
5047 </summary>
5048 <returns>
5049 true if the next token was read successfully; false if there are no more tokens to read.
5050 </returns>
5051 </member>
5052 <member name="T:Newtonsoft.Json.Linq.JTokenWriter">
5053 <summary>
5054 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
5055 </summary>
5056 </member>
5057 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)">
5058 <summary>
5059 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class writing to the given <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.
5060 </summary>
5061 <param name="container">The container being written to.</param>
5062 </member>
5063 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor">
5064 <summary>
5065 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class.
5066 </summary>
5067 </member>
5068 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush">
5069 <summary>
5070 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
5071 </summary>
5072 </member>
5073 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close">
5074 <summary>
5075 Closes this stream and the underlying stream.
5076 </summary>
5077 </member>
5078 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject">
5079 <summary>
5080 Writes the beginning of a Json object.
5081 </summary>
5082 </member>
5083 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray">
5084 <summary>
5085 Writes the beginning of a Json array.
5086 </summary>
5087 </member>
5088 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)">
5089 <summary>
5090 Writes the start of a constructor with the given name.
5091 </summary>
5092 <param name="name">The name of the constructor.</param>
5093 </member>
5094 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
5095 <summary>
5096 Writes the end.
5097 </summary>
5098 <param name="token">The token.</param>
5099 </member>
5100 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)">
5101 <summary>
5102 Writes the property name of a name/value pair on a Json object.
5103 </summary>
5104 <param name="name">The name of the property.</param>
5105 </member>
5106 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull">
5107 <summary>
5108 Writes a null value.
5109 </summary>
5110 </member>
5111 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined">
5112 <summary>
5113 Writes an undefined value.
5114 </summary>
5115 </member>
5116 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)">
5117 <summary>
5118 Writes raw JSON.
5119 </summary>
5120 <param name="json">The raw JSON to write.</param>
5121 </member>
5122 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)">
5123 <summary>
5124 Writes out a comment <code>/*...*/</code> containing the specified text.
5125 </summary>
5126 <param name="text">Text to place inside the comment.</param>
5127 </member>
5128 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)">
5129 <summary>
5130 Writes a <see cref="T:System.String"/> value.
5131 </summary>
5132 <param name="value">The <see cref="T:System.String"/> value to write.</param>
5133 </member>
5134 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)">
5135 <summary>
5136 Writes a <see cref="T:System.Int32"/> value.
5137 </summary>
5138 <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
5139 </member>
5140 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)">
5141 <summary>
5142 Writes a <see cref="T:System.UInt32"/> value.
5143 </summary>
5144 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
5145 </member>
5146 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)">
5147 <summary>
5148 Writes a <see cref="T:System.Int64"/> value.
5149 </summary>
5150 <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
5151 </member>
5152 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)">
5153 <summary>
5154 Writes a <see cref="T:System.UInt64"/> value.
5155 </summary>
5156 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
5157 </member>
5158 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)">
5159 <summary>
5160 Writes a <see cref="T:System.Single"/> value.
5161 </summary>
5162 <param name="value">The <see cref="T:System.Single"/> value to write.</param>
5163 </member>
5164 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)">
5165 <summary>
5166 Writes a <see cref="T:System.Double"/> value.
5167 </summary>
5168 <param name="value">The <see cref="T:System.Double"/> value to write.</param>
5169 </member>
5170 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)">
5171 <summary>
5172 Writes a <see cref="T:System.Boolean"/> value.
5173 </summary>
5174 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
5175 </member>
5176 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)">
5177 <summary>
5178 Writes a <see cref="T:System.Int16"/> value.
5179 </summary>
5180 <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
5181 </member>
5182 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)">
5183 <summary>
5184 Writes a <see cref="T:System.UInt16"/> value.
5185 </summary>
5186 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
5187 </member>
5188 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)">
5189 <summary>
5190 Writes a <see cref="T:System.Char"/> value.
5191 </summary>
5192 <param name="value">The <see cref="T:System.Char"/> value to write.</param>
5193 </member>
5194 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)">
5195 <summary>
5196 Writes a <see cref="T:System.Byte"/> value.
5197 </summary>
5198 <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
5199 </member>
5200 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)">
5201 <summary>
5202 Writes a <see cref="T:System.SByte"/> value.
5203 </summary>
5204 <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
5205 </member>
5206 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)">
5207 <summary>
5208 Writes a <see cref="T:System.Decimal"/> value.
5209 </summary>
5210 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
5211 </member>
5212 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)">
5213 <summary>
5214 Writes a <see cref="T:System.DateTime"/> value.
5215 </summary>
5216 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
5217 </member>
5218 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)">
5219 <summary>
5220 Writes a <see cref="T:System.DateTimeOffset"/> value.
5221 </summary>
5222 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
5223 </member>
5224 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])">
5225 <summary>
5226 Writes a <see cref="T:Byte[]"/> value.
5227 </summary>
5228 <param name="value">The <see cref="T:Byte[]"/> value to write.</param>
5229 </member>
5230 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)">
5231 <summary>
5232 Writes a <see cref="T:System.TimeSpan"/> value.
5233 </summary>
5234 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
5235 </member>
5236 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)">
5237 <summary>
5238 Writes a <see cref="T:System.Guid"/> value.
5239 </summary>
5240 <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
5241 </member>
5242 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)">
5243 <summary>
5244 Writes a <see cref="T:System.Uri"/> value.
5245 </summary>
5246 <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
5247 </member>
5248 <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token">
5249 <summary>
5250 Gets the token being writen.
5251 </summary>
5252 <value>The token being writen.</value>
5253 </member>
5254 <member name="T:Newtonsoft.Json.Linq.JProperty">
5255 <summary>
5256 Represents a JSON property.
5257 </summary>
5258 </member>
5259 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)">
5260 <summary>
5261 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object.
5262 </summary>
5263 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param>
5264 </member>
5265 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])">
5266 <summary>
5267 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5268 </summary>
5269 <param name="name">The property name.</param>
5270 <param name="content">The property content.</param>
5271 </member>
5272 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)">
5273 <summary>
5274 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class.
5275 </summary>
5276 <param name="name">The property name.</param>
5277 <param name="content">The property content.</param>
5278 </member>
5279 <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])">
5280 <summary>
5281 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
5282 </summary>
5283 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
5284 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param>
5285 </member>
5286 <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)">
5287 <summary>
5288 Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>.
5289 </summary>
5290 <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>
5291 <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>
5292 </member>
5293 <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens">
5294 <summary>
5295 Gets the container's children tokens.
5296 </summary>
5297 <value>The container's children tokens.</value>
5298 </member>
5299 <member name="P:Newtonsoft.Json.Linq.JProperty.Name">
5300 <summary>
5301 Gets the property name.
5302 </summary>
5303 <value>The property name.</value>
5304 </member>
5305 <member name="P:Newtonsoft.Json.Linq.JProperty.Value">
5306 <summary>
5307 Gets or sets the property value.
5308 </summary>
5309 <value>The property value.</value>
5310 </member>
5311 <member name="P:Newtonsoft.Json.Linq.JProperty.Type">
5312 <summary>
5313 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5314 </summary>
5315 <value>The type.</value>
5316 </member>
5317 <member name="T:Newtonsoft.Json.Linq.JTokenType">
5318 <summary>
5319 Specifies the type of token.
5320 </summary>
5321 </member>
5322 <member name="F:Newtonsoft.Json.Linq.JTokenType.None">
5323 <summary>
5324 No token type has been set.
5325 </summary>
5326 </member>
5327 <member name="F:Newtonsoft.Json.Linq.JTokenType.Object">
5328 <summary>
5329 A JSON object.
5330 </summary>
5331 </member>
5332 <member name="F:Newtonsoft.Json.Linq.JTokenType.Array">
5333 <summary>
5334 A JSON array.
5335 </summary>
5336 </member>
5337 <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor">
5338 <summary>
5339 A JSON constructor.
5340 </summary>
5341 </member>
5342 <member name="F:Newtonsoft.Json.Linq.JTokenType.Property">
5343 <summary>
5344 A JSON object property.
5345 </summary>
5346 </member>
5347 <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment">
5348 <summary>
5349 A comment.
5350 </summary>
5351 </member>
5352 <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer">
5353 <summary>
5354 An integer value.
5355 </summary>
5356 </member>
5357 <member name="F:Newtonsoft.Json.Linq.JTokenType.Float">
5358 <summary>
5359 A float value.
5360 </summary>
5361 </member>
5362 <member name="F:Newtonsoft.Json.Linq.JTokenType.String">
5363 <summary>
5364 A string value.
5365 </summary>
5366 </member>
5367 <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean">
5368 <summary>
5369 A boolean value.
5370 </summary>
5371 </member>
5372 <member name="F:Newtonsoft.Json.Linq.JTokenType.Null">
5373 <summary>
5374 A null value.
5375 </summary>
5376 </member>
5377 <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined">
5378 <summary>
5379 An undefined value.
5380 </summary>
5381 </member>
5382 <member name="F:Newtonsoft.Json.Linq.JTokenType.Date">
5383 <summary>
5384 A date value.
5385 </summary>
5386 </member>
5387 <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw">
5388 <summary>
5389 A raw JSON value.
5390 </summary>
5391 </member>
5392 <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes">
5393 <summary>
5394 A collection of bytes value.
5395 </summary>
5396 </member>
5397 <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid">
5398 <summary>
5399 A Guid value.
5400 </summary>
5401 </member>
5402 <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri">
5403 <summary>
5404 A Uri value.
5405 </summary>
5406 </member>
5407 <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan">
5408 <summary>
5409 A TimeSpan value.
5410 </summary>
5411 </member>
5412 <member name="T:Newtonsoft.Json.Schema.Extensions">
5413 <summary>
5414 Contains the JSON schema extension methods.
5415 </summary>
5416 </member>
5417 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
5418 <summary>
5419 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
5420 </summary>
5421 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5422 <param name="schema">The schema to test with.</param>
5423 <returns>
5424 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
5425 </returns>
5426 </member>
5427 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)">
5428 <summary>
5429 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid.
5430 </summary>
5431 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5432 <param name="schema">The schema to test with.</param>
5433 <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param>
5434 <returns>
5435 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>.
5436 </returns>
5437 </member>
5438 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)">
5439 <summary>
5440 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5441 </summary>
5442 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5443 <param name="schema">The schema to test with.</param>
5444 </member>
5445 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)">
5446 <summary>
5447 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
5448 </summary>
5449 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param>
5450 <param name="schema">The schema to test with.</param>
5451 <param name="validationEventHandler">The validation event handler.</param>
5452 </member>
5453 <member name="T:Newtonsoft.Json.Schema.JsonSchemaException">
5454 <summary>
5455 Returns detailed information about the schema exception.
5456 </summary>
5457 </member>
5458 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor">
5459 <summary>
5460 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
5461 </summary>
5462 </member>
5463 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)">
5464 <summary>
5465 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
5466 with a specified error message.
5467 </summary>
5468 <param name="message">The error message that explains the reason for the exception.</param>
5469 </member>
5470 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)">
5471 <summary>
5472 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class
5473 with a specified error message and a reference to the inner exception that is the cause of this exception.
5474 </summary>
5475 <param name="message">The error message that explains the reason for the exception.</param>
5476 <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>
5477 </member>
5478 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
5479 <summary>
5480 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class.
5481 </summary>
5482 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
5483 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
5484 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception>
5485 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception>
5486 </member>
5487 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber">
5488 <summary>
5489 Gets the line number indicating where the error occurred.
5490 </summary>
5491 <value>The line number indicating where the error occurred.</value>
5492 </member>
5493 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition">
5494 <summary>
5495 Gets the line position indicating where the error occurred.
5496 </summary>
5497 <value>The line position indicating where the error occurred.</value>
5498 </member>
5499 <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver">
5500 <summary>
5501 Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id.
5502 </summary>
5503 </member>
5504 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor">
5505 <summary>
5506 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class.
5507 </summary>
5508 </member>
5509 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)">
5510 <summary>
5511 Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.
5512 </summary>
5513 <param name="id">The id.</param>
5514 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.</returns>
5515 </member>
5516 <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas">
5517 <summary>
5518 Gets or sets the loaded schemas.
5519 </summary>
5520 <value>The loaded schemas.</value>
5521 </member>
5522 <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling">
5523 <summary>
5524 Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>.
5525 </summary>
5526 </member>
5527 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None">
5528 <summary>
5529 Do not infer a schema Id.
5530 </summary>
5531 </member>
5532 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName">
5533 <summary>
5534 Use the .NET type name as the schema Id.
5535 </summary>
5536 </member>
5537 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName">
5538 <summary>
5539 Use the assembly qualified .NET type name as the schema Id.
5540 </summary>
5541 </member>
5542 <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs">
5543 <summary>
5544 Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>.
5545 </summary>
5546 </member>
5547 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception">
5548 <summary>
5549 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation event.
5550 </summary>
5551 <value>The JsonSchemaException associated with the validation event.</value>
5552 </member>
5553 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message">
5554 <summary>
5555 Gets the text description corresponding to the validation event.
5556 </summary>
5557 <value>The text description.</value>
5558 </member>
5559 <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler">
5560 <summary>
5561 Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>.
5562 </summary>
5563 </member>
5564 <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver">
5565 <summary>
5566 Resolves member mappings for a type, camel casing property names.
5567 </summary>
5568 </member>
5569 <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver">
5570 <summary>
5571 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"/>.
5572 </summary>
5573 </member>
5574 <member name="T:Newtonsoft.Json.Serialization.IContractResolver">
5575 <summary>
5576 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"/>.
5577 </summary>
5578 </member>
5579 <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)">
5580 <summary>
5581 Resolves the contract for a given type.
5582 </summary>
5583 <param name="type">The type to resolve a contract for.</param>
5584 <returns>The contract for a given type.</returns>
5585 </member>
5586 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor">
5587 <summary>
5588 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
5589 </summary>
5590 </member>
5591 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)">
5592 <summary>
5593 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class.
5594 </summary>
5595 <param name="shareCache">
5596 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.
5597 Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
5598 behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
5599 recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5600 </param>
5601 </member>
5602 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)">
5603 <summary>
5604 Resolves the contract for a given type.
5605 </summary>
5606 <param name="type">The type to resolve a contract for.</param>
5607 <returns>The contract for a given type.</returns>
5608 </member>
5609 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)">
5610 <summary>
5611 Gets the serializable members for the type.
5612 </summary>
5613 <param name="objectType">The type to get serializable members for.</param>
5614 <returns>The serializable members for the type.</returns>
5615 </member>
5616 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)">
5617 <summary>
5618 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.
5619 </summary>
5620 <param name="objectType">Type of the object.</param>
5621 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns>
5622 </member>
5623 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)">
5624 <summary>
5625 Creates the constructor parameters.
5626 </summary>
5627 <param name="constructor">The constructor to create properties for.</param>
5628 <param name="memberProperties">The type's member properties.</param>
5629 <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns>
5630 </member>
5631 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)">
5632 <summary>
5633 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.
5634 </summary>
5635 <param name="matchingMemberProperty">The matching member property.</param>
5636 <param name="parameterInfo">The constructor parameter.</param>
5637 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns>
5638 </member>
5639 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)">
5640 <summary>
5641 Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract.
5642 </summary>
5643 <param name="objectType">Type of the object.</param>
5644 <returns></returns>
5645 </member>
5646 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)">
5647 <summary>
5648 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.
5649 </summary>
5650 <param name="objectType">Type of the object.</param>
5651 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns>
5652 </member>
5653 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)">
5654 <summary>
5655 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.
5656 </summary>
5657 <param name="objectType">Type of the object.</param>
5658 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns>
5659 </member>
5660 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)">
5661 <summary>
5662 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.
5663 </summary>
5664 <param name="objectType">Type of the object.</param>
5665 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns>
5666 </member>
5667 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)">
5668 <summary>
5669 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.
5670 </summary>
5671 <param name="objectType">Type of the object.</param>
5672 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns>
5673 </member>
5674 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)">
5675 <summary>
5676 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.
5677 </summary>
5678 <param name="objectType">Type of the object.</param>
5679 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns>
5680 </member>
5681 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)">
5682 <summary>
5683 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.
5684 </summary>
5685 <param name="objectType">Type of the object.</param>
5686 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns>
5687 </member>
5688 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)">
5689 <summary>
5690 Determines which contract type is created for the given type.
5691 </summary>
5692 <param name="objectType">Type of the object.</param>
5693 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns>
5694 </member>
5695 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)">
5696 <summary>
5697 Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.
5698 </summary>
5699 <param name="type">The type to create properties for.</param>
5700 /// <param name="memberSerialization">The member serialization mode for the type.</param>
5701 <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns>
5702 </member>
5703 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)">
5704 <summary>
5705 Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.
5706 </summary>
5707 <param name="member">The member.</param>
5708 <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns>
5709 </member>
5710 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
5711 <summary>
5712 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.
5713 </summary>
5714 <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param>
5715 <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param>
5716 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns>
5717 </member>
5718 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)">
5719 <summary>
5720 Resolves the name of the property.
5721 </summary>
5722 <param name="propertyName">Name of the property.</param>
5723 <returns>Name of the property.</returns>
5724 </member>
5725 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration">
5726 <summary>
5727 Gets a value indicating whether members are being get and set using dynamic code generation.
5728 This value is determined by the runtime permissions available.
5729 </summary>
5730 <value>
5731 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>.
5732 </value>
5733 </member>
5734 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags">
5735 <summary>
5736 Gets or sets the default members search flags.
5737 </summary>
5738 <value>The default members search flags.</value>
5739 </member>
5740 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers">
5741 <summary>
5742 Gets or sets a value indicating whether compiler generated members should be serialized.
5743 </summary>
5744 <value>
5745 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.
5746 </value>
5747 </member>
5748 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor">
5749 <summary>
5750 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class.
5751 </summary>
5752 </member>
5753 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)">
5754 <summary>
5755 Resolves the name of the property.
5756 </summary>
5757 <param name="propertyName">Name of the property.</param>
5758 <returns>The property name camel cased.</returns>
5759 </member>
5760 <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder">
5761 <summary>
5762 The default serialization binder used when resolving and loading classes from type names.
5763 </summary>
5764 </member>
5765 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)">
5766 <summary>
5767 When overridden in a derived class, controls the binding of a serialized object to a type.
5768 </summary>
5769 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param>
5770 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param>
5771 <returns>
5772 The type of the object the formatter creates a new instance of.
5773 </returns>
5774 </member>
5775 <member name="T:Newtonsoft.Json.Serialization.ErrorContext">
5776 <summary>
5777 Provides information surrounding an error.
5778 </summary>
5779 </member>
5780 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error">
5781 <summary>
5782 Gets or sets the error.
5783 </summary>
5784 <value>The error.</value>
5785 </member>
5786 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject">
5787 <summary>
5788 Gets the original object that caused the error.
5789 </summary>
5790 <value>The original object that caused the error.</value>
5791 </member>
5792 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member">
5793 <summary>
5794 Gets the member that caused the error.
5795 </summary>
5796 <value>The member that caused the error.</value>
5797 </member>
5798 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled">
5799 <summary>
5800 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled.
5801 </summary>
5802 <value><c>true</c> if handled; otherwise, <c>false</c>.</value>
5803 </member>
5804 <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract">
5805 <summary>
5806 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5807 </summary>
5808 </member>
5809 <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)">
5810 <summary>
5811 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class.
5812 </summary>
5813 <param name="underlyingType">The underlying type for the contract.</param>
5814 </member>
5815 <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract">
5816 <summary>
5817 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
5818 </summary>
5819 </member>
5820 <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)">
5821 <summary>
5822 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class.
5823 </summary>
5824 <param name="underlyingType">The underlying type for the contract.</param>
5825 </member>
5826 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver">
5827 <summary>
5828 Gets or sets the property name resolver.
5829 </summary>
5830 <value>The property name resolver.</value>
5831 </member>
5832 <member name="T:Newtonsoft.Json.Serialization.JsonProperty">
5833 <summary>
5834 Maps a JSON property to a .NET member or constructor parameter.
5835 </summary>
5836 </member>
5837 <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString">
5838 <summary>
5839 Returns a <see cref="T:System.String"/> that represents this instance.
5840 </summary>
5841 <returns>
5842 A <see cref="T:System.String"/> that represents this instance.
5843 </returns>
5844 </member>
5845 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName">
5846 <summary>
5847 Gets or sets the name of the property.
5848 </summary>
5849 <value>The name of the property.</value>
5850 </member>
5851 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType">
5852 <summary>
5853 Gets or sets the type that declared this property.
5854 </summary>
5855 <value>The type that declared this property.</value>
5856 </member>
5857 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order">
5858 <summary>
5859 Gets or sets the order of serialization and deserialization of a member.
5860 </summary>
5861 <value>The numeric order of serialization or deserialization.</value>
5862 </member>
5863 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName">
5864 <summary>
5865 Gets or sets the name of the underlying member or parameter.
5866 </summary>
5867 <value>The name of the underlying member or parameter.</value>
5868 </member>
5869 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider">
5870 <summary>
5871 Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization.
5872 </summary>
5873 <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>
5874 </member>
5875 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType">
5876 <summary>
5877 Gets or sets the type of the property.
5878 </summary>
5879 <value>The type of the property.</value>
5880 </member>
5881 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter">
5882 <summary>
5883 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property.
5884 If set this converter takes presidence over the contract converter for the property type.
5885 </summary>
5886 <value>The converter.</value>
5887 </member>
5888 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter">
5889 <summary>
5890 Gets the member converter.
5891 </summary>
5892 <value>The member converter.</value>
5893 </member>
5894 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored">
5895 <summary>
5896 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored.
5897 </summary>
5898 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
5899 </member>
5900 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable">
5901 <summary>
5902 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable.
5903 </summary>
5904 <value><c>true</c> if readable; otherwise, <c>false</c>.</value>
5905 </member>
5906 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable">
5907 <summary>
5908 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable.
5909 </summary>
5910 <value><c>true</c> if writable; otherwise, <c>false</c>.</value>
5911 </member>
5912 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue">
5913 <summary>
5914 Gets the default value.
5915 </summary>
5916 <value>The default value.</value>
5917 </member>
5918 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required">
5919 <summary>
5920 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.
5921 </summary>
5922 <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value>
5923 </member>
5924 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference">
5925 <summary>
5926 Gets a value indicating whether this property preserves object references.
5927 </summary>
5928 <value>
5929 <c>true</c> if this instance is reference; otherwise, <c>false</c>.
5930 </value>
5931 </member>
5932 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling">
5933 <summary>
5934 Gets the property null value handling.
5935 </summary>
5936 <value>The null value handling.</value>
5937 </member>
5938 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling">
5939 <summary>
5940 Gets the property default value handling.
5941 </summary>
5942 <value>The default value handling.</value>
5943 </member>
5944 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling">
5945 <summary>
5946 Gets the property reference loop handling.
5947 </summary>
5948 <value>The reference loop handling.</value>
5949 </member>
5950 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling">
5951 <summary>
5952 Gets the property object creation handling.
5953 </summary>
5954 <value>The object creation handling.</value>
5955 </member>
5956 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling">
5957 <summary>
5958 Gets or sets the type name handling.
5959 </summary>
5960 <value>The type name handling.</value>
5961 </member>
5962 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize">
5963 <summary>
5964 Gets or sets a predicate used to determine whether the property should be serialize.
5965 </summary>
5966 <value>A predicate used to determine whether the property should be serialize.</value>
5967 </member>
5968 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified">
5969 <summary>
5970 Gets or sets a predicate used to determine whether the property should be serialized.
5971 </summary>
5972 <value>A predicate used to determine whether the property should be serialized.</value>
5973 </member>
5974 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified">
5975 <summary>
5976 Gets or sets an action used to set whether the property has been deserialized.
5977 </summary>
5978 <value>An action used to set whether the property has been deserialized.</value>
5979 </member>
5980 <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection">
5981 <summary>
5982 A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects.
5983 </summary>
5984 </member>
5985 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)">
5986 <summary>
5987 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class.
5988 </summary>
5989 <param name="type">The type.</param>
5990 </member>
5991 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)">
5992 <summary>
5993 When implemented in a derived class, extracts the key from the specified element.
5994 </summary>
5995 <param name="item">The element from which to extract the key.</param>
5996 <returns>The key for the specified element.</returns>
5997 </member>
5998 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)">
5999 <summary>
6000 Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
6001 </summary>
6002 <param name="property">The property to add to the collection.</param>
6003 </member>
6004 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)">
6005 <summary>
6006 Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object.
6007 First attempts to get an exact case match of propertyName and then
6008 a case insensitive match.
6009 </summary>
6010 <param name="propertyName">Name of the property.</param>
6011 <returns>A matching property if found.</returns>
6012 </member>
6013 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)">
6014 <summary>
6015 Gets a property by property name.
6016 </summary>
6017 <param name="propertyName">The name of the property to get.</param>
6018 <param name="comparisonType">Type property name string comparison.</param>
6019 <returns>A matching property if found.</returns>
6020 </member>
6021 <member name="T:Newtonsoft.Json.MissingMemberHandling">
6022 <summary>
6023 Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6024 </summary>
6025 </member>
6026 <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore">
6027 <summary>
6028 Ignore a missing member and do not attempt to deserialize it.
6029 </summary>
6030 </member>
6031 <member name="F:Newtonsoft.Json.MissingMemberHandling.Error">
6032 <summary>
6033 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization.
6034 </summary>
6035 </member>
6036 <member name="T:Newtonsoft.Json.NullValueHandling">
6037 <summary>
6038 Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6039 </summary>
6040 </member>
6041 <member name="F:Newtonsoft.Json.NullValueHandling.Include">
6042 <summary>
6043 Include null values when serializing and deserializing objects.
6044 </summary>
6045 </member>
6046 <member name="F:Newtonsoft.Json.NullValueHandling.Ignore">
6047 <summary>
6048 Ignore null values when serializing and deserializing objects.
6049 </summary>
6050 </member>
6051 <member name="T:Newtonsoft.Json.ReferenceLoopHandling">
6052 <summary>
6053 Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6054 </summary>
6055 </member>
6056 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error">
6057 <summary>
6058 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered.
6059 </summary>
6060 </member>
6061 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore">
6062 <summary>
6063 Ignore loop references and do not serialize.
6064 </summary>
6065 </member>
6066 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize">
6067 <summary>
6068 Serialize loop references.
6069 </summary>
6070 </member>
6071 <member name="T:Newtonsoft.Json.Schema.JsonSchema">
6072 <summary>
6073 An in-memory representation of a JSON Schema.
6074 </summary>
6075 </member>
6076 <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor">
6077 <summary>
6078 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class.
6079 </summary>
6080 </member>
6081 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)">
6082 <summary>
6083 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6084 </summary>
6085 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6086 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6087 </member>
6088 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6089 <summary>
6090 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.
6091 </summary>
6092 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param>
6093 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param>
6094 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns>
6095 </member>
6096 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)">
6097 <summary>
6098 Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON.
6099 </summary>
6100 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param>
6101 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6102 </member>
6103 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6104 <summary>
6105 Parses the specified json.
6106 </summary>
6107 <param name="json">The json.</param>
6108 <param name="resolver">The resolver.</param>
6109 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns>
6110 </member>
6111 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)">
6112 <summary>
6113 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6114 </summary>
6115 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6116 </member>
6117 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6118 <summary>
6119 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>.
6120 </summary>
6121 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param>
6122 <param name="resolver">The resolver used.</param>
6123 </member>
6124 <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString">
6125 <summary>
6126 Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6127 </summary>
6128 <returns>
6129 A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
6130 </returns>
6131 </member>
6132 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id">
6133 <summary>
6134 Gets or sets the id.
6135 </summary>
6136 </member>
6137 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title">
6138 <summary>
6139 Gets or sets the title.
6140 </summary>
6141 </member>
6142 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required">
6143 <summary>
6144 Gets or sets whether the object is required.
6145 </summary>
6146 </member>
6147 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly">
6148 <summary>
6149 Gets or sets whether the object is read only.
6150 </summary>
6151 </member>
6152 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden">
6153 <summary>
6154 Gets or sets whether the object is visible to users.
6155 </summary>
6156 </member>
6157 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient">
6158 <summary>
6159 Gets or sets whether the object is transient.
6160 </summary>
6161 </member>
6162 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description">
6163 <summary>
6164 Gets or sets the description of the object.
6165 </summary>
6166 </member>
6167 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type">
6168 <summary>
6169 Gets or sets the types of values allowed by the object.
6170 </summary>
6171 <value>The type.</value>
6172 </member>
6173 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern">
6174 <summary>
6175 Gets or sets the pattern.
6176 </summary>
6177 <value>The pattern.</value>
6178 </member>
6179 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength">
6180 <summary>
6181 Gets or sets the minimum length.
6182 </summary>
6183 <value>The minimum length.</value>
6184 </member>
6185 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength">
6186 <summary>
6187 Gets or sets the maximum length.
6188 </summary>
6189 <value>The maximum length.</value>
6190 </member>
6191 <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy">
6192 <summary>
6193 Gets or sets a number that the value should be divisble by.
6194 </summary>
6195 <value>A number that the value should be divisble by.</value>
6196 </member>
6197 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum">
6198 <summary>
6199 Gets or sets the minimum.
6200 </summary>
6201 <value>The minimum.</value>
6202 </member>
6203 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum">
6204 <summary>
6205 Gets or sets the maximum.
6206 </summary>
6207 <value>The maximum.</value>
6208 </member>
6209 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum">
6210 <summary>
6211 Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
6212 </summary>
6213 <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value>
6214 </member>
6215 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum">
6216 <summary>
6217 Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
6218 </summary>
6219 <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value>
6220 </member>
6221 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems">
6222 <summary>
6223 Gets or sets the minimum number of items.
6224 </summary>
6225 <value>The minimum number of items.</value>
6226 </member>
6227 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems">
6228 <summary>
6229 Gets or sets the maximum number of items.
6230 </summary>
6231 <value>The maximum number of items.</value>
6232 </member>
6233 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items">
6234 <summary>
6235 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.
6236 </summary>
6237 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value>
6238 </member>
6239 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties">
6240 <summary>
6241 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.
6242 </summary>
6243 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value>
6244 </member>
6245 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties">
6246 <summary>
6247 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.
6248 </summary>
6249 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value>
6250 </member>
6251 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties">
6252 <summary>
6253 Gets or sets the pattern properties.
6254 </summary>
6255 <value>The pattern properties.</value>
6256 </member>
6257 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties">
6258 <summary>
6259 Gets or sets a value indicating whether additional properties are allowed.
6260 </summary>
6261 <value>
6262 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>.
6263 </value>
6264 </member>
6265 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires">
6266 <summary>
6267 Gets or sets the required property if this property is present.
6268 </summary>
6269 <value>The required property if this property is present.</value>
6270 </member>
6271 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Identity">
6272 <summary>
6273 Gets or sets the identity.
6274 </summary>
6275 <value>The identity.</value>
6276 </member>
6277 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum">
6278 <summary>
6279 Gets or sets the a collection of valid enum values allowed.
6280 </summary>
6281 <value>A collection of valid enum values allowed.</value>
6282 </member>
6283 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Options">
6284 <summary>
6285 Gets or sets a collection of options.
6286 </summary>
6287 <value>A collection of options.</value>
6288 </member>
6289 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow">
6290 <summary>
6291 Gets or sets disallowed types.
6292 </summary>
6293 <value>The disallow types.</value>
6294 </member>
6295 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default">
6296 <summary>
6297 Gets or sets the default value.
6298 </summary>
6299 <value>The default value.</value>
6300 </member>
6301 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends">
6302 <summary>
6303 Gets or sets the extend <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
6304 </summary>
6305 <value>The extended <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.</value>
6306 </member>
6307 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format">
6308 <summary>
6309 Gets or sets the format.
6310 </summary>
6311 <value>The format.</value>
6312 </member>
6313 <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator">
6314 <summary>
6315 Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>.
6316 </summary>
6317 </member>
6318 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)">
6319 <summary>
6320 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6321 </summary>
6322 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6323 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6324 </member>
6325 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)">
6326 <summary>
6327 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6328 </summary>
6329 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6330 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
6331 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6332 </member>
6333 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)">
6334 <summary>
6335 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6336 </summary>
6337 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6338 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
6339 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6340 </member>
6341 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)">
6342 <summary>
6343 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type.
6344 </summary>
6345 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param>
6346 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param>
6347 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param>
6348 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns>
6349 </member>
6350 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling">
6351 <summary>
6352 Gets or sets how undefined schemas are handled by the serializer.
6353 </summary>
6354 </member>
6355 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver">
6356 <summary>
6357 Gets or sets the contract resolver.
6358 </summary>
6359 <value>The contract resolver.</value>
6360 </member>
6361 <member name="T:Newtonsoft.Json.Schema.JsonSchemaType">
6362 <summary>
6363 The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.
6364 </summary>
6365 </member>
6366 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None">
6367 <summary>
6368 No type specified.
6369 </summary>
6370 </member>
6371 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String">
6372 <summary>
6373 String type.
6374 </summary>
6375 </member>
6376 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float">
6377 <summary>
6378 Float type.
6379 </summary>
6380 </member>
6381 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer">
6382 <summary>
6383 Integer type.
6384 </summary>
6385 </member>
6386 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean">
6387 <summary>
6388 Boolean type.
6389 </summary>
6390 </member>
6391 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object">
6392 <summary>
6393 Object type.
6394 </summary>
6395 </member>
6396 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array">
6397 <summary>
6398 Array type.
6399 </summary>
6400 </member>
6401 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null">
6402 <summary>
6403 Null type.
6404 </summary>
6405 </member>
6406 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any">
6407 <summary>
6408 Any type.
6409 </summary>
6410 </member>
6411 <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract">
6412 <summary>
6413 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6414 </summary>
6415 </member>
6416 <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)">
6417 <summary>
6418 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class.
6419 </summary>
6420 <param name="underlyingType">The underlying type for the contract.</param>
6421 </member>
6422 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization">
6423 <summary>
6424 Gets or sets the object member serialization.
6425 </summary>
6426 <value>The member object serialization.</value>
6427 </member>
6428 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties">
6429 <summary>
6430 Gets the object's properties.
6431 </summary>
6432 <value>The object's properties.</value>
6433 </member>
6434 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters">
6435 <summary>
6436 Gets the constructor parameters required for any non-default constructor
6437 </summary>
6438 </member>
6439 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor">
6440 <summary>
6441 Gets or sets the override constructor used to create the object.
6442 This is set when a constructor is marked up using the
6443 JsonConstructor attribute.
6444 </summary>
6445 <value>The override constructor.</value>
6446 </member>
6447 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor">
6448 <summary>
6449 Gets or sets the parametrized constructor used to create the object.
6450 </summary>
6451 <value>The parametrized constructor.</value>
6452 </member>
6453 <member name="T:Newtonsoft.Json.Serialization.JsonStringContract">
6454 <summary>
6455 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6456 </summary>
6457 </member>
6458 <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)">
6459 <summary>
6460 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class.
6461 </summary>
6462 <param name="underlyingType">The underlying type for the contract.</param>
6463 </member>
6464 <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider">
6465 <summary>
6466 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection.
6467 </summary>
6468 </member>
6469 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)">
6470 <summary>
6471 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class.
6472 </summary>
6473 <param name="memberInfo">The member info.</param>
6474 </member>
6475 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)">
6476 <summary>
6477 Sets the value.
6478 </summary>
6479 <param name="target">The target to set the value on.</param>
6480 <param name="value">The value to set on the target.</param>
6481 </member>
6482 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)">
6483 <summary>
6484 Gets the value.
6485 </summary>
6486 <param name="target">The target to get the value from.</param>
6487 <returns>The value.</returns>
6488 </member>
6489 <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute">
6490 <summary>
6491 When applied to a method, specifies that the method is called when an error occurs serializing an object.
6492 </summary>
6493 </member>
6494 <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1">
6495 <summary>
6496 Represents a method that constructs an object.
6497 </summary>
6498 </member>
6499 <member name="T:Newtonsoft.Json.TypeNameHandling">
6500 <summary>
6501 Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
6502 </summary>
6503 </member>
6504 <member name="F:Newtonsoft.Json.TypeNameHandling.None">
6505 <summary>
6506 Do not include the .NET type name when serializing types.
6507 </summary>
6508 </member>
6509 <member name="F:Newtonsoft.Json.TypeNameHandling.Objects">
6510 <summary>
6511 Include the .NET type name when serializing into a JSON object structure.
6512 </summary>
6513 </member>
6514 <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays">
6515 <summary>
6516 Include the .NET type name when serializing into a JSON array structure.
6517 </summary>
6518 </member>
6519 <member name="F:Newtonsoft.Json.TypeNameHandling.Auto">
6520 <summary>
6521 Include the .NET type name when the type of the object being serialized is not the same as its declared type.
6522 </summary>
6523 </member>
6524 <member name="F:Newtonsoft.Json.TypeNameHandling.All">
6525 <summary>
6526 Always include the .NET type name when serializing.
6527 </summary>
6528 </member>
6529 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)">
6530 <summary>
6531 Converts the value to the specified type.
6532 </summary>
6533 <param name="initialValue">The value to convert.</param>
6534 <param name="culture">The culture to use when converting.</param>
6535 <param name="targetType">The type to convert the value to.</param>
6536 <returns>The converted type.</returns>
6537 </member>
6538 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)">
6539 <summary>
6540 Converts the value to the specified type.
6541 </summary>
6542 <param name="initialValue">The value to convert.</param>
6543 <param name="culture">The culture to use when converting.</param>
6544 <param name="targetType">The type to convert the value to.</param>
6545 <param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>
6546 <returns>
6547 <c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.
6548 </returns>
6549 </member>
6550 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)">
6551 <summary>
6552 Converts the value to the specified type. If the value is unable to be converted, the
6553 value is checked whether it assignable to the specified type.
6554 </summary>
6555 <param name="initialValue">The value to convert.</param>
6556 <param name="culture">The culture to use when converting.</param>
6557 <param name="targetType">The type to convert or cast the value to.</param>
6558 <returns>
6559 The converted type. If conversion was unsuccessful, the initial value
6560 is returned if assignable to the target type.
6561 </returns>
6562 </member>
6563 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1">
6564 <summary>
6565 Gets a dictionary of the names and values of an Enum type.
6566 </summary>
6567 <returns></returns>
6568 </member>
6569 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)">
6570 <summary>
6571 Gets a dictionary of the names and values of an Enum type.
6572 </summary>
6573 <param name="enumType">The enum type to get names and values for.</param>
6574 <returns></returns>
6575 </member>
6576 <member name="T:Newtonsoft.Json.JsonToken">
6577 <summary>
6578 Specifies the type of Json token.
6579 </summary>
6580 </member>
6581 <member name="F:Newtonsoft.Json.JsonToken.None">
6582 <summary>
6583 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.
6584 </summary>
6585 </member>
6586 <member name="F:Newtonsoft.Json.JsonToken.StartObject">
6587 <summary>
6588 An object start token.
6589 </summary>
6590 </member>
6591 <member name="F:Newtonsoft.Json.JsonToken.StartArray">
6592 <summary>
6593 An array start token.
6594 </summary>
6595 </member>
6596 <member name="F:Newtonsoft.Json.JsonToken.StartConstructor">
6597 <summary>
6598 A constructor start token.
6599 </summary>
6600 </member>
6601 <member name="F:Newtonsoft.Json.JsonToken.PropertyName">
6602 <summary>
6603 An object property name.
6604 </summary>
6605 </member>
6606 <member name="F:Newtonsoft.Json.JsonToken.Comment">
6607 <summary>
6608 A comment.
6609 </summary>
6610 </member>
6611 <member name="F:Newtonsoft.Json.JsonToken.Raw">
6612 <summary>
6613 Raw JSON.
6614 </summary>
6615 </member>
6616 <member name="F:Newtonsoft.Json.JsonToken.Integer">
6617 <summary>
6618 An integer.
6619 </summary>
6620 </member>
6621 <member name="F:Newtonsoft.Json.JsonToken.Float">
6622 <summary>
6623 A float.
6624 </summary>
6625 </member>
6626 <member name="F:Newtonsoft.Json.JsonToken.String">
6627 <summary>
6628 A string.
6629 </summary>
6630 </member>
6631 <member name="F:Newtonsoft.Json.JsonToken.Boolean">
6632 <summary>
6633 A boolean.
6634 </summary>
6635 </member>
6636 <member name="F:Newtonsoft.Json.JsonToken.Null">
6637 <summary>
6638 A null token.
6639 </summary>
6640 </member>
6641 <member name="F:Newtonsoft.Json.JsonToken.Undefined">
6642 <summary>
6643 An undefined token.
6644 </summary>
6645 </member>
6646 <member name="F:Newtonsoft.Json.JsonToken.EndObject">
6647 <summary>
6648 An object end token.
6649 </summary>
6650 </member>
6651 <member name="F:Newtonsoft.Json.JsonToken.EndArray">
6652 <summary>
6653 An array end token.
6654 </summary>
6655 </member>
6656 <member name="F:Newtonsoft.Json.JsonToken.EndConstructor">
6657 <summary>
6658 A constructor end token.
6659 </summary>
6660 </member>
6661 <member name="F:Newtonsoft.Json.JsonToken.Date">
6662 <summary>
6663 A Date.
6664 </summary>
6665 </member>
6666 <member name="F:Newtonsoft.Json.JsonToken.Bytes">
6667 <summary>
6668 Byte data.
6669 </summary>
6670 </member>
6671 <member name="T:Newtonsoft.Json.WriteState">
6672 <summary>
6673 Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>.
6674 </summary>
6675 </member>
6676 <member name="F:Newtonsoft.Json.WriteState.Error">
6677 <summary>
6678 An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state.
6679 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.
6680 Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown.
6681 </summary>
6682 </member>
6683 <member name="F:Newtonsoft.Json.WriteState.Closed">
6684 <summary>
6685 The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called.
6686 </summary>
6687 </member>
6688 <member name="F:Newtonsoft.Json.WriteState.Object">
6689 <summary>
6690 An object is being written.
6691 </summary>
6692 </member>
6693 <member name="F:Newtonsoft.Json.WriteState.Array">
6694 <summary>
6695 A array is being written.
6696 </summary>
6697 </member>
6698 <member name="F:Newtonsoft.Json.WriteState.Constructor">
6699 <summary>
6700 A constructor is being written.
6701 </summary>
6702 </member>
6703 <member name="F:Newtonsoft.Json.WriteState.Property">
6704 <summary>
6705 A property is being written.
6706 </summary>
6707 </member>
6708 <member name="F:Newtonsoft.Json.WriteState.Start">
6709 <summary>
6710 A write method has not been called.
6711 </summary>
6712 </member>
6713 <member name="T:Newtonsoft.Json.Formatting">
6714 <summary>
6715 Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
6716 </summary>
6717 </member>
6718 <member name="F:Newtonsoft.Json.Formatting.None">
6719 <summary>
6720 No special formatting is applied. This is the default.
6721 </summary>
6722 </member>
6723 <member name="F:Newtonsoft.Json.Formatting.Indented">
6724 <summary>
6725 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.
6726 </summary>
6727 </member>
6728 <member name="T:Newtonsoft.Json.Utilities.StringBuffer">
6729 <summary>
6730 Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
6731 </summary>
6732 </member>
6733 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})">
6734 <summary>
6735 Determines whether the collection is null or empty.
6736 </summary>
6737 <param name="collection">The collection.</param>
6738 <returns>
6739 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>.
6740 </returns>
6741 </member>
6742 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})">
6743 <summary>
6744 Adds the elements of the specified collection to the specified generic IList.
6745 </summary>
6746 <param name="initial">The list to add to.</param>
6747 <param name="collection">The collection of elements to add.</param>
6748 </member>
6749 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
6750 <summary>
6751 Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
6752 </summary>
6753 <typeparam name="TSource">The type of the elements of source.</typeparam>
6754 <param name="list">A sequence in which to locate a value.</param>
6755 <param name="value">The object to locate in the sequence</param>
6756 <param name="comparer">An equality comparer to compare values.</param>
6757 <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>
6758 </member>
6759 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)">
6760 <summary>
6761 Gets the type of the typed collection's items.
6762 </summary>
6763 <param name="type">The type.</param>
6764 <returns>The type of the typed collection's items.</returns>
6765 </member>
6766 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)">
6767 <summary>
6768 Gets the member's underlying type.
6769 </summary>
6770 <param name="member">The member.</param>
6771 <returns>The underlying type of the member.</returns>
6772 </member>
6773 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)">
6774 <summary>
6775 Determines whether the member is an indexed property.
6776 </summary>
6777 <param name="member">The member.</param>
6778 <returns>
6779 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>.
6780 </returns>
6781 </member>
6782 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)">
6783 <summary>
6784 Determines whether the property is an indexed property.
6785 </summary>
6786 <param name="property">The property.</param>
6787 <returns>
6788 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
6789 </returns>
6790 </member>
6791 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)">
6792 <summary>
6793 Gets the member's value on the object.
6794 </summary>
6795 <param name="member">The member.</param>
6796 <param name="target">The target object.</param>
6797 <returns>The member's value on the object.</returns>
6798 </member>
6799 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)">
6800 <summary>
6801 Sets the member's value on the target object.
6802 </summary>
6803 <param name="member">The member.</param>
6804 <param name="target">The target.</param>
6805 <param name="value">The value.</param>
6806 </member>
6807 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)">
6808 <summary>
6809 Determines whether the specified MemberInfo can be read.
6810 </summary>
6811 <param name="member">The MemberInfo to determine whether can be read.</param>
6812 /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>
6813 <returns>
6814 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.
6815 </returns>
6816 </member>
6817 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)">
6818 <summary>
6819 Determines whether the specified MemberInfo can be set.
6820 </summary>
6821 <param name="member">The MemberInfo to determine whether can be set.</param>
6822 <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param>
6823 <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param>
6824 <returns>
6825 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.
6826 </returns>
6827 </member>
6828 <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)">
6829 <summary>
6830 Determines whether the string is all white space. Empty string will return false.
6831 </summary>
6832 <param name="s">The string to test whether it is all white space.</param>
6833 <returns>
6834 <c>true</c> if the string is all white space; otherwise, <c>false</c>.
6835 </returns>
6836 </member>
6837 <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)">
6838 <summary>
6839 Nulls an empty string.
6840 </summary>
6841 <param name="s">The string.</param>
6842 <returns>Null if the string was null, otherwise the string unchanged.</returns>
6843 </member>
6844 </members>
6845 </doc>