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