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