comparison MetroWpf/Libs/Newtonsoft.Json.4.0.8/lib/sl4/Newtonsoft.Json.xml @ 15:060f02cd4591

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