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