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