Mercurial > silverbladetech
comparison MetroWpf/Libs/Newtonsoft.Json.4.0.8/lib/net40/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.BsonReader"> | |
8 <summary> | |
9 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. | |
10 </summary> | |
11 </member> | |
12 <member name="T:Newtonsoft.Json.JsonReader"> | |
13 <summary> | |
14 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. | |
15 </summary> | |
16 </member> | |
17 <member name="M:Newtonsoft.Json.JsonReader.#ctor"> | |
18 <summary> | |
19 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>. | |
20 </summary> | |
21 </member> | |
22 <member name="M:Newtonsoft.Json.JsonReader.Read"> | |
23 <summary> | |
24 Reads the next JSON token from the stream. | |
25 </summary> | |
26 <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns> | |
27 </member> | |
28 <member name="M:Newtonsoft.Json.JsonReader.ReadAsInt32"> | |
29 <summary> | |
30 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
31 </summary> | |
32 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
33 </member> | |
34 <member name="M:Newtonsoft.Json.JsonReader.ReadAsBytes"> | |
35 <summary> | |
36 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. | |
37 </summary> | |
38 <returns>A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null.</returns> | |
39 </member> | |
40 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDecimal"> | |
41 <summary> | |
42 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
43 </summary> | |
44 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
45 </member> | |
46 <member name="M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset"> | |
47 <summary> | |
48 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
49 </summary> | |
50 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
51 </member> | |
52 <member name="M:Newtonsoft.Json.JsonReader.Skip"> | |
53 <summary> | |
54 Skips the children of the current token. | |
55 </summary> | |
56 </member> | |
57 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)"> | |
58 <summary> | |
59 Sets the current token. | |
60 </summary> | |
61 <param name="newToken">The new token.</param> | |
62 </member> | |
63 <member name="M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)"> | |
64 <summary> | |
65 Sets the current token and value. | |
66 </summary> | |
67 <param name="newToken">The new token.</param> | |
68 <param name="value">The value.</param> | |
69 </member> | |
70 <member name="M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent"> | |
71 <summary> | |
72 Sets the state based on current token type. | |
73 </summary> | |
74 </member> | |
75 <member name="M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose"> | |
76 <summary> | |
77 Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | |
78 </summary> | |
79 </member> | |
80 <member name="M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)"> | |
81 <summary> | |
82 Releases unmanaged and - optionally - managed resources | |
83 </summary> | |
84 <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param> | |
85 </member> | |
86 <member name="M:Newtonsoft.Json.JsonReader.Close"> | |
87 <summary> | |
88 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. | |
89 </summary> | |
90 </member> | |
91 <member name="P:Newtonsoft.Json.JsonReader.CurrentState"> | |
92 <summary> | |
93 Gets the current reader state. | |
94 </summary> | |
95 <value>The current reader state.</value> | |
96 </member> | |
97 <member name="P:Newtonsoft.Json.JsonReader.CloseInput"> | |
98 <summary> | |
99 Gets or sets a value indicating whether the underlying stream or | |
100 <see cref="T:System.IO.TextReader"/> should be closed when the reader is closed. | |
101 </summary> | |
102 <value> | |
103 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when | |
104 the reader is closed; otherwise false. The default is true. | |
105 </value> | |
106 </member> | |
107 <member name="P:Newtonsoft.Json.JsonReader.QuoteChar"> | |
108 <summary> | |
109 Gets the quotation mark character used to enclose the value of a string. | |
110 </summary> | |
111 </member> | |
112 <member name="P:Newtonsoft.Json.JsonReader.TokenType"> | |
113 <summary> | |
114 Gets the type of the current Json token. | |
115 </summary> | |
116 </member> | |
117 <member name="P:Newtonsoft.Json.JsonReader.Value"> | |
118 <summary> | |
119 Gets the text value of the current Json token. | |
120 </summary> | |
121 </member> | |
122 <member name="P:Newtonsoft.Json.JsonReader.ValueType"> | |
123 <summary> | |
124 Gets The Common Language Runtime (CLR) type for the current Json token. | |
125 </summary> | |
126 </member> | |
127 <member name="P:Newtonsoft.Json.JsonReader.Depth"> | |
128 <summary> | |
129 Gets the depth of the current token in the JSON document. | |
130 </summary> | |
131 <value>The depth of the current token in the JSON document.</value> | |
132 </member> | |
133 <member name="P:Newtonsoft.Json.JsonReader.Culture"> | |
134 <summary> | |
135 Gets or sets the culture used when reading JSON. Defaults to <see cref="P:System.Globalization.CultureInfo.InvariantCulture"/>. | |
136 </summary> | |
137 </member> | |
138 <member name="T:Newtonsoft.Json.JsonReader.State"> | |
139 <summary> | |
140 Specifies the state of the reader. | |
141 </summary> | |
142 </member> | |
143 <member name="F:Newtonsoft.Json.JsonReader.State.Start"> | |
144 <summary> | |
145 The Read method has not been called. | |
146 </summary> | |
147 </member> | |
148 <member name="F:Newtonsoft.Json.JsonReader.State.Complete"> | |
149 <summary> | |
150 The end of the file has been reached successfully. | |
151 </summary> | |
152 </member> | |
153 <member name="F:Newtonsoft.Json.JsonReader.State.Property"> | |
154 <summary> | |
155 Reader is at a property. | |
156 </summary> | |
157 </member> | |
158 <member name="F:Newtonsoft.Json.JsonReader.State.ObjectStart"> | |
159 <summary> | |
160 Reader is at the start of an object. | |
161 </summary> | |
162 </member> | |
163 <member name="F:Newtonsoft.Json.JsonReader.State.Object"> | |
164 <summary> | |
165 Reader is in an object. | |
166 </summary> | |
167 </member> | |
168 <member name="F:Newtonsoft.Json.JsonReader.State.ArrayStart"> | |
169 <summary> | |
170 Reader is at the start of an array. | |
171 </summary> | |
172 </member> | |
173 <member name="F:Newtonsoft.Json.JsonReader.State.Array"> | |
174 <summary> | |
175 Reader is in an array. | |
176 </summary> | |
177 </member> | |
178 <member name="F:Newtonsoft.Json.JsonReader.State.Closed"> | |
179 <summary> | |
180 The Close method has been called. | |
181 </summary> | |
182 </member> | |
183 <member name="F:Newtonsoft.Json.JsonReader.State.PostValue"> | |
184 <summary> | |
185 Reader has just read a value. | |
186 </summary> | |
187 </member> | |
188 <member name="F:Newtonsoft.Json.JsonReader.State.ConstructorStart"> | |
189 <summary> | |
190 Reader is at the start of a constructor. | |
191 </summary> | |
192 </member> | |
193 <member name="F:Newtonsoft.Json.JsonReader.State.Constructor"> | |
194 <summary> | |
195 Reader in a constructor. | |
196 </summary> | |
197 </member> | |
198 <member name="F:Newtonsoft.Json.JsonReader.State.Error"> | |
199 <summary> | |
200 An error occurred that prevents the read operation from continuing. | |
201 </summary> | |
202 </member> | |
203 <member name="F:Newtonsoft.Json.JsonReader.State.Finished"> | |
204 <summary> | |
205 The end of the file has been reached successfully. | |
206 </summary> | |
207 </member> | |
208 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)"> | |
209 <summary> | |
210 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. | |
211 </summary> | |
212 <param name="stream">The stream.</param> | |
213 </member> | |
214 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)"> | |
215 <summary> | |
216 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. | |
217 </summary> | |
218 <param name="reader">The reader.</param> | |
219 </member> | |
220 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)"> | |
221 <summary> | |
222 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. | |
223 </summary> | |
224 <param name="stream">The stream.</param> | |
225 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> | |
226 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> | |
227 </member> | |
228 <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)"> | |
229 <summary> | |
230 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class. | |
231 </summary> | |
232 <param name="reader">The reader.</param> | |
233 <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param> | |
234 <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</param> | |
235 </member> | |
236 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes"> | |
237 <summary> | |
238 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. | |
239 </summary> | |
240 <returns> | |
241 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. | |
242 </returns> | |
243 </member> | |
244 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal"> | |
245 <summary> | |
246 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
247 </summary> | |
248 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
249 </member> | |
250 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32"> | |
251 <summary> | |
252 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
253 </summary> | |
254 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
255 </member> | |
256 <member name="M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset"> | |
257 <summary> | |
258 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
259 </summary> | |
260 <returns> | |
261 A <see cref="T:System.Nullable`1"/>. | |
262 </returns> | |
263 </member> | |
264 <member name="M:Newtonsoft.Json.Bson.BsonReader.Read"> | |
265 <summary> | |
266 Reads the next JSON token from the stream. | |
267 </summary> | |
268 <returns> | |
269 true if the next token was read successfully; false if there are no more tokens to read. | |
270 </returns> | |
271 </member> | |
272 <member name="M:Newtonsoft.Json.Bson.BsonReader.Close"> | |
273 <summary> | |
274 Changes the <see cref="T:Newtonsoft.Json.JsonReader.State"/> to Closed. | |
275 </summary> | |
276 </member> | |
277 <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility"> | |
278 <summary> | |
279 Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. | |
280 </summary> | |
281 <value> | |
282 <c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>. | |
283 </value> | |
284 </member> | |
285 <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray"> | |
286 <summary> | |
287 Gets or sets a value indicating whether the root object will be read as a JSON array. | |
288 </summary> | |
289 <value> | |
290 <c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>. | |
291 </value> | |
292 </member> | |
293 <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling"> | |
294 <summary> | |
295 Gets or sets the <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON. | |
296 </summary> | |
297 <value>The <see cref="T:System.DateTimeKind"/> used when reading <see cref="T:System.DateTime"/> values from BSON.</value> | |
298 </member> | |
299 <member name="T:Newtonsoft.Json.Bson.BsonWriter"> | |
300 <summary> | |
301 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. | |
302 </summary> | |
303 </member> | |
304 <member name="T:Newtonsoft.Json.JsonWriter"> | |
305 <summary> | |
306 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. | |
307 </summary> | |
308 </member> | |
309 <member name="M:Newtonsoft.Json.JsonWriter.#ctor"> | |
310 <summary> | |
311 Creates an instance of the <c>JsonWriter</c> class. | |
312 </summary> | |
313 </member> | |
314 <member name="M:Newtonsoft.Json.JsonWriter.Flush"> | |
315 <summary> | |
316 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. | |
317 </summary> | |
318 </member> | |
319 <member name="M:Newtonsoft.Json.JsonWriter.Close"> | |
320 <summary> | |
321 Closes this stream and the underlying stream. | |
322 </summary> | |
323 </member> | |
324 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartObject"> | |
325 <summary> | |
326 Writes the beginning of a Json object. | |
327 </summary> | |
328 </member> | |
329 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndObject"> | |
330 <summary> | |
331 Writes the end of a Json object. | |
332 </summary> | |
333 </member> | |
334 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartArray"> | |
335 <summary> | |
336 Writes the beginning of a Json array. | |
337 </summary> | |
338 </member> | |
339 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndArray"> | |
340 <summary> | |
341 Writes the end of an array. | |
342 </summary> | |
343 </member> | |
344 <member name="M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)"> | |
345 <summary> | |
346 Writes the start of a constructor with the given name. | |
347 </summary> | |
348 <param name="name">The name of the constructor.</param> | |
349 </member> | |
350 <member name="M:Newtonsoft.Json.JsonWriter.WriteEndConstructor"> | |
351 <summary> | |
352 Writes the end constructor. | |
353 </summary> | |
354 </member> | |
355 <member name="M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)"> | |
356 <summary> | |
357 Writes the property name of a name/value pair on a Json object. | |
358 </summary> | |
359 <param name="name">The name of the property.</param> | |
360 </member> | |
361 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd"> | |
362 <summary> | |
363 Writes the end of the current Json object or array. | |
364 </summary> | |
365 </member> | |
366 <member name="M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)"> | |
367 <summary> | |
368 Writes the current <see cref="T:Newtonsoft.Json.JsonReader"/> token. | |
369 </summary> | |
370 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read the token from.</param> | |
371 </member> | |
372 <member name="M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)"> | |
373 <summary> | |
374 Writes the specified end token. | |
375 </summary> | |
376 <param name="token">The end token to write.</param> | |
377 </member> | |
378 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndent"> | |
379 <summary> | |
380 Writes indent characters. | |
381 </summary> | |
382 </member> | |
383 <member name="M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter"> | |
384 <summary> | |
385 Writes the JSON value delimiter. | |
386 </summary> | |
387 </member> | |
388 <member name="M:Newtonsoft.Json.JsonWriter.WriteIndentSpace"> | |
389 <summary> | |
390 Writes an indent space. | |
391 </summary> | |
392 </member> | |
393 <member name="M:Newtonsoft.Json.JsonWriter.WriteNull"> | |
394 <summary> | |
395 Writes a null value. | |
396 </summary> | |
397 </member> | |
398 <member name="M:Newtonsoft.Json.JsonWriter.WriteUndefined"> | |
399 <summary> | |
400 Writes an undefined value. | |
401 </summary> | |
402 </member> | |
403 <member name="M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)"> | |
404 <summary> | |
405 Writes raw JSON without changing the writer's state. | |
406 </summary> | |
407 <param name="json">The raw JSON to write.</param> | |
408 </member> | |
409 <member name="M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)"> | |
410 <summary> | |
411 Writes raw JSON where a value is expected and updates the writer's state. | |
412 </summary> | |
413 <param name="json">The raw JSON to write.</param> | |
414 </member> | |
415 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)"> | |
416 <summary> | |
417 Writes a <see cref="T:System.String"/> value. | |
418 </summary> | |
419 <param name="value">The <see cref="T:System.String"/> value to write.</param> | |
420 </member> | |
421 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)"> | |
422 <summary> | |
423 Writes a <see cref="T:System.Int32"/> value. | |
424 </summary> | |
425 <param name="value">The <see cref="T:System.Int32"/> value to write.</param> | |
426 </member> | |
427 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)"> | |
428 <summary> | |
429 Writes a <see cref="T:System.UInt32"/> value. | |
430 </summary> | |
431 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> | |
432 </member> | |
433 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)"> | |
434 <summary> | |
435 Writes a <see cref="T:System.Int64"/> value. | |
436 </summary> | |
437 <param name="value">The <see cref="T:System.Int64"/> value to write.</param> | |
438 </member> | |
439 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)"> | |
440 <summary> | |
441 Writes a <see cref="T:System.UInt64"/> value. | |
442 </summary> | |
443 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> | |
444 </member> | |
445 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)"> | |
446 <summary> | |
447 Writes a <see cref="T:System.Single"/> value. | |
448 </summary> | |
449 <param name="value">The <see cref="T:System.Single"/> value to write.</param> | |
450 </member> | |
451 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)"> | |
452 <summary> | |
453 Writes a <see cref="T:System.Double"/> value. | |
454 </summary> | |
455 <param name="value">The <see cref="T:System.Double"/> value to write.</param> | |
456 </member> | |
457 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)"> | |
458 <summary> | |
459 Writes a <see cref="T:System.Boolean"/> value. | |
460 </summary> | |
461 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> | |
462 </member> | |
463 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)"> | |
464 <summary> | |
465 Writes a <see cref="T:System.Int16"/> value. | |
466 </summary> | |
467 <param name="value">The <see cref="T:System.Int16"/> value to write.</param> | |
468 </member> | |
469 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)"> | |
470 <summary> | |
471 Writes a <see cref="T:System.UInt16"/> value. | |
472 </summary> | |
473 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param> | |
474 </member> | |
475 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)"> | |
476 <summary> | |
477 Writes a <see cref="T:System.Char"/> value. | |
478 </summary> | |
479 <param name="value">The <see cref="T:System.Char"/> value to write.</param> | |
480 </member> | |
481 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)"> | |
482 <summary> | |
483 Writes a <see cref="T:System.Byte"/> value. | |
484 </summary> | |
485 <param name="value">The <see cref="T:System.Byte"/> value to write.</param> | |
486 </member> | |
487 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)"> | |
488 <summary> | |
489 Writes a <see cref="T:System.SByte"/> value. | |
490 </summary> | |
491 <param name="value">The <see cref="T:System.SByte"/> value to write.</param> | |
492 </member> | |
493 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)"> | |
494 <summary> | |
495 Writes a <see cref="T:System.Decimal"/> value. | |
496 </summary> | |
497 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> | |
498 </member> | |
499 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)"> | |
500 <summary> | |
501 Writes a <see cref="T:System.DateTime"/> value. | |
502 </summary> | |
503 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> | |
504 </member> | |
505 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)"> | |
506 <summary> | |
507 Writes a <see cref="T:System.DateTimeOffset"/> value. | |
508 </summary> | |
509 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> | |
510 </member> | |
511 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)"> | |
512 <summary> | |
513 Writes a <see cref="T:System.Guid"/> value. | |
514 </summary> | |
515 <param name="value">The <see cref="T:System.Guid"/> value to write.</param> | |
516 </member> | |
517 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)"> | |
518 <summary> | |
519 Writes a <see cref="T:System.TimeSpan"/> value. | |
520 </summary> | |
521 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> | |
522 </member> | |
523 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})"> | |
524 <summary> | |
525 Writes a <see cref="T:System.Nullable`1"/> value. | |
526 </summary> | |
527 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
528 </member> | |
529 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})"> | |
530 <summary> | |
531 Writes a <see cref="T:System.Nullable`1"/> value. | |
532 </summary> | |
533 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
534 </member> | |
535 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})"> | |
536 <summary> | |
537 Writes a <see cref="T:System.Nullable`1"/> value. | |
538 </summary> | |
539 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
540 </member> | |
541 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})"> | |
542 <summary> | |
543 Writes a <see cref="T:System.Nullable`1"/> value. | |
544 </summary> | |
545 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
546 </member> | |
547 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})"> | |
548 <summary> | |
549 Writes a <see cref="T:System.Nullable`1"/> value. | |
550 </summary> | |
551 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
552 </member> | |
553 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})"> | |
554 <summary> | |
555 Writes a <see cref="T:System.Nullable`1"/> value. | |
556 </summary> | |
557 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
558 </member> | |
559 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})"> | |
560 <summary> | |
561 Writes a <see cref="T:System.Nullable`1"/> value. | |
562 </summary> | |
563 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
564 </member> | |
565 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})"> | |
566 <summary> | |
567 Writes a <see cref="T:System.Nullable`1"/> value. | |
568 </summary> | |
569 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
570 </member> | |
571 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})"> | |
572 <summary> | |
573 Writes a <see cref="T:System.Nullable`1"/> value. | |
574 </summary> | |
575 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
576 </member> | |
577 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})"> | |
578 <summary> | |
579 Writes a <see cref="T:System.Nullable`1"/> value. | |
580 </summary> | |
581 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
582 </member> | |
583 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})"> | |
584 <summary> | |
585 Writes a <see cref="T:System.Nullable`1"/> value. | |
586 </summary> | |
587 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
588 </member> | |
589 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})"> | |
590 <summary> | |
591 Writes a <see cref="T:System.Nullable`1"/> value. | |
592 </summary> | |
593 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
594 </member> | |
595 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})"> | |
596 <summary> | |
597 Writes a <see cref="T:System.Nullable`1"/> value. | |
598 </summary> | |
599 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
600 </member> | |
601 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})"> | |
602 <summary> | |
603 Writes a <see cref="T:System.Nullable`1"/> value. | |
604 </summary> | |
605 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
606 </member> | |
607 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})"> | |
608 <summary> | |
609 Writes a <see cref="T:System.Nullable`1"/> value. | |
610 </summary> | |
611 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
612 </member> | |
613 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})"> | |
614 <summary> | |
615 Writes a <see cref="T:System.Nullable`1"/> value. | |
616 </summary> | |
617 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
618 </member> | |
619 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})"> | |
620 <summary> | |
621 Writes a <see cref="T:System.Nullable`1"/> value. | |
622 </summary> | |
623 <param name="value">The <see cref="T:System.Nullable`1"/> value to write.</param> | |
624 </member> | |
625 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])"> | |
626 <summary> | |
627 Writes a <see cref="T:Byte[]"/> value. | |
628 </summary> | |
629 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> | |
630 </member> | |
631 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)"> | |
632 <summary> | |
633 Writes a <see cref="T:System.Uri"/> value. | |
634 </summary> | |
635 <param name="value">The <see cref="T:System.Uri"/> value to write.</param> | |
636 </member> | |
637 <member name="M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)"> | |
638 <summary> | |
639 Writes a <see cref="T:System.Object"/> value. | |
640 An error will raised if the value cannot be written as a single JSON token. | |
641 </summary> | |
642 <param name="value">The <see cref="T:System.Object"/> value to write.</param> | |
643 </member> | |
644 <member name="M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)"> | |
645 <summary> | |
646 Writes out a comment <code>/*...*/</code> containing the specified text. | |
647 </summary> | |
648 <param name="text">Text to place inside the comment.</param> | |
649 </member> | |
650 <member name="M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)"> | |
651 <summary> | |
652 Writes out the given white space. | |
653 </summary> | |
654 <param name="ws">The string of white space characters.</param> | |
655 </member> | |
656 <member name="P:Newtonsoft.Json.JsonWriter.CloseOutput"> | |
657 <summary> | |
658 Gets or sets a value indicating whether the underlying stream or | |
659 <see cref="T:System.IO.TextReader"/> should be closed when the writer is closed. | |
660 </summary> | |
661 <value> | |
662 true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when | |
663 the writer is closed; otherwise false. The default is true. | |
664 </value> | |
665 </member> | |
666 <member name="P:Newtonsoft.Json.JsonWriter.Top"> | |
667 <summary> | |
668 Gets the top. | |
669 </summary> | |
670 <value>The top.</value> | |
671 </member> | |
672 <member name="P:Newtonsoft.Json.JsonWriter.WriteState"> | |
673 <summary> | |
674 Gets the state of the writer. | |
675 </summary> | |
676 </member> | |
677 <member name="P:Newtonsoft.Json.JsonWriter.Formatting"> | |
678 <summary> | |
679 Indicates how the output is formatted. | |
680 </summary> | |
681 </member> | |
682 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)"> | |
683 <summary> | |
684 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class. | |
685 </summary> | |
686 <param name="stream">The stream.</param> | |
687 </member> | |
688 <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)"> | |
689 <summary> | |
690 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class. | |
691 </summary> | |
692 <param name="writer">The writer.</param> | |
693 </member> | |
694 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush"> | |
695 <summary> | |
696 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. | |
697 </summary> | |
698 </member> | |
699 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)"> | |
700 <summary> | |
701 Writes the end. | |
702 </summary> | |
703 <param name="token">The token.</param> | |
704 </member> | |
705 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)"> | |
706 <summary> | |
707 Writes out a comment <code>/*...*/</code> containing the specified text. | |
708 </summary> | |
709 <param name="text">Text to place inside the comment.</param> | |
710 </member> | |
711 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)"> | |
712 <summary> | |
713 Writes the start of a constructor with the given name. | |
714 </summary> | |
715 <param name="name">The name of the constructor.</param> | |
716 </member> | |
717 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)"> | |
718 <summary> | |
719 Writes raw JSON. | |
720 </summary> | |
721 <param name="json">The raw JSON to write.</param> | |
722 </member> | |
723 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)"> | |
724 <summary> | |
725 Writes raw JSON where a value is expected and updates the writer's state. | |
726 </summary> | |
727 <param name="json">The raw JSON to write.</param> | |
728 </member> | |
729 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray"> | |
730 <summary> | |
731 Writes the beginning of a Json array. | |
732 </summary> | |
733 </member> | |
734 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject"> | |
735 <summary> | |
736 Writes the beginning of a Json object. | |
737 </summary> | |
738 </member> | |
739 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)"> | |
740 <summary> | |
741 Writes the property name of a name/value pair on a Json object. | |
742 </summary> | |
743 <param name="name">The name of the property.</param> | |
744 </member> | |
745 <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close"> | |
746 <summary> | |
747 Closes this stream and the underlying stream. | |
748 </summary> | |
749 </member> | |
750 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull"> | |
751 <summary> | |
752 Writes a null value. | |
753 </summary> | |
754 </member> | |
755 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined"> | |
756 <summary> | |
757 Writes an undefined value. | |
758 </summary> | |
759 </member> | |
760 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)"> | |
761 <summary> | |
762 Writes a <see cref="T:System.String"/> value. | |
763 </summary> | |
764 <param name="value">The <see cref="T:System.String"/> value to write.</param> | |
765 </member> | |
766 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)"> | |
767 <summary> | |
768 Writes a <see cref="T:System.Int32"/> value. | |
769 </summary> | |
770 <param name="value">The <see cref="T:System.Int32"/> value to write.</param> | |
771 </member> | |
772 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)"> | |
773 <summary> | |
774 Writes a <see cref="T:System.UInt32"/> value. | |
775 </summary> | |
776 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> | |
777 </member> | |
778 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)"> | |
779 <summary> | |
780 Writes a <see cref="T:System.Int64"/> value. | |
781 </summary> | |
782 <param name="value">The <see cref="T:System.Int64"/> value to write.</param> | |
783 </member> | |
784 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)"> | |
785 <summary> | |
786 Writes a <see cref="T:System.UInt64"/> value. | |
787 </summary> | |
788 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> | |
789 </member> | |
790 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)"> | |
791 <summary> | |
792 Writes a <see cref="T:System.Single"/> value. | |
793 </summary> | |
794 <param name="value">The <see cref="T:System.Single"/> value to write.</param> | |
795 </member> | |
796 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)"> | |
797 <summary> | |
798 Writes a <see cref="T:System.Double"/> value. | |
799 </summary> | |
800 <param name="value">The <see cref="T:System.Double"/> value to write.</param> | |
801 </member> | |
802 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)"> | |
803 <summary> | |
804 Writes a <see cref="T:System.Boolean"/> value. | |
805 </summary> | |
806 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> | |
807 </member> | |
808 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)"> | |
809 <summary> | |
810 Writes a <see cref="T:System.Int16"/> value. | |
811 </summary> | |
812 <param name="value">The <see cref="T:System.Int16"/> value to write.</param> | |
813 </member> | |
814 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)"> | |
815 <summary> | |
816 Writes a <see cref="T:System.UInt16"/> value. | |
817 </summary> | |
818 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param> | |
819 </member> | |
820 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)"> | |
821 <summary> | |
822 Writes a <see cref="T:System.Char"/> value. | |
823 </summary> | |
824 <param name="value">The <see cref="T:System.Char"/> value to write.</param> | |
825 </member> | |
826 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)"> | |
827 <summary> | |
828 Writes a <see cref="T:System.Byte"/> value. | |
829 </summary> | |
830 <param name="value">The <see cref="T:System.Byte"/> value to write.</param> | |
831 </member> | |
832 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)"> | |
833 <summary> | |
834 Writes a <see cref="T:System.SByte"/> value. | |
835 </summary> | |
836 <param name="value">The <see cref="T:System.SByte"/> value to write.</param> | |
837 </member> | |
838 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)"> | |
839 <summary> | |
840 Writes a <see cref="T:System.Decimal"/> value. | |
841 </summary> | |
842 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> | |
843 </member> | |
844 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)"> | |
845 <summary> | |
846 Writes a <see cref="T:System.DateTime"/> value. | |
847 </summary> | |
848 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> | |
849 </member> | |
850 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)"> | |
851 <summary> | |
852 Writes a <see cref="T:System.DateTimeOffset"/> value. | |
853 </summary> | |
854 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> | |
855 </member> | |
856 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])"> | |
857 <summary> | |
858 Writes a <see cref="T:Byte[]"/> value. | |
859 </summary> | |
860 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> | |
861 </member> | |
862 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)"> | |
863 <summary> | |
864 Writes a <see cref="T:System.Guid"/> value. | |
865 </summary> | |
866 <param name="value">The <see cref="T:System.Guid"/> value to write.</param> | |
867 </member> | |
868 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)"> | |
869 <summary> | |
870 Writes a <see cref="T:System.TimeSpan"/> value. | |
871 </summary> | |
872 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> | |
873 </member> | |
874 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)"> | |
875 <summary> | |
876 Writes a <see cref="T:System.Uri"/> value. | |
877 </summary> | |
878 <param name="value">The <see cref="T:System.Uri"/> value to write.</param> | |
879 </member> | |
880 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])"> | |
881 <summary> | |
882 Writes a <see cref="T:Byte[]"/> value that represents a BSON object id. | |
883 </summary> | |
884 <param name="value"></param> | |
885 </member> | |
886 <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)"> | |
887 <summary> | |
888 Writes a BSON regex. | |
889 </summary> | |
890 <param name="pattern">The regex pattern.</param> | |
891 <param name="options">The regex options.</param> | |
892 </member> | |
893 <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling"> | |
894 <summary> | |
895 Gets or sets the <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON. | |
896 When set to <see cref="F:System.DateTimeKind.Unspecified"/> no conversion will occur. | |
897 </summary> | |
898 <value>The <see cref="T:System.DateTimeKind"/> used when writing <see cref="T:System.DateTime"/> values to BSON.</value> | |
899 </member> | |
900 <member name="T:Newtonsoft.Json.Bson.BsonObjectId"> | |
901 <summary> | |
902 Represents a BSON Oid (object id). | |
903 </summary> | |
904 </member> | |
905 <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])"> | |
906 <summary> | |
907 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class. | |
908 </summary> | |
909 <param name="value">The Oid value.</param> | |
910 </member> | |
911 <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value"> | |
912 <summary> | |
913 Gets or sets the value of the Oid. | |
914 </summary> | |
915 <value>The value of the Oid.</value> | |
916 </member> | |
917 <member name="T:Newtonsoft.Json.Converters.BinaryConverter"> | |
918 <summary> | |
919 Converts a binary value to and from a base 64 string value. | |
920 </summary> | |
921 </member> | |
922 <member name="T:Newtonsoft.Json.JsonConverter"> | |
923 <summary> | |
924 Converts an object to and from JSON. | |
925 </summary> | |
926 </member> | |
927 <member name="M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
928 <summary> | |
929 Writes the JSON representation of the object. | |
930 </summary> | |
931 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
932 <param name="value">The value.</param> | |
933 <param name="serializer">The calling serializer.</param> | |
934 </member> | |
935 <member name="M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
936 <summary> | |
937 Reads the JSON representation of the object. | |
938 </summary> | |
939 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
940 <param name="objectType">Type of the object.</param> | |
941 <param name="existingValue">The existing value of object being read.</param> | |
942 <param name="serializer">The calling serializer.</param> | |
943 <returns>The object value.</returns> | |
944 </member> | |
945 <member name="M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)"> | |
946 <summary> | |
947 Determines whether this instance can convert the specified object type. | |
948 </summary> | |
949 <param name="objectType">Type of the object.</param> | |
950 <returns> | |
951 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
952 </returns> | |
953 </member> | |
954 <member name="M:Newtonsoft.Json.JsonConverter.GetSchema"> | |
955 <summary> | |
956 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter. | |
957 </summary> | |
958 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of the JSON produced by the JsonConverter.</returns> | |
959 </member> | |
960 <member name="P:Newtonsoft.Json.JsonConverter.CanRead"> | |
961 <summary> | |
962 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON. | |
963 </summary> | |
964 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can read JSON; otherwise, <c>false</c>.</value> | |
965 </member> | |
966 <member name="P:Newtonsoft.Json.JsonConverter.CanWrite"> | |
967 <summary> | |
968 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON. | |
969 </summary> | |
970 <value><c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.</value> | |
971 </member> | |
972 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
973 <summary> | |
974 Writes the JSON representation of the object. | |
975 </summary> | |
976 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
977 <param name="value">The value.</param> | |
978 <param name="serializer">The calling serializer.</param> | |
979 </member> | |
980 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
981 <summary> | |
982 Reads the JSON representation of the object. | |
983 </summary> | |
984 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
985 <param name="objectType">Type of the object.</param> | |
986 <param name="existingValue">The existing value of object being read.</param> | |
987 <param name="serializer">The calling serializer.</param> | |
988 <returns>The object value.</returns> | |
989 </member> | |
990 <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)"> | |
991 <summary> | |
992 Determines whether this instance can convert the specified object type. | |
993 </summary> | |
994 <param name="objectType">Type of the object.</param> | |
995 <returns> | |
996 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
997 </returns> | |
998 </member> | |
999 <member name="T:Newtonsoft.Json.Converters.DataSetConverter"> | |
1000 <summary> | |
1001 Converts a <see cref="T:System.Data.DataSet"/> to and from JSON. | |
1002 </summary> | |
1003 </member> | |
1004 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1005 <summary> | |
1006 Writes the JSON representation of the object. | |
1007 </summary> | |
1008 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1009 <param name="value">The value.</param> | |
1010 <param name="serializer">The calling serializer.</param> | |
1011 </member> | |
1012 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1013 <summary> | |
1014 Reads the JSON representation of the object. | |
1015 </summary> | |
1016 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1017 <param name="objectType">Type of the object.</param> | |
1018 <param name="existingValue">The existing value of object being read.</param> | |
1019 <param name="serializer">The calling serializer.</param> | |
1020 <returns>The object value.</returns> | |
1021 </member> | |
1022 <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)"> | |
1023 <summary> | |
1024 Determines whether this instance can convert the specified value type. | |
1025 </summary> | |
1026 <param name="valueType">Type of the value.</param> | |
1027 <returns> | |
1028 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. | |
1029 </returns> | |
1030 </member> | |
1031 <member name="T:Newtonsoft.Json.Converters.DataTableConverter"> | |
1032 <summary> | |
1033 Converts a <see cref="T:System.Data.DataTable"/> to and from JSON. | |
1034 </summary> | |
1035 </member> | |
1036 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1037 <summary> | |
1038 Writes the JSON representation of the object. | |
1039 </summary> | |
1040 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1041 <param name="value">The value.</param> | |
1042 <param name="serializer">The calling serializer.</param> | |
1043 </member> | |
1044 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1045 <summary> | |
1046 Reads the JSON representation of the object. | |
1047 </summary> | |
1048 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1049 <param name="objectType">Type of the object.</param> | |
1050 <param name="existingValue">The existing value of object being read.</param> | |
1051 <param name="serializer">The calling serializer.</param> | |
1052 <returns>The object value.</returns> | |
1053 </member> | |
1054 <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)"> | |
1055 <summary> | |
1056 Determines whether this instance can convert the specified value type. | |
1057 </summary> | |
1058 <param name="valueType">Type of the value.</param> | |
1059 <returns> | |
1060 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. | |
1061 </returns> | |
1062 </member> | |
1063 <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1"> | |
1064 <summary> | |
1065 Create a custom object | |
1066 </summary> | |
1067 <typeparam name="T"></typeparam> | |
1068 </member> | |
1069 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1070 <summary> | |
1071 Writes the JSON representation of the object. | |
1072 </summary> | |
1073 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1074 <param name="value">The value.</param> | |
1075 <param name="serializer">The calling serializer.</param> | |
1076 </member> | |
1077 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1078 <summary> | |
1079 Reads the JSON representation of the object. | |
1080 </summary> | |
1081 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1082 <param name="objectType">Type of the object.</param> | |
1083 <param name="existingValue">The existing value of object being read.</param> | |
1084 <param name="serializer">The calling serializer.</param> | |
1085 <returns>The object value.</returns> | |
1086 </member> | |
1087 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)"> | |
1088 <summary> | |
1089 Creates an object which will then be populated by the serializer. | |
1090 </summary> | |
1091 <param name="objectType">Type of the object.</param> | |
1092 <returns></returns> | |
1093 </member> | |
1094 <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)"> | |
1095 <summary> | |
1096 Determines whether this instance can convert the specified object type. | |
1097 </summary> | |
1098 <param name="objectType">Type of the object.</param> | |
1099 <returns> | |
1100 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1101 </returns> | |
1102 </member> | |
1103 <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite"> | |
1104 <summary> | |
1105 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON. | |
1106 </summary> | |
1107 <value> | |
1108 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>. | |
1109 </value> | |
1110 </member> | |
1111 <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase"> | |
1112 <summary> | |
1113 Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON. | |
1114 </summary> | |
1115 </member> | |
1116 <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)"> | |
1117 <summary> | |
1118 Determines whether this instance can convert the specified object type. | |
1119 </summary> | |
1120 <param name="objectType">Type of the object.</param> | |
1121 <returns> | |
1122 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1123 </returns> | |
1124 </member> | |
1125 <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter"> | |
1126 <summary> | |
1127 Converts an Entity Framework EntityKey to and from JSON. | |
1128 </summary> | |
1129 </member> | |
1130 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1131 <summary> | |
1132 Writes the JSON representation of the object. | |
1133 </summary> | |
1134 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1135 <param name="value">The value.</param> | |
1136 <param name="serializer">The calling serializer.</param> | |
1137 </member> | |
1138 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1139 <summary> | |
1140 Reads the JSON representation of the object. | |
1141 </summary> | |
1142 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1143 <param name="objectType">Type of the object.</param> | |
1144 <param name="existingValue">The existing value of object being read.</param> | |
1145 <param name="serializer">The calling serializer.</param> | |
1146 <returns>The object value.</returns> | |
1147 </member> | |
1148 <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)"> | |
1149 <summary> | |
1150 Determines whether this instance can convert the specified object type. | |
1151 </summary> | |
1152 <param name="objectType">Type of the object.</param> | |
1153 <returns> | |
1154 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1155 </returns> | |
1156 </member> | |
1157 <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter"> | |
1158 <summary> | |
1159 Converts an ExpandoObject to and from JSON. | |
1160 </summary> | |
1161 </member> | |
1162 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1163 <summary> | |
1164 Writes the JSON representation of the object. | |
1165 </summary> | |
1166 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1167 <param name="value">The value.</param> | |
1168 <param name="serializer">The calling serializer.</param> | |
1169 </member> | |
1170 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1171 <summary> | |
1172 Reads the JSON representation of the object. | |
1173 </summary> | |
1174 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1175 <param name="objectType">Type of the object.</param> | |
1176 <param name="existingValue">The existing value of object being read.</param> | |
1177 <param name="serializer">The calling serializer.</param> | |
1178 <returns>The object value.</returns> | |
1179 </member> | |
1180 <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)"> | |
1181 <summary> | |
1182 Determines whether this instance can convert the specified object type. | |
1183 </summary> | |
1184 <param name="objectType">Type of the object.</param> | |
1185 <returns> | |
1186 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1187 </returns> | |
1188 </member> | |
1189 <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite"> | |
1190 <summary> | |
1191 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON. | |
1192 </summary> | |
1193 <value> | |
1194 <c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>. | |
1195 </value> | |
1196 </member> | |
1197 <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter"> | |
1198 <summary> | |
1199 Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON. | |
1200 </summary> | |
1201 </member> | |
1202 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1203 <summary> | |
1204 Writes the JSON representation of the object. | |
1205 </summary> | |
1206 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1207 <param name="value">The value.</param> | |
1208 <param name="serializer">The calling serializer.</param> | |
1209 </member> | |
1210 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1211 <summary> | |
1212 Reads the JSON representation of the object. | |
1213 </summary> | |
1214 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1215 <param name="objectType">Type of the object.</param> | |
1216 <param name="existingValue">The existing value of object being read.</param> | |
1217 <param name="serializer">The calling serializer.</param> | |
1218 <returns>The object value.</returns> | |
1219 </member> | |
1220 <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)"> | |
1221 <summary> | |
1222 Determines whether this instance can convert the specified object type. | |
1223 </summary> | |
1224 <param name="objectType">Type of the object.</param> | |
1225 <returns> | |
1226 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1227 </returns> | |
1228 </member> | |
1229 <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter"> | |
1230 <summary> | |
1231 Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON. | |
1232 </summary> | |
1233 </member> | |
1234 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1235 <summary> | |
1236 Writes the JSON representation of the object. | |
1237 </summary> | |
1238 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1239 <param name="value">The value.</param> | |
1240 <param name="serializer">The calling serializer.</param> | |
1241 </member> | |
1242 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1243 <summary> | |
1244 Reads the JSON representation of the object. | |
1245 </summary> | |
1246 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1247 <param name="objectType">Type of the object.</param> | |
1248 <param name="existingValue">The existing value of object being read.</param> | |
1249 <param name="serializer">The calling serializer.</param> | |
1250 <returns>The object value.</returns> | |
1251 </member> | |
1252 <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)"> | |
1253 <summary> | |
1254 Determines whether this instance can convert the specified object type. | |
1255 </summary> | |
1256 <param name="objectType">Type of the object.</param> | |
1257 <returns> | |
1258 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1259 </returns> | |
1260 </member> | |
1261 <member name="T:Newtonsoft.Json.Converters.RegexConverter"> | |
1262 <summary> | |
1263 Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON. | |
1264 </summary> | |
1265 </member> | |
1266 <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1267 <summary> | |
1268 Writes the JSON representation of the object. | |
1269 </summary> | |
1270 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1271 <param name="value">The value.</param> | |
1272 <param name="serializer">The calling serializer.</param> | |
1273 </member> | |
1274 <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1275 <summary> | |
1276 Reads the JSON representation of the object. | |
1277 </summary> | |
1278 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1279 <param name="objectType">Type of the object.</param> | |
1280 <param name="existingValue">The existing value of object being read.</param> | |
1281 <param name="serializer">The calling serializer.</param> | |
1282 <returns>The object value.</returns> | |
1283 </member> | |
1284 <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)"> | |
1285 <summary> | |
1286 Determines whether this instance can convert the specified object type. | |
1287 </summary> | |
1288 <param name="objectType">Type of the object.</param> | |
1289 <returns> | |
1290 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1291 </returns> | |
1292 </member> | |
1293 <member name="T:Newtonsoft.Json.Converters.StringEnumConverter"> | |
1294 <summary> | |
1295 Converts an <see cref="T:System.Enum"/> to and from its name string value. | |
1296 </summary> | |
1297 <summary> | |
1298 Converts an <see cref="T:System.Enum"/> to and from its name string value. | |
1299 </summary> | |
1300 </member> | |
1301 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1302 <summary> | |
1303 Writes the JSON representation of the object. | |
1304 </summary> | |
1305 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1306 <param name="value">The value.</param> | |
1307 <param name="serializer">The calling serializer.</param> | |
1308 </member> | |
1309 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1310 <summary> | |
1311 Reads the JSON representation of the object. | |
1312 </summary> | |
1313 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1314 <param name="objectType">Type of the object.</param> | |
1315 <param name="existingValue">The existing value of object being read.</param> | |
1316 <param name="serializer">The calling serializer.</param> | |
1317 <returns>The object value.</returns> | |
1318 </member> | |
1319 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)"> | |
1320 <summary> | |
1321 A cached representation of the Enum string representation to respect per Enum field name. | |
1322 </summary> | |
1323 <param name="t">The type of the Enum.</param> | |
1324 <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> | |
1325 </member> | |
1326 <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)"> | |
1327 <summary> | |
1328 Determines whether this instance can convert the specified object type. | |
1329 </summary> | |
1330 <param name="objectType">Type of the object.</param> | |
1331 <returns> | |
1332 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1333 </returns> | |
1334 </member> | |
1335 <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText"> | |
1336 <summary> | |
1337 Gets or sets a value indicating whether the written enum text should be camel case. | |
1338 </summary> | |
1339 <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value> | |
1340 </member> | |
1341 <member name="T:Newtonsoft.Json.ConstructorHandling"> | |
1342 <summary> | |
1343 Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
1344 </summary> | |
1345 </member> | |
1346 <member name="F:Newtonsoft.Json.ConstructorHandling.Default"> | |
1347 <summary> | |
1348 First attempt to use the public default constructor then fall back to single paramatized constructor. | |
1349 </summary> | |
1350 </member> | |
1351 <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor"> | |
1352 <summary> | |
1353 Allow Json.NET to use a non-public default constructor. | |
1354 </summary> | |
1355 </member> | |
1356 <member name="T:Newtonsoft.Json.Converters.VersionConverter"> | |
1357 <summary> | |
1358 Converts a <see cref="T:System.Version"/> to and from a string (e.g. "1.2.3.4"). | |
1359 </summary> | |
1360 </member> | |
1361 <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1362 <summary> | |
1363 Writes the JSON representation of the object. | |
1364 </summary> | |
1365 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
1366 <param name="value">The value.</param> | |
1367 <param name="serializer">The calling serializer.</param> | |
1368 </member> | |
1369 <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1370 <summary> | |
1371 Reads the JSON representation of the object. | |
1372 </summary> | |
1373 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
1374 <param name="objectType">Type of the object.</param> | |
1375 <param name="existingValue">The existing property value of the JSON that is being converted.</param> | |
1376 <param name="serializer">The calling serializer.</param> | |
1377 <returns>The object value.</returns> | |
1378 </member> | |
1379 <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)"> | |
1380 <summary> | |
1381 Determines whether this instance can convert the specified object type. | |
1382 </summary> | |
1383 <param name="objectType">Type of the object.</param> | |
1384 <returns> | |
1385 <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. | |
1386 </returns> | |
1387 </member> | |
1388 <member name="T:Newtonsoft.Json.JsonConstructorAttribute"> | |
1389 <summary> | |
1390 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object. | |
1391 </summary> | |
1392 </member> | |
1393 <member name="T:Newtonsoft.Json.Linq.JRaw"> | |
1394 <summary> | |
1395 Represents a raw JSON string. | |
1396 </summary> | |
1397 </member> | |
1398 <member name="T:Newtonsoft.Json.Linq.JValue"> | |
1399 <summary> | |
1400 Represents a value in JSON (string, integer, date, etc). | |
1401 </summary> | |
1402 </member> | |
1403 <member name="T:Newtonsoft.Json.Linq.JToken"> | |
1404 <summary> | |
1405 Represents an abstract JSON token. | |
1406 </summary> | |
1407 </member> | |
1408 <member name="T:Newtonsoft.Json.Linq.IJEnumerable`1"> | |
1409 <summary> | |
1410 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects. | |
1411 </summary> | |
1412 <typeparam name="T">The type of token</typeparam> | |
1413 </member> | |
1414 <member name="P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)"> | |
1415 <summary> | |
1416 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key. | |
1417 </summary> | |
1418 <value></value> | |
1419 </member> | |
1420 <member name="T:Newtonsoft.Json.IJsonLineInfo"> | |
1421 <summary> | |
1422 Provides an interface to enable a class to return line and position information. | |
1423 </summary> | |
1424 </member> | |
1425 <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"> | |
1426 <summary> | |
1427 Gets a value indicating whether the class can return line information. | |
1428 </summary> | |
1429 <returns> | |
1430 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>. | |
1431 </returns> | |
1432 </member> | |
1433 <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"> | |
1434 <summary> | |
1435 Gets the current line number. | |
1436 </summary> | |
1437 <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value> | |
1438 </member> | |
1439 <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"> | |
1440 <summary> | |
1441 Gets the current line position. | |
1442 </summary> | |
1443 <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value> | |
1444 </member> | |
1445 <member name="M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)"> | |
1446 <summary> | |
1447 Compares the values of two tokens, including the values of all descendant tokens. | |
1448 </summary> | |
1449 <param name="t1">The first <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> | |
1450 <param name="t2">The second <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> | |
1451 <returns>true if the tokens are equal; otherwise false.</returns> | |
1452 </member> | |
1453 <member name="M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)"> | |
1454 <summary> | |
1455 Adds the specified content immediately after this token. | |
1456 </summary> | |
1457 <param name="content">A content object that contains simple content or a collection of content objects to be added after this token.</param> | |
1458 </member> | |
1459 <member name="M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)"> | |
1460 <summary> | |
1461 Adds the specified content immediately before this token. | |
1462 </summary> | |
1463 <param name="content">A content object that contains simple content or a collection of content objects to be added before this token.</param> | |
1464 </member> | |
1465 <member name="M:Newtonsoft.Json.Linq.JToken.Ancestors"> | |
1466 <summary> | |
1467 Returns a collection of the ancestor tokens of this token. | |
1468 </summary> | |
1469 <returns>A collection of the ancestor tokens of this token.</returns> | |
1470 </member> | |
1471 <member name="M:Newtonsoft.Json.Linq.JToken.AfterSelf"> | |
1472 <summary> | |
1473 Returns a collection of the sibling tokens after this token, in document order. | |
1474 </summary> | |
1475 <returns>A collection of the sibling tokens after this tokens, in document order.</returns> | |
1476 </member> | |
1477 <member name="M:Newtonsoft.Json.Linq.JToken.BeforeSelf"> | |
1478 <summary> | |
1479 Returns a collection of the sibling tokens before this token, in document order. | |
1480 </summary> | |
1481 <returns>A collection of the sibling tokens before this token, in document order.</returns> | |
1482 </member> | |
1483 <member name="M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)"> | |
1484 <summary> | |
1485 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key converted to the specified type. | |
1486 </summary> | |
1487 <typeparam name="T">The type to convert the token to.</typeparam> | |
1488 <param name="key">The token key.</param> | |
1489 <returns>The converted token value.</returns> | |
1490 </member> | |
1491 <member name="M:Newtonsoft.Json.Linq.JToken.Children"> | |
1492 <summary> | |
1493 Returns a collection of the child tokens of this token, in document order. | |
1494 </summary> | |
1495 <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> | |
1496 </member> | |
1497 <member name="M:Newtonsoft.Json.Linq.JToken.Children``1"> | |
1498 <summary> | |
1499 Returns a collection of the child tokens of this token, in document order, filtered by the specified type. | |
1500 </summary> | |
1501 <typeparam name="T">The type to filter the child tokens on.</typeparam> | |
1502 <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> | |
1503 </member> | |
1504 <member name="M:Newtonsoft.Json.Linq.JToken.Values``1"> | |
1505 <summary> | |
1506 Returns a collection of the child values of this token, in document order. | |
1507 </summary> | |
1508 <typeparam name="T">The type to convert the values to.</typeparam> | |
1509 <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> | |
1510 </member> | |
1511 <member name="M:Newtonsoft.Json.Linq.JToken.Remove"> | |
1512 <summary> | |
1513 Removes this token from its parent. | |
1514 </summary> | |
1515 </member> | |
1516 <member name="M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)"> | |
1517 <summary> | |
1518 Replaces this token with the specified token. | |
1519 </summary> | |
1520 <param name="value">The value.</param> | |
1521 </member> | |
1522 <member name="M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
1523 <summary> | |
1524 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
1525 </summary> | |
1526 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
1527 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
1528 </member> | |
1529 <member name="M:Newtonsoft.Json.Linq.JToken.ToString"> | |
1530 <summary> | |
1531 Returns the indented JSON for this token. | |
1532 </summary> | |
1533 <returns> | |
1534 The indented JSON for this token. | |
1535 </returns> | |
1536 </member> | |
1537 <member name="M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])"> | |
1538 <summary> | |
1539 Returns the JSON for this token using the given formatting and converters. | |
1540 </summary> | |
1541 <param name="formatting">Indicates how the output is formatted.</param> | |
1542 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
1543 <returns>The JSON for this token using the given formatting and converters.</returns> | |
1544 </member> | |
1545 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean"> | |
1546 <summary> | |
1547 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Boolean"/>. | |
1548 </summary> | |
1549 <param name="value">The value.</param> | |
1550 <returns>The result of the conversion.</returns> | |
1551 </member> | |
1552 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset"> | |
1553 <summary> | |
1554 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTimeOffset"/>. | |
1555 </summary> | |
1556 <param name="value">The value.</param> | |
1557 <returns>The result of the conversion.</returns> | |
1558 </member> | |
1559 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}"> | |
1560 <summary> | |
1561 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1562 </summary> | |
1563 <param name="value">The value.</param> | |
1564 <returns>The result of the conversion.</returns> | |
1565 </member> | |
1566 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64"> | |
1567 <summary> | |
1568 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int64"/>. | |
1569 </summary> | |
1570 <param name="value">The value.</param> | |
1571 <returns>The result of the conversion.</returns> | |
1572 </member> | |
1573 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}"> | |
1574 <summary> | |
1575 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1576 </summary> | |
1577 <param name="value">The value.</param> | |
1578 <returns>The result of the conversion.</returns> | |
1579 </member> | |
1580 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}"> | |
1581 <summary> | |
1582 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1583 </summary> | |
1584 <param name="value">The value.</param> | |
1585 <returns>The result of the conversion.</returns> | |
1586 </member> | |
1587 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}"> | |
1588 <summary> | |
1589 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1590 </summary> | |
1591 <param name="value">The value.</param> | |
1592 <returns>The result of the conversion.</returns> | |
1593 </member> | |
1594 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}"> | |
1595 <summary> | |
1596 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1597 </summary> | |
1598 <param name="value">The value.</param> | |
1599 <returns>The result of the conversion.</returns> | |
1600 </member> | |
1601 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32"> | |
1602 <summary> | |
1603 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int32"/>. | |
1604 </summary> | |
1605 <param name="value">The value.</param> | |
1606 <returns>The result of the conversion.</returns> | |
1607 </member> | |
1608 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16"> | |
1609 <summary> | |
1610 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Int16"/>. | |
1611 </summary> | |
1612 <param name="value">The value.</param> | |
1613 <returns>The result of the conversion.</returns> | |
1614 </member> | |
1615 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16"> | |
1616 <summary> | |
1617 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt16"/>. | |
1618 </summary> | |
1619 <param name="value">The value.</param> | |
1620 <returns>The result of the conversion.</returns> | |
1621 </member> | |
1622 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}"> | |
1623 <summary> | |
1624 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1625 </summary> | |
1626 <param name="value">The value.</param> | |
1627 <returns>The result of the conversion.</returns> | |
1628 </member> | |
1629 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}"> | |
1630 <summary> | |
1631 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1632 </summary> | |
1633 <param name="value">The value.</param> | |
1634 <returns>The result of the conversion.</returns> | |
1635 </member> | |
1636 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}"> | |
1637 <summary> | |
1638 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1639 </summary> | |
1640 <param name="value">The value.</param> | |
1641 <returns>The result of the conversion.</returns> | |
1642 </member> | |
1643 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime"> | |
1644 <summary> | |
1645 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.DateTime"/>. | |
1646 </summary> | |
1647 <param name="value">The value.</param> | |
1648 <returns>The result of the conversion.</returns> | |
1649 </member> | |
1650 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}"> | |
1651 <summary> | |
1652 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1653 </summary> | |
1654 <param name="value">The value.</param> | |
1655 <returns>The result of the conversion.</returns> | |
1656 </member> | |
1657 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}"> | |
1658 <summary> | |
1659 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1660 </summary> | |
1661 <param name="value">The value.</param> | |
1662 <returns>The result of the conversion.</returns> | |
1663 </member> | |
1664 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal"> | |
1665 <summary> | |
1666 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Decimal"/>. | |
1667 </summary> | |
1668 <param name="value">The value.</param> | |
1669 <returns>The result of the conversion.</returns> | |
1670 </member> | |
1671 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}"> | |
1672 <summary> | |
1673 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1674 </summary> | |
1675 <param name="value">The value.</param> | |
1676 <returns>The result of the conversion.</returns> | |
1677 </member> | |
1678 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}"> | |
1679 <summary> | |
1680 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Nullable`1"/>. | |
1681 </summary> | |
1682 <param name="value">The value.</param> | |
1683 <returns>The result of the conversion.</returns> | |
1684 </member> | |
1685 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double"> | |
1686 <summary> | |
1687 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Double"/>. | |
1688 </summary> | |
1689 <param name="value">The value.</param> | |
1690 <returns>The result of the conversion.</returns> | |
1691 </member> | |
1692 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single"> | |
1693 <summary> | |
1694 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Single"/>. | |
1695 </summary> | |
1696 <param name="value">The value.</param> | |
1697 <returns>The result of the conversion.</returns> | |
1698 </member> | |
1699 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String"> | |
1700 <summary> | |
1701 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.String"/>. | |
1702 </summary> | |
1703 <param name="value">The value.</param> | |
1704 <returns>The result of the conversion.</returns> | |
1705 </member> | |
1706 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32"> | |
1707 <summary> | |
1708 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt32"/>. | |
1709 </summary> | |
1710 <param name="value">The value.</param> | |
1711 <returns>The result of the conversion.</returns> | |
1712 </member> | |
1713 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64"> | |
1714 <summary> | |
1715 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.UInt64"/>. | |
1716 </summary> | |
1717 <param name="value">The value.</param> | |
1718 <returns>The result of the conversion.</returns> | |
1719 </member> | |
1720 <member name="M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]"> | |
1721 <summary> | |
1722 Performs an explicit conversion from <see cref="T:Newtonsoft.Json.Linq.JToken"/> to <see cref="T:System.Byte[]"/>. | |
1723 </summary> | |
1724 <param name="value">The value.</param> | |
1725 <returns>The result of the conversion.</returns> | |
1726 </member> | |
1727 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken"> | |
1728 <summary> | |
1729 Performs an implicit conversion from <see cref="T:System.Boolean"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1730 </summary> | |
1731 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1732 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1733 </member> | |
1734 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken"> | |
1735 <summary> | |
1736 Performs an implicit conversion from <see cref="T:System.DateTimeOffset"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1737 </summary> | |
1738 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1739 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1740 </member> | |
1741 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken"> | |
1742 <summary> | |
1743 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1744 </summary> | |
1745 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1746 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1747 </member> | |
1748 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken"> | |
1749 <summary> | |
1750 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1751 </summary> | |
1752 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1753 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1754 </member> | |
1755 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken"> | |
1756 <summary> | |
1757 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1758 </summary> | |
1759 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1760 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1761 </member> | |
1762 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken"> | |
1763 <summary> | |
1764 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1765 </summary> | |
1766 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1767 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1768 </member> | |
1769 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken"> | |
1770 <summary> | |
1771 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1772 </summary> | |
1773 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1774 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1775 </member> | |
1776 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken"> | |
1777 <summary> | |
1778 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1779 </summary> | |
1780 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1781 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1782 </member> | |
1783 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken"> | |
1784 <summary> | |
1785 Performs an implicit conversion from <see cref="T:System.Int16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1786 </summary> | |
1787 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1788 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1789 </member> | |
1790 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken"> | |
1791 <summary> | |
1792 Performs an implicit conversion from <see cref="T:System.UInt16"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1793 </summary> | |
1794 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1795 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1796 </member> | |
1797 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken"> | |
1798 <summary> | |
1799 Performs an implicit conversion from <see cref="T:System.Int32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1800 </summary> | |
1801 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1802 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1803 </member> | |
1804 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken"> | |
1805 <summary> | |
1806 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1807 </summary> | |
1808 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1809 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1810 </member> | |
1811 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken"> | |
1812 <summary> | |
1813 Performs an implicit conversion from <see cref="T:System.DateTime"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1814 </summary> | |
1815 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1816 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1817 </member> | |
1818 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken"> | |
1819 <summary> | |
1820 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1821 </summary> | |
1822 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1823 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1824 </member> | |
1825 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken"> | |
1826 <summary> | |
1827 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1828 </summary> | |
1829 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1830 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1831 </member> | |
1832 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken"> | |
1833 <summary> | |
1834 Performs an implicit conversion from <see cref="T:System.Decimal"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1835 </summary> | |
1836 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1837 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1838 </member> | |
1839 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken"> | |
1840 <summary> | |
1841 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1842 </summary> | |
1843 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1844 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1845 </member> | |
1846 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken"> | |
1847 <summary> | |
1848 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1849 </summary> | |
1850 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1851 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1852 </member> | |
1853 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken"> | |
1854 <summary> | |
1855 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1856 </summary> | |
1857 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1858 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1859 </member> | |
1860 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken"> | |
1861 <summary> | |
1862 Performs an implicit conversion from <see cref="T:System.Nullable`1"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1863 </summary> | |
1864 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1865 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1866 </member> | |
1867 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken"> | |
1868 <summary> | |
1869 Performs an implicit conversion from <see cref="T:System.Double"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1870 </summary> | |
1871 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1872 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1873 </member> | |
1874 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken"> | |
1875 <summary> | |
1876 Performs an implicit conversion from <see cref="T:System.Single"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1877 </summary> | |
1878 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1879 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1880 </member> | |
1881 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken"> | |
1882 <summary> | |
1883 Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1884 </summary> | |
1885 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1886 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1887 </member> | |
1888 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken"> | |
1889 <summary> | |
1890 Performs an implicit conversion from <see cref="T:System.UInt32"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1891 </summary> | |
1892 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1893 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1894 </member> | |
1895 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken"> | |
1896 <summary> | |
1897 Performs an implicit conversion from <see cref="T:System.UInt64"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1898 </summary> | |
1899 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1900 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1901 </member> | |
1902 <member name="M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken"> | |
1903 <summary> | |
1904 Performs an implicit conversion from <see cref="T:System.Byte[]"/> to <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1905 </summary> | |
1906 <param name="value">The value to create a <see cref="T:Newtonsoft.Json.Linq.JValue"/> from.</param> | |
1907 <returns>The <see cref="T:Newtonsoft.Json.Linq.JValue"/> initialized with the specified value.</returns> | |
1908 </member> | |
1909 <member name="M:Newtonsoft.Json.Linq.JToken.CreateReader"> | |
1910 <summary> | |
1911 Creates an <see cref="T:Newtonsoft.Json.JsonReader"/> for this token. | |
1912 </summary> | |
1913 <returns>An <see cref="T:Newtonsoft.Json.JsonReader"/> that can be used to read this token and its descendants.</returns> | |
1914 </member> | |
1915 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"> | |
1916 <summary> | |
1917 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object. | |
1918 </summary> | |
1919 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param> | |
1920 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns> | |
1921 </member> | |
1922 <member name="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> | |
1923 <summary> | |
1924 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from an object using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
1925 </summary> | |
1926 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</param> | |
1927 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when reading the object.</param> | |
1928 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the value of the specified object</returns> | |
1929 </member> | |
1930 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1"> | |
1931 <summary> | |
1932 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
1933 </summary> | |
1934 <returns>The new object created from the JSON value.</returns> | |
1935 </member> | |
1936 <member name="M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)"> | |
1937 <summary> | |
1938 Creates the specified .NET type from the <see cref="T:Newtonsoft.Json.Linq.JToken"/> using the specified <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
1939 </summary> | |
1940 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used when creating the object.</param> | |
1941 <returns>The new object created from the JSON value.</returns> | |
1942 </member> | |
1943 <member name="M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)"> | |
1944 <summary> | |
1945 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
1946 </summary> | |
1947 <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> | |
1948 <returns> | |
1949 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens | |
1950 that were read from the reader. The runtime type of the token is determined | |
1951 by the token type of the first token encountered in the reader. | |
1952 </returns> | |
1953 </member> | |
1954 <member name="M:Newtonsoft.Json.Linq.JToken.Parse(System.String)"> | |
1955 <summary> | |
1956 Load a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a string that contains JSON. | |
1957 </summary> | |
1958 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> | |
1959 <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> populated from the string that contains JSON.</returns> | |
1960 </member> | |
1961 <member name="M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)"> | |
1962 <summary> | |
1963 Creates a <see cref="T:Newtonsoft.Json.Linq.JToken"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
1964 </summary> | |
1965 <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> | |
1966 <returns> | |
1967 An <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the token and its descendant tokens | |
1968 that were read from the reader. The runtime type of the token is determined | |
1969 by the token type of the first token encountered in the reader. | |
1970 </returns> | |
1971 </member> | |
1972 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)"> | |
1973 <summary> | |
1974 Selects the token that matches the object path. | |
1975 </summary> | |
1976 <param name="path"> | |
1977 The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/> | |
1978 to be returned. This must be a string of property names or array indexes separated | |
1979 by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or | |
1980 <code>Tables(0).DefaultView(0).Price</code> in Visual Basic. | |
1981 </param> | |
1982 <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> | |
1983 </member> | |
1984 <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)"> | |
1985 <summary> | |
1986 Selects the token that matches the object path. | |
1987 </summary> | |
1988 <param name="path"> | |
1989 The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/> | |
1990 to be returned. This must be a string of property names or array indexes separated | |
1991 by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or | |
1992 <code>Tables(0).DefaultView(0).Price</code> in Visual Basic. | |
1993 </param> | |
1994 <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param> | |
1995 <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns> | |
1996 </member> | |
1997 <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)"> | |
1998 <summary> | |
1999 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. | |
2000 </summary> | |
2001 <param name="parameter">The expression tree representation of the runtime value.</param> | |
2002 <returns> | |
2003 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. | |
2004 </returns> | |
2005 </member> | |
2006 <member name="M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)"> | |
2007 <summary> | |
2008 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. | |
2009 </summary> | |
2010 <param name="parameter">The expression tree representation of the runtime value.</param> | |
2011 <returns> | |
2012 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. | |
2013 </returns> | |
2014 </member> | |
2015 <member name="M:Newtonsoft.Json.Linq.JToken.DeepClone"> | |
2016 <summary> | |
2017 Creates a new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. All child tokens are recursively cloned. | |
2018 </summary> | |
2019 <returns>A new instance of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns> | |
2020 </member> | |
2021 <member name="P:Newtonsoft.Json.Linq.JToken.EqualityComparer"> | |
2022 <summary> | |
2023 Gets a comparer that can compare two tokens for value equality. | |
2024 </summary> | |
2025 <value>A <see cref="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"/> that can compare two nodes for value equality.</value> | |
2026 </member> | |
2027 <member name="P:Newtonsoft.Json.Linq.JToken.Parent"> | |
2028 <summary> | |
2029 Gets or sets the parent. | |
2030 </summary> | |
2031 <value>The parent.</value> | |
2032 </member> | |
2033 <member name="P:Newtonsoft.Json.Linq.JToken.Root"> | |
2034 <summary> | |
2035 Gets the root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
2036 </summary> | |
2037 <value>The root <see cref="T:Newtonsoft.Json.Linq.JToken"/> of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value> | |
2038 </member> | |
2039 <member name="P:Newtonsoft.Json.Linq.JToken.Type"> | |
2040 <summary> | |
2041 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
2042 </summary> | |
2043 <value>The type.</value> | |
2044 </member> | |
2045 <member name="P:Newtonsoft.Json.Linq.JToken.HasValues"> | |
2046 <summary> | |
2047 Gets a value indicating whether this token has childen tokens. | |
2048 </summary> | |
2049 <value> | |
2050 <c>true</c> if this token has child values; otherwise, <c>false</c>. | |
2051 </value> | |
2052 </member> | |
2053 <member name="P:Newtonsoft.Json.Linq.JToken.Next"> | |
2054 <summary> | |
2055 Gets the next sibling token of this node. | |
2056 </summary> | |
2057 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the next sibling token.</value> | |
2058 </member> | |
2059 <member name="P:Newtonsoft.Json.Linq.JToken.Previous"> | |
2060 <summary> | |
2061 Gets the previous sibling token of this node. | |
2062 </summary> | |
2063 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that contains the previous sibling token.</value> | |
2064 </member> | |
2065 <member name="P:Newtonsoft.Json.Linq.JToken.Item(System.Object)"> | |
2066 <summary> | |
2067 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. | |
2068 </summary> | |
2069 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> | |
2070 </member> | |
2071 <member name="P:Newtonsoft.Json.Linq.JToken.First"> | |
2072 <summary> | |
2073 Get the first child token of this token. | |
2074 </summary> | |
2075 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value> | |
2076 </member> | |
2077 <member name="P:Newtonsoft.Json.Linq.JToken.Last"> | |
2078 <summary> | |
2079 Get the last child token of this token. | |
2080 </summary> | |
2081 <value>A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</value> | |
2082 </member> | |
2083 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)"> | |
2084 <summary> | |
2085 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class from another <see cref="T:Newtonsoft.Json.Linq.JValue"/> object. | |
2086 </summary> | |
2087 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JValue"/> object to copy from.</param> | |
2088 </member> | |
2089 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)"> | |
2090 <summary> | |
2091 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2092 </summary> | |
2093 <param name="value">The value.</param> | |
2094 </member> | |
2095 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)"> | |
2096 <summary> | |
2097 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2098 </summary> | |
2099 <param name="value">The value.</param> | |
2100 </member> | |
2101 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)"> | |
2102 <summary> | |
2103 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2104 </summary> | |
2105 <param name="value">The value.</param> | |
2106 </member> | |
2107 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)"> | |
2108 <summary> | |
2109 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2110 </summary> | |
2111 <param name="value">The value.</param> | |
2112 </member> | |
2113 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)"> | |
2114 <summary> | |
2115 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2116 </summary> | |
2117 <param name="value">The value.</param> | |
2118 </member> | |
2119 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)"> | |
2120 <summary> | |
2121 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2122 </summary> | |
2123 <param name="value">The value.</param> | |
2124 </member> | |
2125 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)"> | |
2126 <summary> | |
2127 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2128 </summary> | |
2129 <param name="value">The value.</param> | |
2130 </member> | |
2131 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)"> | |
2132 <summary> | |
2133 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2134 </summary> | |
2135 <param name="value">The value.</param> | |
2136 </member> | |
2137 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)"> | |
2138 <summary> | |
2139 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2140 </summary> | |
2141 <param name="value">The value.</param> | |
2142 </member> | |
2143 <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)"> | |
2144 <summary> | |
2145 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. | |
2146 </summary> | |
2147 <param name="value">The value.</param> | |
2148 </member> | |
2149 <member name="M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)"> | |
2150 <summary> | |
2151 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value. | |
2152 </summary> | |
2153 <param name="value">The value.</param> | |
2154 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> comment with the given value.</returns> | |
2155 </member> | |
2156 <member name="M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)"> | |
2157 <summary> | |
2158 Creates a <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value. | |
2159 </summary> | |
2160 <param name="value">The value.</param> | |
2161 <returns>A <see cref="T:Newtonsoft.Json.Linq.JValue"/> string with the given value.</returns> | |
2162 </member> | |
2163 <member name="M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
2164 <summary> | |
2165 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
2166 </summary> | |
2167 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
2168 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
2169 </member> | |
2170 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)"> | |
2171 <summary> | |
2172 Indicates whether the current object is equal to another object of the same type. | |
2173 </summary> | |
2174 <returns> | |
2175 true if the current object is equal to the <paramref name="other"/> parameter; otherwise, false. | |
2176 </returns> | |
2177 <param name="other">An object to compare with this object.</param> | |
2178 </member> | |
2179 <member name="M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)"> | |
2180 <summary> | |
2181 Determines whether the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>. | |
2182 </summary> | |
2183 <param name="obj">The <see cref="T:System.Object"/> to compare with the current <see cref="T:System.Object"/>.</param> | |
2184 <returns> | |
2185 true if the specified <see cref="T:System.Object"/> is equal to the current <see cref="T:System.Object"/>; otherwise, false. | |
2186 </returns> | |
2187 <exception cref="T:System.NullReferenceException"> | |
2188 The <paramref name="obj"/> parameter is null. | |
2189 </exception> | |
2190 </member> | |
2191 <member name="M:Newtonsoft.Json.Linq.JValue.GetHashCode"> | |
2192 <summary> | |
2193 Serves as a hash function for a particular type. | |
2194 </summary> | |
2195 <returns> | |
2196 A hash code for the current <see cref="T:System.Object"/>. | |
2197 </returns> | |
2198 </member> | |
2199 <member name="M:Newtonsoft.Json.Linq.JValue.ToString"> | |
2200 <summary> | |
2201 Returns a <see cref="T:System.String"/> that represents this instance. | |
2202 </summary> | |
2203 <returns> | |
2204 A <see cref="T:System.String"/> that represents this instance. | |
2205 </returns> | |
2206 </member> | |
2207 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String)"> | |
2208 <summary> | |
2209 Returns a <see cref="T:System.String"/> that represents this instance. | |
2210 </summary> | |
2211 <param name="format">The format.</param> | |
2212 <returns> | |
2213 A <see cref="T:System.String"/> that represents this instance. | |
2214 </returns> | |
2215 </member> | |
2216 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)"> | |
2217 <summary> | |
2218 Returns a <see cref="T:System.String"/> that represents this instance. | |
2219 </summary> | |
2220 <param name="formatProvider">The format provider.</param> | |
2221 <returns> | |
2222 A <see cref="T:System.String"/> that represents this instance. | |
2223 </returns> | |
2224 </member> | |
2225 <member name="M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)"> | |
2226 <summary> | |
2227 Returns a <see cref="T:System.String"/> that represents this instance. | |
2228 </summary> | |
2229 <param name="format">The format.</param> | |
2230 <param name="formatProvider">The format provider.</param> | |
2231 <returns> | |
2232 A <see cref="T:System.String"/> that represents this instance. | |
2233 </returns> | |
2234 </member> | |
2235 <member name="M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)"> | |
2236 <summary> | |
2237 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. | |
2238 </summary> | |
2239 <param name="parameter">The expression tree representation of the runtime value.</param> | |
2240 <returns> | |
2241 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. | |
2242 </returns> | |
2243 </member> | |
2244 <member name="M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)"> | |
2245 <summary> | |
2246 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. | |
2247 </summary> | |
2248 <param name="obj">An object to compare with this instance.</param> | |
2249 <returns> | |
2250 A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: | |
2251 Value | |
2252 Meaning | |
2253 Less than zero | |
2254 This instance is less than <paramref name="obj"/>. | |
2255 Zero | |
2256 This instance is equal to <paramref name="obj"/>. | |
2257 Greater than zero | |
2258 This instance is greater than <paramref name="obj"/>. | |
2259 </returns> | |
2260 <exception cref="T:System.ArgumentException"> | |
2261 <paramref name="obj"/> is not the same type as this instance. | |
2262 </exception> | |
2263 </member> | |
2264 <member name="P:Newtonsoft.Json.Linq.JValue.HasValues"> | |
2265 <summary> | |
2266 Gets a value indicating whether this token has childen tokens. | |
2267 </summary> | |
2268 <value> | |
2269 <c>true</c> if this token has child values; otherwise, <c>false</c>. | |
2270 </value> | |
2271 </member> | |
2272 <member name="P:Newtonsoft.Json.Linq.JValue.Type"> | |
2273 <summary> | |
2274 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
2275 </summary> | |
2276 <value>The type.</value> | |
2277 </member> | |
2278 <member name="P:Newtonsoft.Json.Linq.JValue.Value"> | |
2279 <summary> | |
2280 Gets or sets the underlying token value. | |
2281 </summary> | |
2282 <value>The underlying token value.</value> | |
2283 </member> | |
2284 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)"> | |
2285 <summary> | |
2286 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class from another <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object. | |
2287 </summary> | |
2288 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JRaw"/> object to copy from.</param> | |
2289 </member> | |
2290 <member name="M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)"> | |
2291 <summary> | |
2292 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JRaw"/> class. | |
2293 </summary> | |
2294 <param name="rawJson">The raw json.</param> | |
2295 </member> | |
2296 <member name="M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)"> | |
2297 <summary> | |
2298 Creates an instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token. | |
2299 </summary> | |
2300 <param name="reader">The reader.</param> | |
2301 <returns>An instance of <see cref="T:Newtonsoft.Json.Linq.JRaw"/> with the content of the reader's current token.</returns> | |
2302 </member> | |
2303 <member name="T:Newtonsoft.Json.Required"> | |
2304 <summary> | |
2305 Indicating whether a property is required. | |
2306 </summary> | |
2307 </member> | |
2308 <member name="F:Newtonsoft.Json.Required.Default"> | |
2309 <summary> | |
2310 The property is not required. The default state. | |
2311 </summary> | |
2312 </member> | |
2313 <member name="F:Newtonsoft.Json.Required.AllowNull"> | |
2314 <summary> | |
2315 The property must be defined in JSON but can be a null value. | |
2316 </summary> | |
2317 </member> | |
2318 <member name="F:Newtonsoft.Json.Required.Always"> | |
2319 <summary> | |
2320 The property must be defined in JSON and cannot be a null value. | |
2321 </summary> | |
2322 </member> | |
2323 <member name="T:Newtonsoft.Json.Serialization.JsonDynamicContract"> | |
2324 <summary> | |
2325 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2326 </summary> | |
2327 </member> | |
2328 <member name="T:Newtonsoft.Json.Serialization.JsonContract"> | |
2329 <summary> | |
2330 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2331 </summary> | |
2332 </member> | |
2333 <member name="P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType"> | |
2334 <summary> | |
2335 Gets the underlying type for the contract. | |
2336 </summary> | |
2337 <value>The underlying type for the contract.</value> | |
2338 </member> | |
2339 <member name="P:Newtonsoft.Json.Serialization.JsonContract.CreatedType"> | |
2340 <summary> | |
2341 Gets or sets the type created during deserialization. | |
2342 </summary> | |
2343 <value>The type created during deserialization.</value> | |
2344 </member> | |
2345 <member name="P:Newtonsoft.Json.Serialization.JsonContract.IsReference"> | |
2346 <summary> | |
2347 Gets or sets whether this type contract is serialized as a reference. | |
2348 </summary> | |
2349 <value>Whether this type contract is serialized as a reference.</value> | |
2350 </member> | |
2351 <member name="P:Newtonsoft.Json.Serialization.JsonContract.Converter"> | |
2352 <summary> | |
2353 Gets or sets the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for this contract. | |
2354 </summary> | |
2355 <value>The converter.</value> | |
2356 </member> | |
2357 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized"> | |
2358 <summary> | |
2359 Gets or sets the method called immediately after deserialization of the object. | |
2360 </summary> | |
2361 <value>The method called immediately after deserialization of the object.</value> | |
2362 </member> | |
2363 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing"> | |
2364 <summary> | |
2365 Gets or sets the method called during deserialization of the object. | |
2366 </summary> | |
2367 <value>The method called during deserialization of the object.</value> | |
2368 </member> | |
2369 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized"> | |
2370 <summary> | |
2371 Gets or sets the method called after serialization of the object graph. | |
2372 </summary> | |
2373 <value>The method called after serialization of the object graph.</value> | |
2374 </member> | |
2375 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing"> | |
2376 <summary> | |
2377 Gets or sets the method called before serialization of the object. | |
2378 </summary> | |
2379 <value>The method called before serialization of the object.</value> | |
2380 </member> | |
2381 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator"> | |
2382 <summary> | |
2383 Gets or sets the default creator method used to create the object. | |
2384 </summary> | |
2385 <value>The default creator method used to create the object.</value> | |
2386 </member> | |
2387 <member name="P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic"> | |
2388 <summary> | |
2389 Gets or sets a value indicating whether [default creator non public]. | |
2390 </summary> | |
2391 <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value> | |
2392 </member> | |
2393 <member name="P:Newtonsoft.Json.Serialization.JsonContract.OnError"> | |
2394 <summary> | |
2395 Gets or sets the method called when an error is thrown during the serialization of the object. | |
2396 </summary> | |
2397 <value>The method called when an error is thrown during the serialization of the object.</value> | |
2398 </member> | |
2399 <member name="M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)"> | |
2400 <summary> | |
2401 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> class. | |
2402 </summary> | |
2403 <param name="underlyingType">The underlying type for the contract.</param> | |
2404 </member> | |
2405 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties"> | |
2406 <summary> | |
2407 Gets the object's properties. | |
2408 </summary> | |
2409 <value>The object's properties.</value> | |
2410 </member> | |
2411 <member name="P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver"> | |
2412 <summary> | |
2413 Gets or sets the property name resolver. | |
2414 </summary> | |
2415 <value>The property name resolver.</value> | |
2416 </member> | |
2417 <member name="T:Newtonsoft.Json.Serialization.JsonISerializableContract"> | |
2418 <summary> | |
2419 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2420 </summary> | |
2421 </member> | |
2422 <member name="M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)"> | |
2423 <summary> | |
2424 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> class. | |
2425 </summary> | |
2426 <param name="underlyingType">The underlying type for the contract.</param> | |
2427 </member> | |
2428 <member name="P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator"> | |
2429 <summary> | |
2430 Gets or sets the ISerializable object constructor. | |
2431 </summary> | |
2432 <value>The ISerializable object constructor.</value> | |
2433 </member> | |
2434 <member name="T:Newtonsoft.Json.Serialization.JsonLinqContract"> | |
2435 <summary> | |
2436 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2437 </summary> | |
2438 </member> | |
2439 <member name="M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)"> | |
2440 <summary> | |
2441 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> class. | |
2442 </summary> | |
2443 <param name="underlyingType">The underlying type for the contract.</param> | |
2444 </member> | |
2445 <member name="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"> | |
2446 <summary> | |
2447 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2448 </summary> | |
2449 </member> | |
2450 <member name="M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)"> | |
2451 <summary> | |
2452 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> class. | |
2453 </summary> | |
2454 <param name="underlyingType">The underlying type for the contract.</param> | |
2455 </member> | |
2456 <member name="T:Newtonsoft.Json.Serialization.DynamicValueProvider"> | |
2457 <summary> | |
2458 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using dynamic methods. | |
2459 </summary> | |
2460 </member> | |
2461 <member name="T:Newtonsoft.Json.Serialization.IValueProvider"> | |
2462 <summary> | |
2463 Provides methods to get and set values. | |
2464 </summary> | |
2465 </member> | |
2466 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)"> | |
2467 <summary> | |
2468 Sets the value. | |
2469 </summary> | |
2470 <param name="target">The target to set the value on.</param> | |
2471 <param name="value">The value to set on the target.</param> | |
2472 </member> | |
2473 <member name="M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)"> | |
2474 <summary> | |
2475 Gets the value. | |
2476 </summary> | |
2477 <param name="target">The target to get the value from.</param> | |
2478 <returns>The value.</returns> | |
2479 </member> | |
2480 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)"> | |
2481 <summary> | |
2482 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DynamicValueProvider"/> class. | |
2483 </summary> | |
2484 <param name="memberInfo">The member info.</param> | |
2485 </member> | |
2486 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)"> | |
2487 <summary> | |
2488 Sets the value. | |
2489 </summary> | |
2490 <param name="target">The target to set the value on.</param> | |
2491 <param name="value">The value to set on the target.</param> | |
2492 </member> | |
2493 <member name="M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)"> | |
2494 <summary> | |
2495 Gets the value. | |
2496 </summary> | |
2497 <param name="target">The target to get the value from.</param> | |
2498 <returns>The value.</returns> | |
2499 </member> | |
2500 <member name="T:Newtonsoft.Json.Serialization.ErrorEventArgs"> | |
2501 <summary> | |
2502 Provides data for the Error event. | |
2503 </summary> | |
2504 </member> | |
2505 <member name="M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)"> | |
2506 <summary> | |
2507 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ErrorEventArgs"/> class. | |
2508 </summary> | |
2509 <param name="currentObject">The current object.</param> | |
2510 <param name="errorContext">The error context.</param> | |
2511 </member> | |
2512 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject"> | |
2513 <summary> | |
2514 Gets the current object the error event is being raised against. | |
2515 </summary> | |
2516 <value>The current object the error event is being raised against.</value> | |
2517 </member> | |
2518 <member name="P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext"> | |
2519 <summary> | |
2520 Gets the error context. | |
2521 </summary> | |
2522 <value>The error context.</value> | |
2523 </member> | |
2524 <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor"> | |
2525 <summary> | |
2526 Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>. | |
2527 </summary> | |
2528 </member> | |
2529 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)"> | |
2530 <summary> | |
2531 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class. | |
2532 </summary> | |
2533 <param name="name">The name.</param> | |
2534 <param name="propertyType">Type of the property.</param> | |
2535 </member> | |
2536 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)"> | |
2537 <summary> | |
2538 When overridden in a derived class, returns whether resetting an object changes its value. | |
2539 </summary> | |
2540 <returns> | |
2541 true if resetting the component changes its value; otherwise, false. | |
2542 </returns> | |
2543 <param name="component">The component to test for reset capability. | |
2544 </param> | |
2545 </member> | |
2546 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)"> | |
2547 <summary> | |
2548 When overridden in a derived class, gets the current value of the property on a component. | |
2549 </summary> | |
2550 <returns> | |
2551 The value of a property for a given component. | |
2552 </returns> | |
2553 <param name="component">The component with the property for which to retrieve the value. | |
2554 </param> | |
2555 </member> | |
2556 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)"> | |
2557 <summary> | |
2558 When overridden in a derived class, resets the value for this property of the component to the default value. | |
2559 </summary> | |
2560 <param name="component">The component with the property value that is to be reset to the default value. | |
2561 </param> | |
2562 </member> | |
2563 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)"> | |
2564 <summary> | |
2565 When overridden in a derived class, sets the value of the component to a different value. | |
2566 </summary> | |
2567 <param name="component">The component with the property value that is to be set. | |
2568 </param><param name="value">The new value. | |
2569 </param> | |
2570 </member> | |
2571 <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)"> | |
2572 <summary> | |
2573 When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. | |
2574 </summary> | |
2575 <returns> | |
2576 true if the property should be persisted; otherwise, false. | |
2577 </returns> | |
2578 <param name="component">The component with the property to be examined for persistence. | |
2579 </param> | |
2580 </member> | |
2581 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType"> | |
2582 <summary> | |
2583 When overridden in a derived class, gets the type of the component this property is bound to. | |
2584 </summary> | |
2585 <returns> | |
2586 A <see cref="T:System.Type"/> that represents the type of component this property is bound to. When the <see cref="M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)"/> or <see cref="M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)"/> methods are invoked, the object specified might be an instance of this type. | |
2587 </returns> | |
2588 </member> | |
2589 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly"> | |
2590 <summary> | |
2591 When overridden in a derived class, gets a value indicating whether this property is read-only. | |
2592 </summary> | |
2593 <returns> | |
2594 true if the property is read-only; otherwise, false. | |
2595 </returns> | |
2596 </member> | |
2597 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType"> | |
2598 <summary> | |
2599 When overridden in a derived class, gets the type of the property. | |
2600 </summary> | |
2601 <returns> | |
2602 A <see cref="T:System.Type"/> that represents the type of the property. | |
2603 </returns> | |
2604 </member> | |
2605 <member name="P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode"> | |
2606 <summary> | |
2607 Gets the hash code for the name of the member. | |
2608 </summary> | |
2609 <value></value> | |
2610 <returns> | |
2611 The hash code for the name of the member. | |
2612 </returns> | |
2613 </member> | |
2614 <member name="T:Newtonsoft.Json.Serialization.IReferenceResolver"> | |
2615 <summary> | |
2616 Used to resolve references when serializing and deserializing JSON by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2617 </summary> | |
2618 </member> | |
2619 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)"> | |
2620 <summary> | |
2621 Resolves a reference to its object. | |
2622 </summary> | |
2623 <param name="context">The serialization context.</param> | |
2624 <param name="reference">The reference to resolve.</param> | |
2625 <returns>The object that</returns> | |
2626 </member> | |
2627 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)"> | |
2628 <summary> | |
2629 Gets the reference for the sepecified object. | |
2630 </summary> | |
2631 <param name="context">The serialization context.</param> | |
2632 <param name="value">The object to get a reference for.</param> | |
2633 <returns>The reference to the object.</returns> | |
2634 </member> | |
2635 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)"> | |
2636 <summary> | |
2637 Determines whether the specified object is referenced. | |
2638 </summary> | |
2639 <param name="context">The serialization context.</param> | |
2640 <param name="value">The object to test for a reference.</param> | |
2641 <returns> | |
2642 <c>true</c> if the specified object is referenced; otherwise, <c>false</c>. | |
2643 </returns> | |
2644 </member> | |
2645 <member name="M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)"> | |
2646 <summary> | |
2647 Adds a reference to the specified object. | |
2648 </summary> | |
2649 <param name="context">The serialization context.</param> | |
2650 <param name="reference">The reference.</param> | |
2651 <param name="value">The object to reference.</param> | |
2652 </member> | |
2653 <member name="T:Newtonsoft.Json.PreserveReferencesHandling"> | |
2654 <summary> | |
2655 Specifies reference handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2656 </summary> | |
2657 </member> | |
2658 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.None"> | |
2659 <summary> | |
2660 Do not preserve references when serializing types. | |
2661 </summary> | |
2662 </member> | |
2663 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Objects"> | |
2664 <summary> | |
2665 Preserve references when serializing into a JSON object structure. | |
2666 </summary> | |
2667 </member> | |
2668 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.Arrays"> | |
2669 <summary> | |
2670 Preserve references when serializing into a JSON array structure. | |
2671 </summary> | |
2672 </member> | |
2673 <member name="F:Newtonsoft.Json.PreserveReferencesHandling.All"> | |
2674 <summary> | |
2675 Preserve references when serializing. | |
2676 </summary> | |
2677 </member> | |
2678 <member name="T:Newtonsoft.Json.JsonArrayAttribute"> | |
2679 <summary> | |
2680 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection. | |
2681 </summary> | |
2682 </member> | |
2683 <member name="T:Newtonsoft.Json.JsonContainerAttribute"> | |
2684 <summary> | |
2685 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object. | |
2686 </summary> | |
2687 </member> | |
2688 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor"> | |
2689 <summary> | |
2690 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class. | |
2691 </summary> | |
2692 </member> | |
2693 <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)"> | |
2694 <summary> | |
2695 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id. | |
2696 </summary> | |
2697 <param name="id">The container Id.</param> | |
2698 </member> | |
2699 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id"> | |
2700 <summary> | |
2701 Gets or sets the id. | |
2702 </summary> | |
2703 <value>The id.</value> | |
2704 </member> | |
2705 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title"> | |
2706 <summary> | |
2707 Gets or sets the title. | |
2708 </summary> | |
2709 <value>The title.</value> | |
2710 </member> | |
2711 <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description"> | |
2712 <summary> | |
2713 Gets or sets the description. | |
2714 </summary> | |
2715 <value>The description.</value> | |
2716 </member> | |
2717 <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference"> | |
2718 <summary> | |
2719 Gets or sets a value that indicates whether to preserve object reference data. | |
2720 </summary> | |
2721 <value> | |
2722 <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>. | |
2723 </value> | |
2724 </member> | |
2725 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor"> | |
2726 <summary> | |
2727 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class. | |
2728 </summary> | |
2729 </member> | |
2730 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)"> | |
2731 <summary> | |
2732 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items | |
2733 </summary> | |
2734 <param name="allowNullItems">A flag indicating whether the array can contain null items.</param> | |
2735 </member> | |
2736 <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)"> | |
2737 <summary> | |
2738 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id. | |
2739 </summary> | |
2740 <param name="id">The container Id.</param> | |
2741 </member> | |
2742 <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems"> | |
2743 <summary> | |
2744 Gets or sets a value indicating whether null items are allowed in the collection. | |
2745 </summary> | |
2746 <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value> | |
2747 </member> | |
2748 <member name="T:Newtonsoft.Json.DefaultValueHandling"> | |
2749 <summary> | |
2750 Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
2751 </summary> | |
2752 </member> | |
2753 <member name="F:Newtonsoft.Json.DefaultValueHandling.Include"> | |
2754 <summary> | |
2755 Include members where the member value is the same as the member's default value when serializing objects. | |
2756 Included members are written to JSON. Has no effect when deserializing. | |
2757 </summary> | |
2758 </member> | |
2759 <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore"> | |
2760 <summary> | |
2761 Ignore members where the member value is the same as the member's default value when serializing objects | |
2762 so that is is not written to JSON, and ignores setting members when the JSON value equals the member's default value. | |
2763 </summary> | |
2764 </member> | |
2765 <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate"> | |
2766 <summary> | |
2767 Members with a default value but no JSON will be set to their default value when deserializing. | |
2768 </summary> | |
2769 </member> | |
2770 <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate"> | |
2771 <summary> | |
2772 Ignore members where the member value is the same as the member's default value when serializing objects | |
2773 and sets members to their default value when deserializing. | |
2774 </summary> | |
2775 </member> | |
2776 <member name="T:Newtonsoft.Json.JsonConverterAttribute"> | |
2777 <summary> | |
2778 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified <see cref="T:Newtonsoft.Json.JsonConverter"/> when serializing the member or class. | |
2779 </summary> | |
2780 </member> | |
2781 <member name="M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)"> | |
2782 <summary> | |
2783 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonConverterAttribute"/> class. | |
2784 </summary> | |
2785 <param name="converterType">Type of the converter.</param> | |
2786 </member> | |
2787 <member name="P:Newtonsoft.Json.JsonConverterAttribute.ConverterType"> | |
2788 <summary> | |
2789 Gets the type of the converter. | |
2790 </summary> | |
2791 <value>The type of the converter.</value> | |
2792 </member> | |
2793 <member name="T:Newtonsoft.Json.JsonObjectAttribute"> | |
2794 <summary> | |
2795 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object. | |
2796 </summary> | |
2797 </member> | |
2798 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor"> | |
2799 <summary> | |
2800 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class. | |
2801 </summary> | |
2802 </member> | |
2803 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)"> | |
2804 <summary> | |
2805 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified member serialization. | |
2806 </summary> | |
2807 <param name="memberSerialization">The member serialization.</param> | |
2808 </member> | |
2809 <member name="M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)"> | |
2810 <summary> | |
2811 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with the specified container Id. | |
2812 </summary> | |
2813 <param name="id">The container Id.</param> | |
2814 </member> | |
2815 <member name="P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization"> | |
2816 <summary> | |
2817 Gets or sets the member serialization. | |
2818 </summary> | |
2819 <value>The member serialization.</value> | |
2820 </member> | |
2821 <member name="T:Newtonsoft.Json.JsonSerializerSettings"> | |
2822 <summary> | |
2823 Specifies the settings on a <see cref="T:Newtonsoft.Json.JsonSerializer"/> object. | |
2824 </summary> | |
2825 </member> | |
2826 <member name="M:Newtonsoft.Json.JsonSerializerSettings.#ctor"> | |
2827 <summary> | |
2828 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> class. | |
2829 </summary> | |
2830 </member> | |
2831 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling"> | |
2832 <summary> | |
2833 Gets or sets how reference loops (e.g. a class referencing itself) is handled. | |
2834 </summary> | |
2835 <value>Reference loop handling.</value> | |
2836 </member> | |
2837 <member name="P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling"> | |
2838 <summary> | |
2839 Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. | |
2840 </summary> | |
2841 <value>Missing member handling.</value> | |
2842 </member> | |
2843 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling"> | |
2844 <summary> | |
2845 Gets or sets how objects are created during deserialization. | |
2846 </summary> | |
2847 <value>The object creation handling.</value> | |
2848 </member> | |
2849 <member name="P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling"> | |
2850 <summary> | |
2851 Gets or sets how null values are handled during serialization and deserialization. | |
2852 </summary> | |
2853 <value>Null value handling.</value> | |
2854 </member> | |
2855 <member name="P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling"> | |
2856 <summary> | |
2857 Gets or sets how null default are handled during serialization and deserialization. | |
2858 </summary> | |
2859 <value>The default value handling.</value> | |
2860 </member> | |
2861 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Converters"> | |
2862 <summary> | |
2863 Gets or sets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization. | |
2864 </summary> | |
2865 <value>The converters.</value> | |
2866 </member> | |
2867 <member name="P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling"> | |
2868 <summary> | |
2869 Gets or sets how object references are preserved by the serializer. | |
2870 </summary> | |
2871 <value>The preserve references handling.</value> | |
2872 </member> | |
2873 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling"> | |
2874 <summary> | |
2875 Gets or sets how type name writing and reading is handled by the serializer. | |
2876 </summary> | |
2877 <value>The type name handling.</value> | |
2878 </member> | |
2879 <member name="P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat"> | |
2880 <summary> | |
2881 Gets or sets how a type name assembly is written and resolved by the serializer. | |
2882 </summary> | |
2883 <value>The type name assembly format.</value> | |
2884 </member> | |
2885 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling"> | |
2886 <summary> | |
2887 Gets or sets how constructors are used during deserialization. | |
2888 </summary> | |
2889 <value>The constructor handling.</value> | |
2890 </member> | |
2891 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver"> | |
2892 <summary> | |
2893 Gets or sets the contract resolver used by the serializer when | |
2894 serializing .NET objects to JSON and vice versa. | |
2895 </summary> | |
2896 <value>The contract resolver.</value> | |
2897 </member> | |
2898 <member name="P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver"> | |
2899 <summary> | |
2900 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. | |
2901 </summary> | |
2902 <value>The reference resolver.</value> | |
2903 </member> | |
2904 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Binder"> | |
2905 <summary> | |
2906 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names. | |
2907 </summary> | |
2908 <value>The binder.</value> | |
2909 </member> | |
2910 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Error"> | |
2911 <summary> | |
2912 Gets or sets the error handler called during serialization and deserialization. | |
2913 </summary> | |
2914 <value>The error handler called during serialization and deserialization.</value> | |
2915 </member> | |
2916 <member name="P:Newtonsoft.Json.JsonSerializerSettings.Context"> | |
2917 <summary> | |
2918 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods. | |
2919 </summary> | |
2920 <value>The context.</value> | |
2921 </member> | |
2922 <member name="T:Newtonsoft.Json.JsonValidatingReader"> | |
2923 <summary> | |
2924 Represents a reader that provides <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> validation. | |
2925 </summary> | |
2926 </member> | |
2927 <member name="M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)"> | |
2928 <summary> | |
2929 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonValidatingReader"/> class that | |
2930 validates the content returned from the given <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
2931 </summary> | |
2932 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from while validating.</param> | |
2933 </member> | |
2934 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32"> | |
2935 <summary> | |
2936 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
2937 </summary> | |
2938 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
2939 </member> | |
2940 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes"> | |
2941 <summary> | |
2942 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. | |
2943 </summary> | |
2944 <returns> | |
2945 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. | |
2946 </returns> | |
2947 </member> | |
2948 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal"> | |
2949 <summary> | |
2950 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
2951 </summary> | |
2952 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
2953 </member> | |
2954 <member name="M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset"> | |
2955 <summary> | |
2956 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
2957 </summary> | |
2958 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
2959 </member> | |
2960 <member name="M:Newtonsoft.Json.JsonValidatingReader.Read"> | |
2961 <summary> | |
2962 Reads the next JSON token from the stream. | |
2963 </summary> | |
2964 <returns> | |
2965 true if the next token was read successfully; false if there are no more tokens to read. | |
2966 </returns> | |
2967 </member> | |
2968 <member name="E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler"> | |
2969 <summary> | |
2970 Sets an event handler for receiving schema validation errors. | |
2971 </summary> | |
2972 </member> | |
2973 <member name="P:Newtonsoft.Json.JsonValidatingReader.Value"> | |
2974 <summary> | |
2975 Gets the text value of the current Json token. | |
2976 </summary> | |
2977 <value></value> | |
2978 </member> | |
2979 <member name="P:Newtonsoft.Json.JsonValidatingReader.Depth"> | |
2980 <summary> | |
2981 Gets the depth of the current token in the JSON document. | |
2982 </summary> | |
2983 <value>The depth of the current token in the JSON document.</value> | |
2984 </member> | |
2985 <member name="P:Newtonsoft.Json.JsonValidatingReader.QuoteChar"> | |
2986 <summary> | |
2987 Gets the quotation mark character used to enclose the value of a string. | |
2988 </summary> | |
2989 <value></value> | |
2990 </member> | |
2991 <member name="P:Newtonsoft.Json.JsonValidatingReader.TokenType"> | |
2992 <summary> | |
2993 Gets the type of the current Json token. | |
2994 </summary> | |
2995 <value></value> | |
2996 </member> | |
2997 <member name="P:Newtonsoft.Json.JsonValidatingReader.ValueType"> | |
2998 <summary> | |
2999 Gets the Common Language Runtime (CLR) type for the current Json token. | |
3000 </summary> | |
3001 <value></value> | |
3002 </member> | |
3003 <member name="P:Newtonsoft.Json.JsonValidatingReader.Schema"> | |
3004 <summary> | |
3005 Gets or sets the schema. | |
3006 </summary> | |
3007 <value>The schema.</value> | |
3008 </member> | |
3009 <member name="P:Newtonsoft.Json.JsonValidatingReader.Reader"> | |
3010 <summary> | |
3011 Gets the <see cref="T:Newtonsoft.Json.JsonReader"/> used to construct this <see cref="T:Newtonsoft.Json.JsonValidatingReader"/>. | |
3012 </summary> | |
3013 <value>The <see cref="T:Newtonsoft.Json.JsonReader"/> specified in the constructor.</value> | |
3014 </member> | |
3015 <member name="T:Newtonsoft.Json.Linq.JTokenEqualityComparer"> | |
3016 <summary> | |
3017 Compares tokens to determine whether they are equal. | |
3018 </summary> | |
3019 </member> | |
3020 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)"> | |
3021 <summary> | |
3022 Determines whether the specified objects are equal. | |
3023 </summary> | |
3024 <param name="x">The first object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> | |
3025 <param name="y">The second object of type <see cref="T:Newtonsoft.Json.Linq.JToken"/> to compare.</param> | |
3026 <returns> | |
3027 true if the specified objects are equal; otherwise, false. | |
3028 </returns> | |
3029 </member> | |
3030 <member name="M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)"> | |
3031 <summary> | |
3032 Returns a hash code for the specified object. | |
3033 </summary> | |
3034 <param name="obj">The <see cref="T:System.Object"/> for which a hash code is to be returned.</param> | |
3035 <returns>A hash code for the specified object.</returns> | |
3036 <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj"/> is a reference type and <paramref name="obj"/> is null.</exception> | |
3037 </member> | |
3038 <member name="T:Newtonsoft.Json.MemberSerialization"> | |
3039 <summary> | |
3040 Specifies the member serialization options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
3041 </summary> | |
3042 </member> | |
3043 <member name="F:Newtonsoft.Json.MemberSerialization.OptOut"> | |
3044 <summary> | |
3045 All members are serialized by default. Members can be excluded using the <see cref="T:Newtonsoft.Json.JsonIgnoreAttribute"/>. | |
3046 </summary> | |
3047 </member> | |
3048 <member name="F:Newtonsoft.Json.MemberSerialization.OptIn"> | |
3049 <summary> | |
3050 Only members must be marked with the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> are serialized. | |
3051 </summary> | |
3052 </member> | |
3053 <member name="T:Newtonsoft.Json.ObjectCreationHandling"> | |
3054 <summary> | |
3055 Specifies how object creation is handled by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
3056 </summary> | |
3057 </member> | |
3058 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Auto"> | |
3059 <summary> | |
3060 Reuse existing objects, create new objects when needed. | |
3061 </summary> | |
3062 </member> | |
3063 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Reuse"> | |
3064 <summary> | |
3065 Only reuse existing objects. | |
3066 </summary> | |
3067 </member> | |
3068 <member name="F:Newtonsoft.Json.ObjectCreationHandling.Replace"> | |
3069 <summary> | |
3070 Always create new objects. | |
3071 </summary> | |
3072 </member> | |
3073 <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter"> | |
3074 <summary> | |
3075 Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). | |
3076 </summary> | |
3077 </member> | |
3078 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3079 <summary> | |
3080 Writes the JSON representation of the object. | |
3081 </summary> | |
3082 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
3083 <param name="value">The value.</param> | |
3084 <param name="serializer">The calling serializer.</param> | |
3085 </member> | |
3086 <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3087 <summary> | |
3088 Reads the JSON representation of the object. | |
3089 </summary> | |
3090 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
3091 <param name="objectType">Type of the object.</param> | |
3092 <param name="existingValue">The existing value of object being read.</param> | |
3093 <param name="serializer">The calling serializer.</param> | |
3094 <returns>The object value.</returns> | |
3095 </member> | |
3096 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles"> | |
3097 <summary> | |
3098 Gets or sets the date time styles used when converting a date to and from JSON. | |
3099 </summary> | |
3100 <value>The date time styles used when converting a date to and from JSON.</value> | |
3101 </member> | |
3102 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat"> | |
3103 <summary> | |
3104 Gets or sets the date time format used when converting a date to and from JSON. | |
3105 </summary> | |
3106 <value>The date time format used when converting a date to and from JSON.</value> | |
3107 </member> | |
3108 <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture"> | |
3109 <summary> | |
3110 Gets or sets the culture used when converting a date to and from JSON. | |
3111 </summary> | |
3112 <value>The culture used when converting a date to and from JSON.</value> | |
3113 </member> | |
3114 <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter"> | |
3115 <summary> | |
3116 Converts a <see cref="T:System.DateTime"/> to and from a JavaScript date constructor (e.g. new Date(52231943)). | |
3117 </summary> | |
3118 </member> | |
3119 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3120 <summary> | |
3121 Writes the JSON representation of the object. | |
3122 </summary> | |
3123 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
3124 <param name="value">The value.</param> | |
3125 <param name="serializer">The calling serializer.</param> | |
3126 </member> | |
3127 <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3128 <summary> | |
3129 Reads the JSON representation of the object. | |
3130 </summary> | |
3131 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
3132 <param name="objectType">Type of the object.</param> | |
3133 <param name="existingValue">The existing property value of the JSON that is being converted.</param> | |
3134 <param name="serializer">The calling serializer.</param> | |
3135 <returns>The object value.</returns> | |
3136 </member> | |
3137 <member name="T:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode"> | |
3138 <summary> | |
3139 Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. | |
3140 </summary> | |
3141 </member> | |
3142 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Local"> | |
3143 <summary> | |
3144 The time represented is local time. | |
3145 </summary> | |
3146 </member> | |
3147 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Utc"> | |
3148 <summary> | |
3149 The time represented is UTC. | |
3150 </summary> | |
3151 </member> | |
3152 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.Unspecified"> | |
3153 <summary> | |
3154 The time represented is not specified as either local time or Coordinated Universal Time (UTC). | |
3155 </summary> | |
3156 </member> | |
3157 <member name="F:Newtonsoft.Json.Converters.JsonDateTimeSerializationMode.RoundtripKind"> | |
3158 <summary> | |
3159 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. | |
3160 </summary> | |
3161 </member> | |
3162 <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter"> | |
3163 <summary> | |
3164 Converts XML to and from JSON. | |
3165 </summary> | |
3166 </member> | |
3167 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3168 <summary> | |
3169 Writes the JSON representation of the object. | |
3170 </summary> | |
3171 <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> | |
3172 <param name="serializer">The calling serializer.</param> | |
3173 <param name="value">The value.</param> | |
3174 </member> | |
3175 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> | |
3176 <summary> | |
3177 Reads the JSON representation of the object. | |
3178 </summary> | |
3179 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> | |
3180 <param name="objectType">Type of the object.</param> | |
3181 <param name="existingValue">The existing value of object being read.</param> | |
3182 <param name="serializer">The calling serializer.</param> | |
3183 <returns>The object value.</returns> | |
3184 </member> | |
3185 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)"> | |
3186 <summary> | |
3187 Checks if the attributeName is a namespace attribute. | |
3188 </summary> | |
3189 <param name="attributeName">Attribute name to test.</param> | |
3190 <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param> | |
3191 <returns>True if attribute name is for a namespace attribute, otherwise false.</returns> | |
3192 </member> | |
3193 <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)"> | |
3194 <summary> | |
3195 Determines whether this instance can convert the specified value type. | |
3196 </summary> | |
3197 <param name="valueType">Type of the value.</param> | |
3198 <returns> | |
3199 <c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>. | |
3200 </returns> | |
3201 </member> | |
3202 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName"> | |
3203 <summary> | |
3204 Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. | |
3205 </summary> | |
3206 <value>The name of the deserialize root element.</value> | |
3207 </member> | |
3208 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute"> | |
3209 <summary> | |
3210 Gets or sets a flag to indicate whether to write the Json.NET array attribute. | |
3211 This attribute helps preserve arrays when converting the written XML back to JSON. | |
3212 </summary> | |
3213 <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value> | |
3214 </member> | |
3215 <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject"> | |
3216 <summary> | |
3217 Gets or sets a value indicating whether to write the root JSON object. | |
3218 </summary> | |
3219 <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value> | |
3220 </member> | |
3221 <member name="T:Newtonsoft.Json.JsonTextReader"> | |
3222 <summary> | |
3223 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. | |
3224 </summary> | |
3225 </member> | |
3226 <member name="M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)"> | |
3227 <summary> | |
3228 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReader"/> class with the specified <see cref="T:System.IO.TextReader"/>. | |
3229 </summary> | |
3230 <param name="reader">The <c>TextReader</c> containing the XML data to read.</param> | |
3231 </member> | |
3232 <member name="M:Newtonsoft.Json.JsonTextReader.Read"> | |
3233 <summary> | |
3234 Reads the next JSON token from the stream. | |
3235 </summary> | |
3236 <returns> | |
3237 true if the next token was read successfully; false if there are no more tokens to read. | |
3238 </returns> | |
3239 </member> | |
3240 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsBytes"> | |
3241 <summary> | |
3242 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. | |
3243 </summary> | |
3244 <returns> | |
3245 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. | |
3246 </returns> | |
3247 </member> | |
3248 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal"> | |
3249 <summary> | |
3250 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
3251 </summary> | |
3252 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
3253 </member> | |
3254 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsInt32"> | |
3255 <summary> | |
3256 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
3257 </summary> | |
3258 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
3259 </member> | |
3260 <member name="M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset"> | |
3261 <summary> | |
3262 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
3263 </summary> | |
3264 <returns>A <see cref="T:System.DateTimeOffset"/>.</returns> | |
3265 </member> | |
3266 <member name="M:Newtonsoft.Json.JsonTextReader.Close"> | |
3267 <summary> | |
3268 Changes the state to closed. | |
3269 </summary> | |
3270 </member> | |
3271 <member name="M:Newtonsoft.Json.JsonTextReader.HasLineInfo"> | |
3272 <summary> | |
3273 Gets a value indicating whether the class can return line information. | |
3274 </summary> | |
3275 <returns> | |
3276 <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>. | |
3277 </returns> | |
3278 </member> | |
3279 <member name="P:Newtonsoft.Json.JsonTextReader.LineNumber"> | |
3280 <summary> | |
3281 Gets the current line number. | |
3282 </summary> | |
3283 <value> | |
3284 The current line number or 0 if no line information is available (for example, HasLineInfo returns false). | |
3285 </value> | |
3286 </member> | |
3287 <member name="P:Newtonsoft.Json.JsonTextReader.LinePosition"> | |
3288 <summary> | |
3289 Gets the current line position. | |
3290 </summary> | |
3291 <value> | |
3292 The current line position or 0 if no line information is available (for example, HasLineInfo returns false). | |
3293 </value> | |
3294 </member> | |
3295 <member name="T:Newtonsoft.Json.JsonPropertyAttribute"> | |
3296 <summary> | |
3297 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to always serialize the member with the specified name. | |
3298 </summary> | |
3299 </member> | |
3300 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor"> | |
3301 <summary> | |
3302 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class. | |
3303 </summary> | |
3304 </member> | |
3305 <member name="M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)"> | |
3306 <summary> | |
3307 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonPropertyAttribute"/> class with the specified name. | |
3308 </summary> | |
3309 <param name="propertyName">Name of the property.</param> | |
3310 </member> | |
3311 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling"> | |
3312 <summary> | |
3313 Gets or sets the null value handling used when serializing this property. | |
3314 </summary> | |
3315 <value>The null value handling.</value> | |
3316 </member> | |
3317 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling"> | |
3318 <summary> | |
3319 Gets or sets the default value handling used when serializing this property. | |
3320 </summary> | |
3321 <value>The default value handling.</value> | |
3322 </member> | |
3323 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling"> | |
3324 <summary> | |
3325 Gets or sets the reference loop handling used when serializing this property. | |
3326 </summary> | |
3327 <value>The reference loop handling.</value> | |
3328 </member> | |
3329 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling"> | |
3330 <summary> | |
3331 Gets or sets the object creation handling used when deserializing this property. | |
3332 </summary> | |
3333 <value>The object creation handling.</value> | |
3334 </member> | |
3335 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling"> | |
3336 <summary> | |
3337 Gets or sets the type name handling used when serializing this property. | |
3338 </summary> | |
3339 <value>The type name handling.</value> | |
3340 </member> | |
3341 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.IsReference"> | |
3342 <summary> | |
3343 Gets or sets whether this property's value is serialized as a reference. | |
3344 </summary> | |
3345 <value>Whether this property's value is serialized as a reference.</value> | |
3346 </member> | |
3347 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Order"> | |
3348 <summary> | |
3349 Gets or sets the order of serialization and deserialization of a member. | |
3350 </summary> | |
3351 <value>The numeric order of serialization or deserialization.</value> | |
3352 </member> | |
3353 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName"> | |
3354 <summary> | |
3355 Gets or sets the name of the property. | |
3356 </summary> | |
3357 <value>The name of the property.</value> | |
3358 </member> | |
3359 <member name="P:Newtonsoft.Json.JsonPropertyAttribute.Required"> | |
3360 <summary> | |
3361 Gets or sets a value indicating whether this property is required. | |
3362 </summary> | |
3363 <value> | |
3364 A value indicating whether this property is required. | |
3365 </value> | |
3366 </member> | |
3367 <member name="T:Newtonsoft.Json.JsonIgnoreAttribute"> | |
3368 <summary> | |
3369 Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> not to serialize the public field or public read/write property value. | |
3370 </summary> | |
3371 </member> | |
3372 <member name="T:Newtonsoft.Json.JsonTextWriter"> | |
3373 <summary> | |
3374 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. | |
3375 </summary> | |
3376 </member> | |
3377 <member name="M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)"> | |
3378 <summary> | |
3379 Creates an instance of the <c>JsonWriter</c> class using the specified <see cref="T:System.IO.TextWriter"/>. | |
3380 </summary> | |
3381 <param name="textWriter">The <c>TextWriter</c> to write to.</param> | |
3382 </member> | |
3383 <member name="M:Newtonsoft.Json.JsonTextWriter.Flush"> | |
3384 <summary> | |
3385 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. | |
3386 </summary> | |
3387 </member> | |
3388 <member name="M:Newtonsoft.Json.JsonTextWriter.Close"> | |
3389 <summary> | |
3390 Closes this stream and the underlying stream. | |
3391 </summary> | |
3392 </member> | |
3393 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartObject"> | |
3394 <summary> | |
3395 Writes the beginning of a Json object. | |
3396 </summary> | |
3397 </member> | |
3398 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartArray"> | |
3399 <summary> | |
3400 Writes the beginning of a Json array. | |
3401 </summary> | |
3402 </member> | |
3403 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)"> | |
3404 <summary> | |
3405 Writes the start of a constructor with the given name. | |
3406 </summary> | |
3407 <param name="name">The name of the constructor.</param> | |
3408 </member> | |
3409 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)"> | |
3410 <summary> | |
3411 Writes the specified end token. | |
3412 </summary> | |
3413 <param name="token">The end token to write.</param> | |
3414 </member> | |
3415 <member name="M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)"> | |
3416 <summary> | |
3417 Writes the property name of a name/value pair on a Json object. | |
3418 </summary> | |
3419 <param name="name">The name of the property.</param> | |
3420 </member> | |
3421 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndent"> | |
3422 <summary> | |
3423 Writes indent characters. | |
3424 </summary> | |
3425 </member> | |
3426 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter"> | |
3427 <summary> | |
3428 Writes the JSON value delimiter. | |
3429 </summary> | |
3430 </member> | |
3431 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace"> | |
3432 <summary> | |
3433 Writes an indent space. | |
3434 </summary> | |
3435 </member> | |
3436 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteNull"> | |
3437 <summary> | |
3438 Writes a null value. | |
3439 </summary> | |
3440 </member> | |
3441 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteUndefined"> | |
3442 <summary> | |
3443 Writes an undefined value. | |
3444 </summary> | |
3445 </member> | |
3446 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)"> | |
3447 <summary> | |
3448 Writes raw JSON. | |
3449 </summary> | |
3450 <param name="json">The raw JSON to write.</param> | |
3451 </member> | |
3452 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)"> | |
3453 <summary> | |
3454 Writes a <see cref="T:System.String"/> value. | |
3455 </summary> | |
3456 <param name="value">The <see cref="T:System.String"/> value to write.</param> | |
3457 </member> | |
3458 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)"> | |
3459 <summary> | |
3460 Writes a <see cref="T:System.Int32"/> value. | |
3461 </summary> | |
3462 <param name="value">The <see cref="T:System.Int32"/> value to write.</param> | |
3463 </member> | |
3464 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)"> | |
3465 <summary> | |
3466 Writes a <see cref="T:System.UInt32"/> value. | |
3467 </summary> | |
3468 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> | |
3469 </member> | |
3470 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)"> | |
3471 <summary> | |
3472 Writes a <see cref="T:System.Int64"/> value. | |
3473 </summary> | |
3474 <param name="value">The <see cref="T:System.Int64"/> value to write.</param> | |
3475 </member> | |
3476 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)"> | |
3477 <summary> | |
3478 Writes a <see cref="T:System.UInt64"/> value. | |
3479 </summary> | |
3480 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> | |
3481 </member> | |
3482 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)"> | |
3483 <summary> | |
3484 Writes a <see cref="T:System.Single"/> value. | |
3485 </summary> | |
3486 <param name="value">The <see cref="T:System.Single"/> value to write.</param> | |
3487 </member> | |
3488 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)"> | |
3489 <summary> | |
3490 Writes a <see cref="T:System.Double"/> value. | |
3491 </summary> | |
3492 <param name="value">The <see cref="T:System.Double"/> value to write.</param> | |
3493 </member> | |
3494 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)"> | |
3495 <summary> | |
3496 Writes a <see cref="T:System.Boolean"/> value. | |
3497 </summary> | |
3498 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> | |
3499 </member> | |
3500 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)"> | |
3501 <summary> | |
3502 Writes a <see cref="T:System.Int16"/> value. | |
3503 </summary> | |
3504 <param name="value">The <see cref="T:System.Int16"/> value to write.</param> | |
3505 </member> | |
3506 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)"> | |
3507 <summary> | |
3508 Writes a <see cref="T:System.UInt16"/> value. | |
3509 </summary> | |
3510 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param> | |
3511 </member> | |
3512 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)"> | |
3513 <summary> | |
3514 Writes a <see cref="T:System.Char"/> value. | |
3515 </summary> | |
3516 <param name="value">The <see cref="T:System.Char"/> value to write.</param> | |
3517 </member> | |
3518 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)"> | |
3519 <summary> | |
3520 Writes a <see cref="T:System.Byte"/> value. | |
3521 </summary> | |
3522 <param name="value">The <see cref="T:System.Byte"/> value to write.</param> | |
3523 </member> | |
3524 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)"> | |
3525 <summary> | |
3526 Writes a <see cref="T:System.SByte"/> value. | |
3527 </summary> | |
3528 <param name="value">The <see cref="T:System.SByte"/> value to write.</param> | |
3529 </member> | |
3530 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)"> | |
3531 <summary> | |
3532 Writes a <see cref="T:System.Decimal"/> value. | |
3533 </summary> | |
3534 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> | |
3535 </member> | |
3536 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)"> | |
3537 <summary> | |
3538 Writes a <see cref="T:System.DateTime"/> value. | |
3539 </summary> | |
3540 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> | |
3541 </member> | |
3542 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])"> | |
3543 <summary> | |
3544 Writes a <see cref="T:Byte[]"/> value. | |
3545 </summary> | |
3546 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> | |
3547 </member> | |
3548 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)"> | |
3549 <summary> | |
3550 Writes a <see cref="T:System.DateTimeOffset"/> value. | |
3551 </summary> | |
3552 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> | |
3553 </member> | |
3554 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)"> | |
3555 <summary> | |
3556 Writes a <see cref="T:System.Guid"/> value. | |
3557 </summary> | |
3558 <param name="value">The <see cref="T:System.Guid"/> value to write.</param> | |
3559 </member> | |
3560 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)"> | |
3561 <summary> | |
3562 Writes a <see cref="T:System.TimeSpan"/> value. | |
3563 </summary> | |
3564 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> | |
3565 </member> | |
3566 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)"> | |
3567 <summary> | |
3568 Writes a <see cref="T:System.Uri"/> value. | |
3569 </summary> | |
3570 <param name="value">The <see cref="T:System.Uri"/> value to write.</param> | |
3571 </member> | |
3572 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)"> | |
3573 <summary> | |
3574 Writes out a comment <code>/*...*/</code> containing the specified text. | |
3575 </summary> | |
3576 <param name="text">Text to place inside the comment.</param> | |
3577 </member> | |
3578 <member name="M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)"> | |
3579 <summary> | |
3580 Writes out the given white space. | |
3581 </summary> | |
3582 <param name="ws">The string of white space characters.</param> | |
3583 </member> | |
3584 <member name="P:Newtonsoft.Json.JsonTextWriter.Indentation"> | |
3585 <summary> | |
3586 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>. | |
3587 </summary> | |
3588 </member> | |
3589 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteChar"> | |
3590 <summary> | |
3591 Gets or sets which character to use to quote attribute values. | |
3592 </summary> | |
3593 </member> | |
3594 <member name="P:Newtonsoft.Json.JsonTextWriter.IndentChar"> | |
3595 <summary> | |
3596 Gets or sets which character to use for indenting when <see cref="T:Newtonsoft.Json.Formatting"/> is set to <c>Formatting.Indented</c>. | |
3597 </summary> | |
3598 </member> | |
3599 <member name="P:Newtonsoft.Json.JsonTextWriter.QuoteName"> | |
3600 <summary> | |
3601 Gets or sets a value indicating whether object names will be surrounded with quotes. | |
3602 </summary> | |
3603 </member> | |
3604 <member name="T:Newtonsoft.Json.JsonWriterException"> | |
3605 <summary> | |
3606 The exception thrown when an error occurs while reading Json text. | |
3607 </summary> | |
3608 </member> | |
3609 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor"> | |
3610 <summary> | |
3611 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class. | |
3612 </summary> | |
3613 </member> | |
3614 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)"> | |
3615 <summary> | |
3616 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class | |
3617 with a specified error message. | |
3618 </summary> | |
3619 <param name="message">The error message that explains the reason for the exception.</param> | |
3620 </member> | |
3621 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)"> | |
3622 <summary> | |
3623 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class | |
3624 with a specified error message and a reference to the inner exception that is the cause of this exception. | |
3625 </summary> | |
3626 <param name="message">The error message that explains the reason for the exception.</param> | |
3627 <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> | |
3628 </member> | |
3629 <member name="M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> | |
3630 <summary> | |
3631 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonWriterException"/> class. | |
3632 </summary> | |
3633 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | |
3634 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> | |
3635 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> | |
3636 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception> | |
3637 </member> | |
3638 <member name="T:Newtonsoft.Json.JsonReaderException"> | |
3639 <summary> | |
3640 The exception thrown when an error occurs while reading Json text. | |
3641 </summary> | |
3642 </member> | |
3643 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor"> | |
3644 <summary> | |
3645 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class. | |
3646 </summary> | |
3647 </member> | |
3648 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)"> | |
3649 <summary> | |
3650 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class | |
3651 with a specified error message. | |
3652 </summary> | |
3653 <param name="message">The error message that explains the reason for the exception.</param> | |
3654 </member> | |
3655 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)"> | |
3656 <summary> | |
3657 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class | |
3658 with a specified error message and a reference to the inner exception that is the cause of this exception. | |
3659 </summary> | |
3660 <param name="message">The error message that explains the reason for the exception.</param> | |
3661 <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> | |
3662 </member> | |
3663 <member name="M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> | |
3664 <summary> | |
3665 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonReaderException"/> class. | |
3666 </summary> | |
3667 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | |
3668 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> | |
3669 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> | |
3670 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception> | |
3671 </member> | |
3672 <member name="P:Newtonsoft.Json.JsonReaderException.LineNumber"> | |
3673 <summary> | |
3674 Gets the line number indicating where the error occurred. | |
3675 </summary> | |
3676 <value>The line number indicating where the error occurred.</value> | |
3677 </member> | |
3678 <member name="P:Newtonsoft.Json.JsonReaderException.LinePosition"> | |
3679 <summary> | |
3680 Gets the line position indicating where the error occurred. | |
3681 </summary> | |
3682 <value>The line position indicating where the error occurred.</value> | |
3683 </member> | |
3684 <member name="T:Newtonsoft.Json.JsonConverterCollection"> | |
3685 <summary> | |
3686 Represents a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. | |
3687 </summary> | |
3688 </member> | |
3689 <member name="T:Newtonsoft.Json.JsonConvert"> | |
3690 <summary> | |
3691 Provides methods for converting between common language runtime types and JSON types. | |
3692 </summary> | |
3693 </member> | |
3694 <member name="F:Newtonsoft.Json.JsonConvert.True"> | |
3695 <summary> | |
3696 Represents JavaScript's boolean value true as a string. This field is read-only. | |
3697 </summary> | |
3698 </member> | |
3699 <member name="F:Newtonsoft.Json.JsonConvert.False"> | |
3700 <summary> | |
3701 Represents JavaScript's boolean value false as a string. This field is read-only. | |
3702 </summary> | |
3703 </member> | |
3704 <member name="F:Newtonsoft.Json.JsonConvert.Null"> | |
3705 <summary> | |
3706 Represents JavaScript's null as a string. This field is read-only. | |
3707 </summary> | |
3708 </member> | |
3709 <member name="F:Newtonsoft.Json.JsonConvert.Undefined"> | |
3710 <summary> | |
3711 Represents JavaScript's undefined as a string. This field is read-only. | |
3712 </summary> | |
3713 </member> | |
3714 <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity"> | |
3715 <summary> | |
3716 Represents JavaScript's positive infinity as a string. This field is read-only. | |
3717 </summary> | |
3718 </member> | |
3719 <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity"> | |
3720 <summary> | |
3721 Represents JavaScript's negative infinity as a string. This field is read-only. | |
3722 </summary> | |
3723 </member> | |
3724 <member name="F:Newtonsoft.Json.JsonConvert.NaN"> | |
3725 <summary> | |
3726 Represents JavaScript's NaN as a string. This field is read-only. | |
3727 </summary> | |
3728 </member> | |
3729 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)"> | |
3730 <summary> | |
3731 Converts the <see cref="T:System.DateTime"/> to its JSON string representation. | |
3732 </summary> | |
3733 <param name="value">The value to convert.</param> | |
3734 <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns> | |
3735 </member> | |
3736 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)"> | |
3737 <summary> | |
3738 Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation. | |
3739 </summary> | |
3740 <param name="value">The value to convert.</param> | |
3741 <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns> | |
3742 </member> | |
3743 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)"> | |
3744 <summary> | |
3745 Converts the <see cref="T:System.Boolean"/> to its JSON string representation. | |
3746 </summary> | |
3747 <param name="value">The value to convert.</param> | |
3748 <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns> | |
3749 </member> | |
3750 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)"> | |
3751 <summary> | |
3752 Converts the <see cref="T:System.Char"/> to its JSON string representation. | |
3753 </summary> | |
3754 <param name="value">The value to convert.</param> | |
3755 <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns> | |
3756 </member> | |
3757 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)"> | |
3758 <summary> | |
3759 Converts the <see cref="T:System.Enum"/> to its JSON string representation. | |
3760 </summary> | |
3761 <param name="value">The value to convert.</param> | |
3762 <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns> | |
3763 </member> | |
3764 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)"> | |
3765 <summary> | |
3766 Converts the <see cref="T:System.Int32"/> to its JSON string representation. | |
3767 </summary> | |
3768 <param name="value">The value to convert.</param> | |
3769 <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns> | |
3770 </member> | |
3771 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)"> | |
3772 <summary> | |
3773 Converts the <see cref="T:System.Int16"/> to its JSON string representation. | |
3774 </summary> | |
3775 <param name="value">The value to convert.</param> | |
3776 <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns> | |
3777 </member> | |
3778 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)"> | |
3779 <summary> | |
3780 Converts the <see cref="T:System.UInt16"/> to its JSON string representation. | |
3781 </summary> | |
3782 <param name="value">The value to convert.</param> | |
3783 <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns> | |
3784 </member> | |
3785 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)"> | |
3786 <summary> | |
3787 Converts the <see cref="T:System.UInt32"/> to its JSON string representation. | |
3788 </summary> | |
3789 <param name="value">The value to convert.</param> | |
3790 <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns> | |
3791 </member> | |
3792 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)"> | |
3793 <summary> | |
3794 Converts the <see cref="T:System.Int64"/> to its JSON string representation. | |
3795 </summary> | |
3796 <param name="value">The value to convert.</param> | |
3797 <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns> | |
3798 </member> | |
3799 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)"> | |
3800 <summary> | |
3801 Converts the <see cref="T:System.UInt64"/> to its JSON string representation. | |
3802 </summary> | |
3803 <param name="value">The value to convert.</param> | |
3804 <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns> | |
3805 </member> | |
3806 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)"> | |
3807 <summary> | |
3808 Converts the <see cref="T:System.Single"/> to its JSON string representation. | |
3809 </summary> | |
3810 <param name="value">The value to convert.</param> | |
3811 <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns> | |
3812 </member> | |
3813 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)"> | |
3814 <summary> | |
3815 Converts the <see cref="T:System.Double"/> to its JSON string representation. | |
3816 </summary> | |
3817 <param name="value">The value to convert.</param> | |
3818 <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns> | |
3819 </member> | |
3820 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)"> | |
3821 <summary> | |
3822 Converts the <see cref="T:System.Byte"/> to its JSON string representation. | |
3823 </summary> | |
3824 <param name="value">The value to convert.</param> | |
3825 <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns> | |
3826 </member> | |
3827 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)"> | |
3828 <summary> | |
3829 Converts the <see cref="T:System.SByte"/> to its JSON string representation. | |
3830 </summary> | |
3831 <param name="value">The value to convert.</param> | |
3832 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> | |
3833 </member> | |
3834 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)"> | |
3835 <summary> | |
3836 Converts the <see cref="T:System.Decimal"/> to its JSON string representation. | |
3837 </summary> | |
3838 <param name="value">The value to convert.</param> | |
3839 <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> | |
3840 </member> | |
3841 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)"> | |
3842 <summary> | |
3843 Converts the <see cref="T:System.Guid"/> to its JSON string representation. | |
3844 </summary> | |
3845 <param name="value">The value to convert.</param> | |
3846 <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns> | |
3847 </member> | |
3848 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)"> | |
3849 <summary> | |
3850 Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation. | |
3851 </summary> | |
3852 <param name="value">The value to convert.</param> | |
3853 <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns> | |
3854 </member> | |
3855 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)"> | |
3856 <summary> | |
3857 Converts the <see cref="T:System.Uri"/> to its JSON string representation. | |
3858 </summary> | |
3859 <param name="value">The value to convert.</param> | |
3860 <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns> | |
3861 </member> | |
3862 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)"> | |
3863 <summary> | |
3864 Converts the <see cref="T:System.String"/> to its JSON string representation. | |
3865 </summary> | |
3866 <param name="value">The value to convert.</param> | |
3867 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> | |
3868 </member> | |
3869 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)"> | |
3870 <summary> | |
3871 Converts the <see cref="T:System.String"/> to its JSON string representation. | |
3872 </summary> | |
3873 <param name="value">The value to convert.</param> | |
3874 <param name="delimter">The string delimiter character.</param> | |
3875 <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> | |
3876 </member> | |
3877 <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)"> | |
3878 <summary> | |
3879 Converts the <see cref="T:System.Object"/> to its JSON string representation. | |
3880 </summary> | |
3881 <param name="value">The value to convert.</param> | |
3882 <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns> | |
3883 </member> | |
3884 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)"> | |
3885 <summary> | |
3886 Serializes the specified object to a JSON string. | |
3887 </summary> | |
3888 <param name="value">The object to serialize.</param> | |
3889 <returns>A JSON string representation of the object.</returns> | |
3890 </member> | |
3891 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)"> | |
3892 <summary> | |
3893 Serializes the specified object to a JSON string. | |
3894 </summary> | |
3895 <param name="value">The object to serialize.</param> | |
3896 <param name="formatting">Indicates how the output is formatted.</param> | |
3897 <returns> | |
3898 A JSON string representation of the object. | |
3899 </returns> | |
3900 </member> | |
3901 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])"> | |
3902 <summary> | |
3903 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. | |
3904 </summary> | |
3905 <param name="value">The object to serialize.</param> | |
3906 <param name="converters">A collection converters used while serializing.</param> | |
3907 <returns>A JSON string representation of the object.</returns> | |
3908 </member> | |
3909 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])"> | |
3910 <summary> | |
3911 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. | |
3912 </summary> | |
3913 <param name="value">The object to serialize.</param> | |
3914 <param name="formatting">Indicates how the output is formatted.</param> | |
3915 <param name="converters">A collection converters used while serializing.</param> | |
3916 <returns>A JSON string representation of the object.</returns> | |
3917 </member> | |
3918 <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> | |
3919 <summary> | |
3920 Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. | |
3921 </summary> | |
3922 <param name="value">The object to serialize.</param> | |
3923 <param name="formatting">Indicates how the output is formatted.</param> | |
3924 <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. | |
3925 If this is null, default serialization settings will be is used.</param> | |
3926 <returns> | |
3927 A JSON string representation of the object. | |
3928 </returns> | |
3929 </member> | |
3930 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)"> | |
3931 <summary> | |
3932 Deserializes the JSON to a .NET object. | |
3933 </summary> | |
3934 <param name="value">The JSON to deserialize.</param> | |
3935 <returns>The deserialized object from the Json string.</returns> | |
3936 </member> | |
3937 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)"> | |
3938 <summary> | |
3939 Deserializes the JSON to a .NET object. | |
3940 </summary> | |
3941 <param name="value">The JSON to deserialize.</param> | |
3942 <param name="settings"> | |
3943 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. | |
3944 If this is null, default serialization settings will be is used. | |
3945 </param> | |
3946 <returns>The deserialized object from the JSON string.</returns> | |
3947 </member> | |
3948 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)"> | |
3949 <summary> | |
3950 Deserializes the JSON to the specified .NET type. | |
3951 </summary> | |
3952 <param name="value">The JSON to deserialize.</param> | |
3953 <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param> | |
3954 <returns>The deserialized object from the Json string.</returns> | |
3955 </member> | |
3956 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)"> | |
3957 <summary> | |
3958 Deserializes the JSON to the specified .NET type. | |
3959 </summary> | |
3960 <typeparam name="T">The type of the object to deserialize to.</typeparam> | |
3961 <param name="value">The JSON to deserialize.</param> | |
3962 <returns>The deserialized object from the Json string.</returns> | |
3963 </member> | |
3964 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)"> | |
3965 <summary> | |
3966 Deserializes the JSON to the given anonymous type. | |
3967 </summary> | |
3968 <typeparam name="T"> | |
3969 The anonymous type to deserialize to. This can't be specified | |
3970 traditionally and must be infered from the anonymous type passed | |
3971 as a parameter. | |
3972 </typeparam> | |
3973 <param name="value">The JSON to deserialize.</param> | |
3974 <param name="anonymousTypeObject">The anonymous type object.</param> | |
3975 <returns>The deserialized anonymous type from the JSON string.</returns> | |
3976 </member> | |
3977 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])"> | |
3978 <summary> | |
3979 Deserializes the JSON to the specified .NET type. | |
3980 </summary> | |
3981 <typeparam name="T">The type of the object to deserialize to.</typeparam> | |
3982 <param name="value">The JSON to deserialize.</param> | |
3983 <param name="converters">Converters to use while deserializing.</param> | |
3984 <returns>The deserialized object from the JSON string.</returns> | |
3985 </member> | |
3986 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)"> | |
3987 <summary> | |
3988 Deserializes the JSON to the specified .NET type. | |
3989 </summary> | |
3990 <typeparam name="T">The type of the object to deserialize to.</typeparam> | |
3991 <param name="value">The object to deserialize.</param> | |
3992 <param name="settings"> | |
3993 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. | |
3994 If this is null, default serialization settings will be is used. | |
3995 </param> | |
3996 <returns>The deserialized object from the JSON string.</returns> | |
3997 </member> | |
3998 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])"> | |
3999 <summary> | |
4000 Deserializes the JSON to the specified .NET type. | |
4001 </summary> | |
4002 <param name="value">The JSON to deserialize.</param> | |
4003 <param name="type">The type of the object to deserialize.</param> | |
4004 <param name="converters">Converters to use while deserializing.</param> | |
4005 <returns>The deserialized object from the JSON string.</returns> | |
4006 </member> | |
4007 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> | |
4008 <summary> | |
4009 Deserializes the JSON to the specified .NET type. | |
4010 </summary> | |
4011 <param name="value">The JSON to deserialize.</param> | |
4012 <param name="type">The type of the object to deserialize to.</param> | |
4013 <param name="settings"> | |
4014 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. | |
4015 If this is null, default serialization settings will be is used. | |
4016 </param> | |
4017 <returns>The deserialized object from the JSON string.</returns> | |
4018 </member> | |
4019 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)"> | |
4020 <summary> | |
4021 Populates the object with values from the JSON string. | |
4022 </summary> | |
4023 <param name="value">The JSON to populate values from.</param> | |
4024 <param name="target">The target object to populate values onto.</param> | |
4025 </member> | |
4026 <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)"> | |
4027 <summary> | |
4028 Populates the object with values from the JSON string. | |
4029 </summary> | |
4030 <param name="value">The JSON to populate values from.</param> | |
4031 <param name="target">The target object to populate values onto.</param> | |
4032 <param name="settings"> | |
4033 The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. | |
4034 If this is null, default serialization settings will be is used. | |
4035 </param> | |
4036 </member> | |
4037 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)"> | |
4038 <summary> | |
4039 Serializes the XML node to a JSON string. | |
4040 </summary> | |
4041 <param name="node">The node to serialize.</param> | |
4042 <returns>A JSON string of the XmlNode.</returns> | |
4043 </member> | |
4044 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)"> | |
4045 <summary> | |
4046 Serializes the XML node to a JSON string. | |
4047 </summary> | |
4048 <param name="node">The node to serialize.</param> | |
4049 <param name="formatting">Indicates how the output is formatted.</param> | |
4050 <returns>A JSON string of the XmlNode.</returns> | |
4051 </member> | |
4052 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)"> | |
4053 <summary> | |
4054 Serializes the XML node to a JSON string. | |
4055 </summary> | |
4056 <param name="node">The node to serialize.</param> | |
4057 <param name="formatting">Indicates how the output is formatted.</param> | |
4058 <param name="omitRootObject">Omits writing the root object.</param> | |
4059 <returns>A JSON string of the XmlNode.</returns> | |
4060 </member> | |
4061 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)"> | |
4062 <summary> | |
4063 Deserializes the XmlNode from a JSON string. | |
4064 </summary> | |
4065 <param name="value">The JSON string.</param> | |
4066 <returns>The deserialized XmlNode</returns> | |
4067 </member> | |
4068 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)"> | |
4069 <summary> | |
4070 Deserializes the XmlNode from a JSON string nested in a root elment. | |
4071 </summary> | |
4072 <param name="value">The JSON string.</param> | |
4073 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> | |
4074 <returns>The deserialized XmlNode</returns> | |
4075 </member> | |
4076 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)"> | |
4077 <summary> | |
4078 Deserializes the XmlNode from a JSON string nested in a root elment. | |
4079 </summary> | |
4080 <param name="value">The JSON string.</param> | |
4081 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> | |
4082 <param name="writeArrayAttribute"> | |
4083 A flag to indicate whether to write the Json.NET array attribute. | |
4084 This attribute helps preserve arrays when converting the written XML back to JSON. | |
4085 </param> | |
4086 <returns>The deserialized XmlNode</returns> | |
4087 </member> | |
4088 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)"> | |
4089 <summary> | |
4090 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string. | |
4091 </summary> | |
4092 <param name="node">The node to convert to JSON.</param> | |
4093 <returns>A JSON string of the XNode.</returns> | |
4094 </member> | |
4095 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)"> | |
4096 <summary> | |
4097 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string. | |
4098 </summary> | |
4099 <param name="node">The node to convert to JSON.</param> | |
4100 <param name="formatting">Indicates how the output is formatted.</param> | |
4101 <returns>A JSON string of the XNode.</returns> | |
4102 </member> | |
4103 <member name="M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)"> | |
4104 <summary> | |
4105 Serializes the <see cref="T:System.Xml.Linq.XNode"/> to a JSON string. | |
4106 </summary> | |
4107 <param name="node">The node to serialize.</param> | |
4108 <param name="formatting">Indicates how the output is formatted.</param> | |
4109 <param name="omitRootObject">Omits writing the root object.</param> | |
4110 <returns>A JSON string of the XNode.</returns> | |
4111 </member> | |
4112 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)"> | |
4113 <summary> | |
4114 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string. | |
4115 </summary> | |
4116 <param name="value">The JSON string.</param> | |
4117 <returns>The deserialized XNode</returns> | |
4118 </member> | |
4119 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)"> | |
4120 <summary> | |
4121 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment. | |
4122 </summary> | |
4123 <param name="value">The JSON string.</param> | |
4124 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> | |
4125 <returns>The deserialized XNode</returns> | |
4126 </member> | |
4127 <member name="M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)"> | |
4128 <summary> | |
4129 Deserializes the <see cref="T:System.Xml.Linq.XNode"/> from a JSON string nested in a root elment. | |
4130 </summary> | |
4131 <param name="value">The JSON string.</param> | |
4132 <param name="deserializeRootElementName">The name of the root element to append when deserializing.</param> | |
4133 <param name="writeArrayAttribute"> | |
4134 A flag to indicate whether to write the Json.NET array attribute. | |
4135 This attribute helps preserve arrays when converting the written XML back to JSON. | |
4136 </param> | |
4137 <returns>The deserialized XNode</returns> | |
4138 </member> | |
4139 <member name="T:Newtonsoft.Json.JsonSerializationException"> | |
4140 <summary> | |
4141 The exception thrown when an error occurs during Json serialization or deserialization. | |
4142 </summary> | |
4143 </member> | |
4144 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor"> | |
4145 <summary> | |
4146 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class. | |
4147 </summary> | |
4148 </member> | |
4149 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)"> | |
4150 <summary> | |
4151 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class | |
4152 with a specified error message. | |
4153 </summary> | |
4154 <param name="message">The error message that explains the reason for the exception.</param> | |
4155 </member> | |
4156 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)"> | |
4157 <summary> | |
4158 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class | |
4159 with a specified error message and a reference to the inner exception that is the cause of this exception. | |
4160 </summary> | |
4161 <param name="message">The error message that explains the reason for the exception.</param> | |
4162 <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> | |
4163 </member> | |
4164 <member name="M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> | |
4165 <summary> | |
4166 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializationException"/> class. | |
4167 </summary> | |
4168 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | |
4169 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> | |
4170 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> | |
4171 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception> | |
4172 </member> | |
4173 <member name="T:Newtonsoft.Json.JsonSerializer"> | |
4174 <summary> | |
4175 Serializes and deserializes objects into and from the JSON format. | |
4176 The <see cref="T:Newtonsoft.Json.JsonSerializer"/> enables you to control how objects are encoded into JSON. | |
4177 </summary> | |
4178 </member> | |
4179 <member name="M:Newtonsoft.Json.JsonSerializer.#ctor"> | |
4180 <summary> | |
4181 Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonSerializer"/> class. | |
4182 </summary> | |
4183 </member> | |
4184 <member name="M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)"> | |
4185 <summary> | |
4186 Creates a new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. | |
4187 </summary> | |
4188 <param name="settings">The settings to be applied to the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.</param> | |
4189 <returns>A new <see cref="T:Newtonsoft.Json.JsonSerializer"/> instance using the specified <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.</returns> | |
4190 </member> | |
4191 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)"> | |
4192 <summary> | |
4193 Populates the JSON values onto the target object. | |
4194 </summary> | |
4195 <param name="reader">The <see cref="T:System.IO.TextReader"/> that contains the JSON structure to reader values from.</param> | |
4196 <param name="target">The target object to populate values onto.</param> | |
4197 </member> | |
4198 <member name="M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)"> | |
4199 <summary> | |
4200 Populates the JSON values onto the target object. | |
4201 </summary> | |
4202 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to reader values from.</param> | |
4203 <param name="target">The target object to populate values onto.</param> | |
4204 </member> | |
4205 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)"> | |
4206 <summary> | |
4207 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
4208 </summary> | |
4209 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> that contains the JSON structure to deserialize.</param> | |
4210 <returns>The <see cref="T:System.Object"/> being deserialized.</returns> | |
4211 </member> | |
4212 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)"> | |
4213 <summary> | |
4214 Deserializes the Json structure contained by the specified <see cref="T:System.IO.StringReader"/> | |
4215 into an instance of the specified type. | |
4216 </summary> | |
4217 <param name="reader">The <see cref="T:System.IO.TextReader"/> containing the object.</param> | |
4218 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param> | |
4219 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns> | |
4220 </member> | |
4221 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)"> | |
4222 <summary> | |
4223 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/> | |
4224 into an instance of the specified type. | |
4225 </summary> | |
4226 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param> | |
4227 <typeparam name="T">The type of the object to deserialize.</typeparam> | |
4228 <returns>The instance of <typeparamref name="T"/> being deserialized.</returns> | |
4229 </member> | |
4230 <member name="M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)"> | |
4231 <summary> | |
4232 Deserializes the Json structure contained by the specified <see cref="T:Newtonsoft.Json.JsonReader"/> | |
4233 into an instance of the specified type. | |
4234 </summary> | |
4235 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the object.</param> | |
4236 <param name="objectType">The <see cref="T:System.Type"/> of object being deserialized.</param> | |
4237 <returns>The instance of <paramref name="objectType"/> being deserialized.</returns> | |
4238 </member> | |
4239 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)"> | |
4240 <summary> | |
4241 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure | |
4242 to a <c>Stream</c> using the specified <see cref="T:System.IO.TextWriter"/>. | |
4243 </summary> | |
4244 <param name="textWriter">The <see cref="T:System.IO.TextWriter"/> used to write the Json structure.</param> | |
4245 <param name="value">The <see cref="T:System.Object"/> to serialize.</param> | |
4246 </member> | |
4247 <member name="M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)"> | |
4248 <summary> | |
4249 Serializes the specified <see cref="T:System.Object"/> and writes the Json structure | |
4250 to a <c>Stream</c> using the specified <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
4251 </summary> | |
4252 <param name="jsonWriter">The <see cref="T:Newtonsoft.Json.JsonWriter"/> used to write the Json structure.</param> | |
4253 <param name="value">The <see cref="T:System.Object"/> to serialize.</param> | |
4254 </member> | |
4255 <member name="E:Newtonsoft.Json.JsonSerializer.Error"> | |
4256 <summary> | |
4257 Occurs when the <see cref="T:Newtonsoft.Json.JsonSerializer"/> errors during serialization and deserialization. | |
4258 </summary> | |
4259 </member> | |
4260 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceResolver"> | |
4261 <summary> | |
4262 Gets or sets the <see cref="T:Newtonsoft.Json.Serialization.IReferenceResolver"/> used by the serializer when resolving references. | |
4263 </summary> | |
4264 </member> | |
4265 <member name="P:Newtonsoft.Json.JsonSerializer.Binder"> | |
4266 <summary> | |
4267 Gets or sets the <see cref="T:System.Runtime.Serialization.SerializationBinder"/> used by the serializer when resolving type names. | |
4268 </summary> | |
4269 </member> | |
4270 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameHandling"> | |
4271 <summary> | |
4272 Gets or sets how type name writing and reading is handled by the serializer. | |
4273 </summary> | |
4274 </member> | |
4275 <member name="P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat"> | |
4276 <summary> | |
4277 Gets or sets how a type name assembly is written and resolved by the serializer. | |
4278 </summary> | |
4279 <value>The type name assembly format.</value> | |
4280 </member> | |
4281 <member name="P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling"> | |
4282 <summary> | |
4283 Gets or sets how object references are preserved by the serializer. | |
4284 </summary> | |
4285 </member> | |
4286 <member name="P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling"> | |
4287 <summary> | |
4288 Get or set how reference loops (e.g. a class referencing itself) is handled. | |
4289 </summary> | |
4290 </member> | |
4291 <member name="P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling"> | |
4292 <summary> | |
4293 Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. | |
4294 </summary> | |
4295 </member> | |
4296 <member name="P:Newtonsoft.Json.JsonSerializer.NullValueHandling"> | |
4297 <summary> | |
4298 Get or set how null values are handled during serialization and deserialization. | |
4299 </summary> | |
4300 </member> | |
4301 <member name="P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling"> | |
4302 <summary> | |
4303 Get or set how null default are handled during serialization and deserialization. | |
4304 </summary> | |
4305 </member> | |
4306 <member name="P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling"> | |
4307 <summary> | |
4308 Gets or sets how objects are created during deserialization. | |
4309 </summary> | |
4310 <value>The object creation handling.</value> | |
4311 </member> | |
4312 <member name="P:Newtonsoft.Json.JsonSerializer.ConstructorHandling"> | |
4313 <summary> | |
4314 Gets or sets how constructors are used during deserialization. | |
4315 </summary> | |
4316 <value>The constructor handling.</value> | |
4317 </member> | |
4318 <member name="P:Newtonsoft.Json.JsonSerializer.Converters"> | |
4319 <summary> | |
4320 Gets a collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization. | |
4321 </summary> | |
4322 <value>Collection <see cref="T:Newtonsoft.Json.JsonConverter"/> that will be used during serialization.</value> | |
4323 </member> | |
4324 <member name="P:Newtonsoft.Json.JsonSerializer.ContractResolver"> | |
4325 <summary> | |
4326 Gets or sets the contract resolver used by the serializer when | |
4327 serializing .NET objects to JSON and vice versa. | |
4328 </summary> | |
4329 </member> | |
4330 <member name="P:Newtonsoft.Json.JsonSerializer.Context"> | |
4331 <summary> | |
4332 Gets or sets the <see cref="T:System.Runtime.Serialization.StreamingContext"/> used by the serializer when invoking serialization callback methods. | |
4333 </summary> | |
4334 <value>The context.</value> | |
4335 </member> | |
4336 <member name="T:Newtonsoft.Json.Linq.Extensions"> | |
4337 <summary> | |
4338 Contains the LINQ to JSON extension methods. | |
4339 </summary> | |
4340 </member> | |
4341 <member name="M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})"> | |
4342 <summary> | |
4343 Returns a collection of tokens that contains the ancestors of every token in the source collection. | |
4344 </summary> | |
4345 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</typeparam> | |
4346 <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> | |
4347 <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> | |
4348 </member> | |
4349 <member name="M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})"> | |
4350 <summary> | |
4351 Returns a collection of tokens that contains the descendants of every token in the source collection. | |
4352 </summary> | |
4353 <typeparam name="T">The type of the objects in source, constrained to <see cref="T:Newtonsoft.Json.Linq.JContainer"/>.</typeparam> | |
4354 <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> | |
4355 <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> | |
4356 </member> | |
4357 <member name="M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})"> | |
4358 <summary> | |
4359 Returns a collection of child properties of every object in the source collection. | |
4360 </summary> | |
4361 <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> | |
4362 <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> | |
4363 </member> | |
4364 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)"> | |
4365 <summary> | |
4366 Returns a collection of child values of every object in the source collection with the given key. | |
4367 </summary> | |
4368 <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> | |
4369 <param name="key">The token key.</param> | |
4370 <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> | |
4371 </member> | |
4372 <member name="M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> | |
4373 <summary> | |
4374 Returns a collection of child values of every object in the source collection. | |
4375 </summary> | |
4376 <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> | |
4377 <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> | |
4378 </member> | |
4379 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)"> | |
4380 <summary> | |
4381 Returns a collection of converted child values of every object in the source collection with the given key. | |
4382 </summary> | |
4383 <typeparam name="U">The type to convert the values to.</typeparam> | |
4384 <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> | |
4385 <param name="key">The token key.</param> | |
4386 <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> | |
4387 </member> | |
4388 <member name="M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> | |
4389 <summary> | |
4390 Returns a collection of converted child values of every object in the source collection. | |
4391 </summary> | |
4392 <typeparam name="U">The type to convert the values to.</typeparam> | |
4393 <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> | |
4394 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns> | |
4395 </member> | |
4396 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> | |
4397 <summary> | |
4398 Converts the value. | |
4399 </summary> | |
4400 <typeparam name="U">The type to convert the value to.</typeparam> | |
4401 <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> | |
4402 <returns>A converted value.</returns> | |
4403 </member> | |
4404 <member name="M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})"> | |
4405 <summary> | |
4406 Converts the value. | |
4407 </summary> | |
4408 <typeparam name="T">The source collection type.</typeparam> | |
4409 <typeparam name="U">The type to convert the value to.</typeparam> | |
4410 <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> | |
4411 <returns>A converted value.</returns> | |
4412 </member> | |
4413 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})"> | |
4414 <summary> | |
4415 Returns a collection of child tokens of every array in the source collection. | |
4416 </summary> | |
4417 <typeparam name="T">The source collection type.</typeparam> | |
4418 <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> | |
4419 <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> | |
4420 </member> | |
4421 <member name="M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})"> | |
4422 <summary> | |
4423 Returns a collection of converted child tokens of every array in the source collection. | |
4424 </summary> | |
4425 <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> | |
4426 <typeparam name="U">The type to convert the values to.</typeparam> | |
4427 <typeparam name="T">The source collection type.</typeparam> | |
4428 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the converted values of every node in the source collection.</returns> | |
4429 </member> | |
4430 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})"> | |
4431 <summary> | |
4432 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>. | |
4433 </summary> | |
4434 <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> | |
4435 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns> | |
4436 </member> | |
4437 <member name="M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})"> | |
4438 <summary> | |
4439 Returns the input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>. | |
4440 </summary> | |
4441 <typeparam name="T">The source collection type.</typeparam> | |
4442 <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> | |
4443 <returns>The input typed as <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/>.</returns> | |
4444 </member> | |
4445 <member name="T:Newtonsoft.Json.Linq.JConstructor"> | |
4446 <summary> | |
4447 Represents a JSON constructor. | |
4448 </summary> | |
4449 </member> | |
4450 <member name="T:Newtonsoft.Json.Linq.JContainer"> | |
4451 <summary> | |
4452 Represents a token that can contain other tokens. | |
4453 </summary> | |
4454 </member> | |
4455 <member name="M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)"> | |
4456 <summary> | |
4457 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.AddingNew"/> event. | |
4458 </summary> | |
4459 <param name="e">The <see cref="T:System.ComponentModel.AddingNewEventArgs"/> instance containing the event data.</param> | |
4460 </member> | |
4461 <member name="M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)"> | |
4462 <summary> | |
4463 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.ListChanged"/> event. | |
4464 </summary> | |
4465 <param name="e">The <see cref="T:System.ComponentModel.ListChangedEventArgs"/> instance containing the event data.</param> | |
4466 </member> | |
4467 <member name="M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)"> | |
4468 <summary> | |
4469 Raises the <see cref="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"/> event. | |
4470 </summary> | |
4471 <param name="e">The <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs"/> instance containing the event data.</param> | |
4472 </member> | |
4473 <member name="M:Newtonsoft.Json.Linq.JContainer.Children"> | |
4474 <summary> | |
4475 Returns a collection of the child tokens of this token, in document order. | |
4476 </summary> | |
4477 <returns> | |
4478 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. | |
4479 </returns> | |
4480 </member> | |
4481 <member name="M:Newtonsoft.Json.Linq.JContainer.Values``1"> | |
4482 <summary> | |
4483 Returns a collection of the child values of this token, in document order. | |
4484 </summary> | |
4485 <typeparam name="T">The type to convert the values to.</typeparam> | |
4486 <returns> | |
4487 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. | |
4488 </returns> | |
4489 </member> | |
4490 <member name="M:Newtonsoft.Json.Linq.JContainer.Descendants"> | |
4491 <summary> | |
4492 Returns a collection of the descendant tokens for this token in document order. | |
4493 </summary> | |
4494 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> containing the descendant tokens of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns> | |
4495 </member> | |
4496 <member name="M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)"> | |
4497 <summary> | |
4498 Adds the specified content as children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4499 </summary> | |
4500 <param name="content">The content to be added.</param> | |
4501 </member> | |
4502 <member name="M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)"> | |
4503 <summary> | |
4504 Adds the specified content as the first children of this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4505 </summary> | |
4506 <param name="content">The content to be added.</param> | |
4507 </member> | |
4508 <member name="M:Newtonsoft.Json.Linq.JContainer.CreateWriter"> | |
4509 <summary> | |
4510 Creates an <see cref="T:Newtonsoft.Json.JsonWriter"/> that can be used to add tokens to the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4511 </summary> | |
4512 <returns>An <see cref="T:Newtonsoft.Json.JsonWriter"/> that is ready to have content written to it.</returns> | |
4513 </member> | |
4514 <member name="M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)"> | |
4515 <summary> | |
4516 Replaces the children nodes of this token with the specified content. | |
4517 </summary> | |
4518 <param name="content">The content.</param> | |
4519 </member> | |
4520 <member name="M:Newtonsoft.Json.Linq.JContainer.RemoveAll"> | |
4521 <summary> | |
4522 Removes the child nodes from this token. | |
4523 </summary> | |
4524 </member> | |
4525 <member name="E:Newtonsoft.Json.Linq.JContainer.ListChanged"> | |
4526 <summary> | |
4527 Occurs when the list changes or an item in the list changes. | |
4528 </summary> | |
4529 </member> | |
4530 <member name="E:Newtonsoft.Json.Linq.JContainer.AddingNew"> | |
4531 <summary> | |
4532 Occurs before an item is added to the collection. | |
4533 </summary> | |
4534 </member> | |
4535 <member name="E:Newtonsoft.Json.Linq.JContainer.CollectionChanged"> | |
4536 <summary> | |
4537 Occurs when the items list of the collection has changed, or the collection is reset. | |
4538 </summary> | |
4539 </member> | |
4540 <member name="P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens"> | |
4541 <summary> | |
4542 Gets the container's children tokens. | |
4543 </summary> | |
4544 <value>The container's children tokens.</value> | |
4545 </member> | |
4546 <member name="P:Newtonsoft.Json.Linq.JContainer.HasValues"> | |
4547 <summary> | |
4548 Gets a value indicating whether this token has childen tokens. | |
4549 </summary> | |
4550 <value> | |
4551 <c>true</c> if this token has child values; otherwise, <c>false</c>. | |
4552 </value> | |
4553 </member> | |
4554 <member name="P:Newtonsoft.Json.Linq.JContainer.First"> | |
4555 <summary> | |
4556 Get the first child token of this token. | |
4557 </summary> | |
4558 <value> | |
4559 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the first child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4560 </value> | |
4561 </member> | |
4562 <member name="P:Newtonsoft.Json.Linq.JContainer.Last"> | |
4563 <summary> | |
4564 Get the last child token of this token. | |
4565 </summary> | |
4566 <value> | |
4567 A <see cref="T:Newtonsoft.Json.Linq.JToken"/> containing the last child token of the <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4568 </value> | |
4569 </member> | |
4570 <member name="P:Newtonsoft.Json.Linq.JContainer.Count"> | |
4571 <summary> | |
4572 Gets the count of child JSON tokens. | |
4573 </summary> | |
4574 <value>The count of child JSON tokens</value> | |
4575 </member> | |
4576 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor"> | |
4577 <summary> | |
4578 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class. | |
4579 </summary> | |
4580 </member> | |
4581 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)"> | |
4582 <summary> | |
4583 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class from another <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object. | |
4584 </summary> | |
4585 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> object to copy from.</param> | |
4586 </member> | |
4587 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])"> | |
4588 <summary> | |
4589 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content. | |
4590 </summary> | |
4591 <param name="name">The constructor name.</param> | |
4592 <param name="content">The contents of the constructor.</param> | |
4593 </member> | |
4594 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)"> | |
4595 <summary> | |
4596 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name and content. | |
4597 </summary> | |
4598 <param name="name">The constructor name.</param> | |
4599 <param name="content">The contents of the constructor.</param> | |
4600 </member> | |
4601 <member name="M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)"> | |
4602 <summary> | |
4603 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> class with the specified name. | |
4604 </summary> | |
4605 <param name="name">The constructor name.</param> | |
4606 </member> | |
4607 <member name="M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
4608 <summary> | |
4609 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
4610 </summary> | |
4611 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
4612 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
4613 </member> | |
4614 <member name="M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)"> | |
4615 <summary> | |
4616 Loads an <see cref="T:Newtonsoft.Json.Linq.JConstructor"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
4617 </summary> | |
4618 <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> | |
4619 <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> | |
4620 </member> | |
4621 <member name="P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens"> | |
4622 <summary> | |
4623 Gets the container's children tokens. | |
4624 </summary> | |
4625 <value>The container's children tokens.</value> | |
4626 </member> | |
4627 <member name="P:Newtonsoft.Json.Linq.JConstructor.Name"> | |
4628 <summary> | |
4629 Gets or sets the name of this constructor. | |
4630 </summary> | |
4631 <value>The constructor name.</value> | |
4632 </member> | |
4633 <member name="P:Newtonsoft.Json.Linq.JConstructor.Type"> | |
4634 <summary> | |
4635 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4636 </summary> | |
4637 <value>The type.</value> | |
4638 </member> | |
4639 <member name="P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)"> | |
4640 <summary> | |
4641 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. | |
4642 </summary> | |
4643 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> | |
4644 </member> | |
4645 <member name="T:Newtonsoft.Json.Linq.JEnumerable`1"> | |
4646 <summary> | |
4647 Represents a collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects. | |
4648 </summary> | |
4649 <typeparam name="T">The type of token</typeparam> | |
4650 </member> | |
4651 <member name="F:Newtonsoft.Json.Linq.JEnumerable`1.Empty"> | |
4652 <summary> | |
4653 An empty collection of <see cref="T:Newtonsoft.Json.Linq.JToken"/> objects. | |
4654 </summary> | |
4655 </member> | |
4656 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})"> | |
4657 <summary> | |
4658 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> struct. | |
4659 </summary> | |
4660 <param name="enumerable">The enumerable.</param> | |
4661 </member> | |
4662 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator"> | |
4663 <summary> | |
4664 Returns an enumerator that iterates through the collection. | |
4665 </summary> | |
4666 <returns> | |
4667 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
4668 </returns> | |
4669 </member> | |
4670 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator"> | |
4671 <summary> | |
4672 Returns an enumerator that iterates through a collection. | |
4673 </summary> | |
4674 <returns> | |
4675 An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection. | |
4676 </returns> | |
4677 </member> | |
4678 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)"> | |
4679 <summary> | |
4680 Determines whether the specified <see cref="T:System.Object"/> is equal to this instance. | |
4681 </summary> | |
4682 <param name="obj">The <see cref="T:System.Object"/> to compare with this instance.</param> | |
4683 <returns> | |
4684 <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>. | |
4685 </returns> | |
4686 </member> | |
4687 <member name="M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode"> | |
4688 <summary> | |
4689 Returns a hash code for this instance. | |
4690 </summary> | |
4691 <returns> | |
4692 A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. | |
4693 </returns> | |
4694 </member> | |
4695 <member name="P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)"> | |
4696 <summary> | |
4697 Gets the <see cref="T:Newtonsoft.Json.Linq.IJEnumerable`1"/> with the specified key. | |
4698 </summary> | |
4699 <value></value> | |
4700 </member> | |
4701 <member name="T:Newtonsoft.Json.Linq.JObject"> | |
4702 <summary> | |
4703 Represents a JSON object. | |
4704 </summary> | |
4705 </member> | |
4706 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor"> | |
4707 <summary> | |
4708 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class. | |
4709 </summary> | |
4710 </member> | |
4711 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)"> | |
4712 <summary> | |
4713 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class from another <see cref="T:Newtonsoft.Json.Linq.JObject"/> object. | |
4714 </summary> | |
4715 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JObject"/> object to copy from.</param> | |
4716 </member> | |
4717 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])"> | |
4718 <summary> | |
4719 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content. | |
4720 </summary> | |
4721 <param name="content">The contents of the object.</param> | |
4722 </member> | |
4723 <member name="M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)"> | |
4724 <summary> | |
4725 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JObject"/> class with the specified content. | |
4726 </summary> | |
4727 <param name="content">The contents of the object.</param> | |
4728 </member> | |
4729 <member name="M:Newtonsoft.Json.Linq.JObject.Properties"> | |
4730 <summary> | |
4731 Gets an <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties. | |
4732 </summary> | |
4733 <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of this object's properties.</returns> | |
4734 </member> | |
4735 <member name="M:Newtonsoft.Json.Linq.JObject.Property(System.String)"> | |
4736 <summary> | |
4737 Gets a <see cref="T:Newtonsoft.Json.Linq.JProperty"/> the specified name. | |
4738 </summary> | |
4739 <param name="name">The property name.</param> | |
4740 <returns>A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> with the specified name or null.</returns> | |
4741 </member> | |
4742 <member name="M:Newtonsoft.Json.Linq.JObject.PropertyValues"> | |
4743 <summary> | |
4744 Gets an <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values. | |
4745 </summary> | |
4746 <returns>An <see cref="T:Newtonsoft.Json.Linq.JEnumerable`1"/> of this object's property values.</returns> | |
4747 </member> | |
4748 <member name="M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)"> | |
4749 <summary> | |
4750 Loads an <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
4751 </summary> | |
4752 <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> | |
4753 <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> | |
4754 </member> | |
4755 <member name="M:Newtonsoft.Json.Linq.JObject.Parse(System.String)"> | |
4756 <summary> | |
4757 Load a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from a string that contains JSON. | |
4758 </summary> | |
4759 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> | |
4760 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> populated from the string that contains JSON.</returns> | |
4761 </member> | |
4762 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)"> | |
4763 <summary> | |
4764 Creates a <see cref="T:Newtonsoft.Json.Linq.JObject"/> from an object. | |
4765 </summary> | |
4766 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JObject"/>.</param> | |
4767 <returns>A <see cref="T:Newtonsoft.Json.Linq.JObject"/> with the values of the specified object</returns> | |
4768 </member> | |
4769 <member name="M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> | |
4770 <summary> | |
4771 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object. | |
4772 </summary> | |
4773 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param> | |
4774 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param> | |
4775 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns> | |
4776 </member> | |
4777 <member name="M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
4778 <summary> | |
4779 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
4780 </summary> | |
4781 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
4782 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
4783 </member> | |
4784 <member name="M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)"> | |
4785 <summary> | |
4786 Adds the specified property name. | |
4787 </summary> | |
4788 <param name="propertyName">Name of the property.</param> | |
4789 <param name="value">The value.</param> | |
4790 </member> | |
4791 <member name="M:Newtonsoft.Json.Linq.JObject.Remove(System.String)"> | |
4792 <summary> | |
4793 Removes the property with the specified name. | |
4794 </summary> | |
4795 <param name="propertyName">Name of the property.</param> | |
4796 <returns>true if item was successfully removed; otherwise, false.</returns> | |
4797 </member> | |
4798 <member name="M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)"> | |
4799 <summary> | |
4800 Tries the get value. | |
4801 </summary> | |
4802 <param name="propertyName">Name of the property.</param> | |
4803 <param name="value">The value.</param> | |
4804 <returns>true if a value was successfully retrieved; otherwise, false.</returns> | |
4805 </member> | |
4806 <member name="M:Newtonsoft.Json.Linq.JObject.GetEnumerator"> | |
4807 <summary> | |
4808 Returns an enumerator that iterates through the collection. | |
4809 </summary> | |
4810 <returns> | |
4811 A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection. | |
4812 </returns> | |
4813 </member> | |
4814 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)"> | |
4815 <summary> | |
4816 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"/> event with the provided arguments. | |
4817 </summary> | |
4818 <param name="propertyName">Name of the property.</param> | |
4819 </member> | |
4820 <member name="M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)"> | |
4821 <summary> | |
4822 Raises the <see cref="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"/> event with the provided arguments. | |
4823 </summary> | |
4824 <param name="propertyName">Name of the property.</param> | |
4825 </member> | |
4826 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties"> | |
4827 <summary> | |
4828 Returns the properties for this instance of a component. | |
4829 </summary> | |
4830 <returns> | |
4831 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the properties for this component instance. | |
4832 </returns> | |
4833 </member> | |
4834 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])"> | |
4835 <summary> | |
4836 Returns the properties for this instance of a component using the attribute array as a filter. | |
4837 </summary> | |
4838 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param> | |
4839 <returns> | |
4840 A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> that represents the filtered properties for this component instance. | |
4841 </returns> | |
4842 </member> | |
4843 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes"> | |
4844 <summary> | |
4845 Returns a collection of custom attributes for this instance of a component. | |
4846 </summary> | |
4847 <returns> | |
4848 An <see cref="T:System.ComponentModel.AttributeCollection"/> containing the attributes for this object. | |
4849 </returns> | |
4850 </member> | |
4851 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName"> | |
4852 <summary> | |
4853 Returns the class name of this instance of a component. | |
4854 </summary> | |
4855 <returns> | |
4856 The class name of the object, or null if the class does not have a name. | |
4857 </returns> | |
4858 </member> | |
4859 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName"> | |
4860 <summary> | |
4861 Returns the name of this instance of a component. | |
4862 </summary> | |
4863 <returns> | |
4864 The name of the object, or null if the object does not have a name. | |
4865 </returns> | |
4866 </member> | |
4867 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter"> | |
4868 <summary> | |
4869 Returns a type converter for this instance of a component. | |
4870 </summary> | |
4871 <returns> | |
4872 A <see cref="T:System.ComponentModel.TypeConverter"/> that is the converter for this object, or null if there is no <see cref="T:System.ComponentModel.TypeConverter"/> for this object. | |
4873 </returns> | |
4874 </member> | |
4875 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent"> | |
4876 <summary> | |
4877 Returns the default event for this instance of a component. | |
4878 </summary> | |
4879 <returns> | |
4880 An <see cref="T:System.ComponentModel.EventDescriptor"/> that represents the default event for this object, or null if this object does not have events. | |
4881 </returns> | |
4882 </member> | |
4883 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty"> | |
4884 <summary> | |
4885 Returns the default property for this instance of a component. | |
4886 </summary> | |
4887 <returns> | |
4888 A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the default property for this object, or null if this object does not have properties. | |
4889 </returns> | |
4890 </member> | |
4891 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)"> | |
4892 <summary> | |
4893 Returns an editor of the specified type for this instance of a component. | |
4894 </summary> | |
4895 <param name="editorBaseType">A <see cref="T:System.Type"/> that represents the editor for this object.</param> | |
4896 <returns> | |
4897 An <see cref="T:System.Object"/> of the specified type that is the editor for this object, or null if the editor cannot be found. | |
4898 </returns> | |
4899 </member> | |
4900 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])"> | |
4901 <summary> | |
4902 Returns the events for this instance of a component using the specified attribute array as a filter. | |
4903 </summary> | |
4904 <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param> | |
4905 <returns> | |
4906 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the filtered events for this component instance. | |
4907 </returns> | |
4908 </member> | |
4909 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents"> | |
4910 <summary> | |
4911 Returns the events for this instance of a component. | |
4912 </summary> | |
4913 <returns> | |
4914 An <see cref="T:System.ComponentModel.EventDescriptorCollection"/> that represents the events for this component instance. | |
4915 </returns> | |
4916 </member> | |
4917 <member name="M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)"> | |
4918 <summary> | |
4919 Returns an object that contains the property described by the specified property descriptor. | |
4920 </summary> | |
4921 <param name="pd">A <see cref="T:System.ComponentModel.PropertyDescriptor"/> that represents the property whose owner is to be found.</param> | |
4922 <returns> | |
4923 An <see cref="T:System.Object"/> that represents the owner of the specified property. | |
4924 </returns> | |
4925 </member> | |
4926 <member name="M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)"> | |
4927 <summary> | |
4928 Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. | |
4929 </summary> | |
4930 <param name="parameter">The expression tree representation of the runtime value.</param> | |
4931 <returns> | |
4932 The <see cref="T:System.Dynamic.DynamicMetaObject"/> to bind this object. | |
4933 </returns> | |
4934 </member> | |
4935 <member name="P:Newtonsoft.Json.Linq.JObject.ChildrenTokens"> | |
4936 <summary> | |
4937 Gets the container's children tokens. | |
4938 </summary> | |
4939 <value>The container's children tokens.</value> | |
4940 </member> | |
4941 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanged"> | |
4942 <summary> | |
4943 Occurs when a property value changes. | |
4944 </summary> | |
4945 </member> | |
4946 <member name="E:Newtonsoft.Json.Linq.JObject.PropertyChanging"> | |
4947 <summary> | |
4948 Occurs when a property value is changing. | |
4949 </summary> | |
4950 </member> | |
4951 <member name="P:Newtonsoft.Json.Linq.JObject.Type"> | |
4952 <summary> | |
4953 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
4954 </summary> | |
4955 <value>The type.</value> | |
4956 </member> | |
4957 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.Object)"> | |
4958 <summary> | |
4959 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. | |
4960 </summary> | |
4961 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> | |
4962 </member> | |
4963 <member name="P:Newtonsoft.Json.Linq.JObject.Item(System.String)"> | |
4964 <summary> | |
4965 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified property name. | |
4966 </summary> | |
4967 <value></value> | |
4968 </member> | |
4969 <member name="T:Newtonsoft.Json.Linq.JArray"> | |
4970 <summary> | |
4971 Represents a JSON array. | |
4972 </summary> | |
4973 </member> | |
4974 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor"> | |
4975 <summary> | |
4976 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class. | |
4977 </summary> | |
4978 </member> | |
4979 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)"> | |
4980 <summary> | |
4981 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class from another <see cref="T:Newtonsoft.Json.Linq.JArray"/> object. | |
4982 </summary> | |
4983 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JArray"/> object to copy from.</param> | |
4984 </member> | |
4985 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])"> | |
4986 <summary> | |
4987 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content. | |
4988 </summary> | |
4989 <param name="content">The contents of the array.</param> | |
4990 </member> | |
4991 <member name="M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)"> | |
4992 <summary> | |
4993 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JArray"/> class with the specified content. | |
4994 </summary> | |
4995 <param name="content">The contents of the array.</param> | |
4996 </member> | |
4997 <member name="M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)"> | |
4998 <summary> | |
4999 Loads an <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
5000 </summary> | |
5001 <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> | |
5002 <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> | |
5003 </member> | |
5004 <member name="M:Newtonsoft.Json.Linq.JArray.Parse(System.String)"> | |
5005 <summary> | |
5006 Load a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from a string that contains JSON. | |
5007 </summary> | |
5008 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> | |
5009 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> populated from the string that contains JSON.</returns> | |
5010 </member> | |
5011 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)"> | |
5012 <summary> | |
5013 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object. | |
5014 </summary> | |
5015 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param> | |
5016 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns> | |
5017 </member> | |
5018 <member name="M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)"> | |
5019 <summary> | |
5020 Creates a <see cref="T:Newtonsoft.Json.Linq.JArray"/> from an object. | |
5021 </summary> | |
5022 <param name="o">The object that will be used to create <see cref="T:Newtonsoft.Json.Linq.JArray"/>.</param> | |
5023 <param name="jsonSerializer">The <see cref="T:Newtonsoft.Json.JsonSerializer"/> that will be used to read the object.</param> | |
5024 <returns>A <see cref="T:Newtonsoft.Json.Linq.JArray"/> with the values of the specified object</returns> | |
5025 </member> | |
5026 <member name="M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
5027 <summary> | |
5028 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
5029 </summary> | |
5030 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
5031 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
5032 </member> | |
5033 <member name="M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)"> | |
5034 <summary> | |
5035 Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>. | |
5036 </summary> | |
5037 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param> | |
5038 <returns> | |
5039 The index of <paramref name="item"/> if found in the list; otherwise, -1. | |
5040 </returns> | |
5041 </member> | |
5042 <member name="M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)"> | |
5043 <summary> | |
5044 Inserts an item to the <see cref="T:System.Collections.Generic.IList`1"/> at the specified index. | |
5045 </summary> | |
5046 <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param> | |
5047 <param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1"/>.</param> | |
5048 <exception cref="T:System.ArgumentOutOfRangeException"> | |
5049 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception> | |
5050 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception> | |
5051 </member> | |
5052 <member name="M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)"> | |
5053 <summary> | |
5054 Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index. | |
5055 </summary> | |
5056 <param name="index">The zero-based index of the item to remove.</param> | |
5057 <exception cref="T:System.ArgumentOutOfRangeException"> | |
5058 <paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception> | |
5059 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception> | |
5060 </member> | |
5061 <member name="M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)"> | |
5062 <summary> | |
5063 Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>. | |
5064 </summary> | |
5065 <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> | |
5066 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception> | |
5067 </member> | |
5068 <member name="M:Newtonsoft.Json.Linq.JArray.Clear"> | |
5069 <summary> | |
5070 Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>. | |
5071 </summary> | |
5072 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only. </exception> | |
5073 </member> | |
5074 <member name="M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)"> | |
5075 <summary> | |
5076 Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value. | |
5077 </summary> | |
5078 <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> | |
5079 <returns> | |
5080 true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. | |
5081 </returns> | |
5082 </member> | |
5083 <member name="M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)"> | |
5084 <summary> | |
5085 Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>. | |
5086 </summary> | |
5087 <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param> | |
5088 <returns> | |
5089 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"/>. | |
5090 </returns> | |
5091 <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.</exception> | |
5092 </member> | |
5093 <member name="P:Newtonsoft.Json.Linq.JArray.ChildrenTokens"> | |
5094 <summary> | |
5095 Gets the container's children tokens. | |
5096 </summary> | |
5097 <value>The container's children tokens.</value> | |
5098 </member> | |
5099 <member name="P:Newtonsoft.Json.Linq.JArray.Type"> | |
5100 <summary> | |
5101 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
5102 </summary> | |
5103 <value>The type.</value> | |
5104 </member> | |
5105 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Object)"> | |
5106 <summary> | |
5107 Gets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key. | |
5108 </summary> | |
5109 <value>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> with the specified key.</value> | |
5110 </member> | |
5111 <member name="P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)"> | |
5112 <summary> | |
5113 Gets or sets the <see cref="T:Newtonsoft.Json.Linq.JToken"/> at the specified index. | |
5114 </summary> | |
5115 <value></value> | |
5116 </member> | |
5117 <member name="T:Newtonsoft.Json.Linq.JTokenReader"> | |
5118 <summary> | |
5119 Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. | |
5120 </summary> | |
5121 </member> | |
5122 <member name="M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)"> | |
5123 <summary> | |
5124 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenReader"/> class. | |
5125 </summary> | |
5126 <param name="token">The token to read from.</param> | |
5127 </member> | |
5128 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes"> | |
5129 <summary> | |
5130 Reads the next JSON token from the stream as a <see cref="T:Byte[]"/>. | |
5131 </summary> | |
5132 <returns> | |
5133 A <see cref="T:Byte[]"/> or a null reference if the next JSON token is null. | |
5134 </returns> | |
5135 </member> | |
5136 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal"> | |
5137 <summary> | |
5138 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
5139 </summary> | |
5140 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
5141 </member> | |
5142 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32"> | |
5143 <summary> | |
5144 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
5145 </summary> | |
5146 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
5147 </member> | |
5148 <member name="M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset"> | |
5149 <summary> | |
5150 Reads the next JSON token from the stream as a <see cref="T:System.Nullable`1"/>. | |
5151 </summary> | |
5152 <returns>A <see cref="T:System.Nullable`1"/>.</returns> | |
5153 </member> | |
5154 <member name="M:Newtonsoft.Json.Linq.JTokenReader.Read"> | |
5155 <summary> | |
5156 Reads the next JSON token from the stream. | |
5157 </summary> | |
5158 <returns> | |
5159 true if the next token was read successfully; false if there are no more tokens to read. | |
5160 </returns> | |
5161 </member> | |
5162 <member name="T:Newtonsoft.Json.Linq.JTokenWriter"> | |
5163 <summary> | |
5164 Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. | |
5165 </summary> | |
5166 </member> | |
5167 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)"> | |
5168 <summary> | |
5169 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"/>. | |
5170 </summary> | |
5171 <param name="container">The container being written to.</param> | |
5172 </member> | |
5173 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.#ctor"> | |
5174 <summary> | |
5175 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JTokenWriter"/> class. | |
5176 </summary> | |
5177 </member> | |
5178 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Flush"> | |
5179 <summary> | |
5180 Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. | |
5181 </summary> | |
5182 </member> | |
5183 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.Close"> | |
5184 <summary> | |
5185 Closes this stream and the underlying stream. | |
5186 </summary> | |
5187 </member> | |
5188 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject"> | |
5189 <summary> | |
5190 Writes the beginning of a Json object. | |
5191 </summary> | |
5192 </member> | |
5193 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray"> | |
5194 <summary> | |
5195 Writes the beginning of a Json array. | |
5196 </summary> | |
5197 </member> | |
5198 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)"> | |
5199 <summary> | |
5200 Writes the start of a constructor with the given name. | |
5201 </summary> | |
5202 <param name="name">The name of the constructor.</param> | |
5203 </member> | |
5204 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)"> | |
5205 <summary> | |
5206 Writes the end. | |
5207 </summary> | |
5208 <param name="token">The token.</param> | |
5209 </member> | |
5210 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)"> | |
5211 <summary> | |
5212 Writes the property name of a name/value pair on a Json object. | |
5213 </summary> | |
5214 <param name="name">The name of the property.</param> | |
5215 </member> | |
5216 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull"> | |
5217 <summary> | |
5218 Writes a null value. | |
5219 </summary> | |
5220 </member> | |
5221 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined"> | |
5222 <summary> | |
5223 Writes an undefined value. | |
5224 </summary> | |
5225 </member> | |
5226 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)"> | |
5227 <summary> | |
5228 Writes raw JSON. | |
5229 </summary> | |
5230 <param name="json">The raw JSON to write.</param> | |
5231 </member> | |
5232 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)"> | |
5233 <summary> | |
5234 Writes out a comment <code>/*...*/</code> containing the specified text. | |
5235 </summary> | |
5236 <param name="text">Text to place inside the comment.</param> | |
5237 </member> | |
5238 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)"> | |
5239 <summary> | |
5240 Writes a <see cref="T:System.String"/> value. | |
5241 </summary> | |
5242 <param name="value">The <see cref="T:System.String"/> value to write.</param> | |
5243 </member> | |
5244 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)"> | |
5245 <summary> | |
5246 Writes a <see cref="T:System.Int32"/> value. | |
5247 </summary> | |
5248 <param name="value">The <see cref="T:System.Int32"/> value to write.</param> | |
5249 </member> | |
5250 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)"> | |
5251 <summary> | |
5252 Writes a <see cref="T:System.UInt32"/> value. | |
5253 </summary> | |
5254 <param name="value">The <see cref="T:System.UInt32"/> value to write.</param> | |
5255 </member> | |
5256 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)"> | |
5257 <summary> | |
5258 Writes a <see cref="T:System.Int64"/> value. | |
5259 </summary> | |
5260 <param name="value">The <see cref="T:System.Int64"/> value to write.</param> | |
5261 </member> | |
5262 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)"> | |
5263 <summary> | |
5264 Writes a <see cref="T:System.UInt64"/> value. | |
5265 </summary> | |
5266 <param name="value">The <see cref="T:System.UInt64"/> value to write.</param> | |
5267 </member> | |
5268 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)"> | |
5269 <summary> | |
5270 Writes a <see cref="T:System.Single"/> value. | |
5271 </summary> | |
5272 <param name="value">The <see cref="T:System.Single"/> value to write.</param> | |
5273 </member> | |
5274 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)"> | |
5275 <summary> | |
5276 Writes a <see cref="T:System.Double"/> value. | |
5277 </summary> | |
5278 <param name="value">The <see cref="T:System.Double"/> value to write.</param> | |
5279 </member> | |
5280 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)"> | |
5281 <summary> | |
5282 Writes a <see cref="T:System.Boolean"/> value. | |
5283 </summary> | |
5284 <param name="value">The <see cref="T:System.Boolean"/> value to write.</param> | |
5285 </member> | |
5286 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)"> | |
5287 <summary> | |
5288 Writes a <see cref="T:System.Int16"/> value. | |
5289 </summary> | |
5290 <param name="value">The <see cref="T:System.Int16"/> value to write.</param> | |
5291 </member> | |
5292 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)"> | |
5293 <summary> | |
5294 Writes a <see cref="T:System.UInt16"/> value. | |
5295 </summary> | |
5296 <param name="value">The <see cref="T:System.UInt16"/> value to write.</param> | |
5297 </member> | |
5298 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)"> | |
5299 <summary> | |
5300 Writes a <see cref="T:System.Char"/> value. | |
5301 </summary> | |
5302 <param name="value">The <see cref="T:System.Char"/> value to write.</param> | |
5303 </member> | |
5304 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)"> | |
5305 <summary> | |
5306 Writes a <see cref="T:System.Byte"/> value. | |
5307 </summary> | |
5308 <param name="value">The <see cref="T:System.Byte"/> value to write.</param> | |
5309 </member> | |
5310 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)"> | |
5311 <summary> | |
5312 Writes a <see cref="T:System.SByte"/> value. | |
5313 </summary> | |
5314 <param name="value">The <see cref="T:System.SByte"/> value to write.</param> | |
5315 </member> | |
5316 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)"> | |
5317 <summary> | |
5318 Writes a <see cref="T:System.Decimal"/> value. | |
5319 </summary> | |
5320 <param name="value">The <see cref="T:System.Decimal"/> value to write.</param> | |
5321 </member> | |
5322 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)"> | |
5323 <summary> | |
5324 Writes a <see cref="T:System.DateTime"/> value. | |
5325 </summary> | |
5326 <param name="value">The <see cref="T:System.DateTime"/> value to write.</param> | |
5327 </member> | |
5328 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)"> | |
5329 <summary> | |
5330 Writes a <see cref="T:System.DateTimeOffset"/> value. | |
5331 </summary> | |
5332 <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param> | |
5333 </member> | |
5334 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])"> | |
5335 <summary> | |
5336 Writes a <see cref="T:Byte[]"/> value. | |
5337 </summary> | |
5338 <param name="value">The <see cref="T:Byte[]"/> value to write.</param> | |
5339 </member> | |
5340 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)"> | |
5341 <summary> | |
5342 Writes a <see cref="T:System.TimeSpan"/> value. | |
5343 </summary> | |
5344 <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param> | |
5345 </member> | |
5346 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)"> | |
5347 <summary> | |
5348 Writes a <see cref="T:System.Guid"/> value. | |
5349 </summary> | |
5350 <param name="value">The <see cref="T:System.Guid"/> value to write.</param> | |
5351 </member> | |
5352 <member name="M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)"> | |
5353 <summary> | |
5354 Writes a <see cref="T:System.Uri"/> value. | |
5355 </summary> | |
5356 <param name="value">The <see cref="T:System.Uri"/> value to write.</param> | |
5357 </member> | |
5358 <member name="P:Newtonsoft.Json.Linq.JTokenWriter.Token"> | |
5359 <summary> | |
5360 Gets the token being writen. | |
5361 </summary> | |
5362 <value>The token being writen.</value> | |
5363 </member> | |
5364 <member name="T:Newtonsoft.Json.Linq.JProperty"> | |
5365 <summary> | |
5366 Represents a JSON property. | |
5367 </summary> | |
5368 </member> | |
5369 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)"> | |
5370 <summary> | |
5371 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class from another <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object. | |
5372 </summary> | |
5373 <param name="other">A <see cref="T:Newtonsoft.Json.Linq.JProperty"/> object to copy from.</param> | |
5374 </member> | |
5375 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])"> | |
5376 <summary> | |
5377 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class. | |
5378 </summary> | |
5379 <param name="name">The property name.</param> | |
5380 <param name="content">The property content.</param> | |
5381 </member> | |
5382 <member name="M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)"> | |
5383 <summary> | |
5384 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JProperty"/> class. | |
5385 </summary> | |
5386 <param name="name">The property name.</param> | |
5387 <param name="content">The property content.</param> | |
5388 </member> | |
5389 <member name="M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])"> | |
5390 <summary> | |
5391 Writes this token to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
5392 </summary> | |
5393 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
5394 <param name="converters">A collection of <see cref="T:Newtonsoft.Json.JsonConverter"/> which will be used when writing the token.</param> | |
5395 </member> | |
5396 <member name="M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)"> | |
5397 <summary> | |
5398 Loads an <see cref="T:Newtonsoft.Json.Linq.JProperty"/> from a <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
5399 </summary> | |
5400 <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> | |
5401 <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> | |
5402 </member> | |
5403 <member name="P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens"> | |
5404 <summary> | |
5405 Gets the container's children tokens. | |
5406 </summary> | |
5407 <value>The container's children tokens.</value> | |
5408 </member> | |
5409 <member name="P:Newtonsoft.Json.Linq.JProperty.Name"> | |
5410 <summary> | |
5411 Gets the property name. | |
5412 </summary> | |
5413 <value>The property name.</value> | |
5414 </member> | |
5415 <member name="P:Newtonsoft.Json.Linq.JProperty.Value"> | |
5416 <summary> | |
5417 Gets or sets the property value. | |
5418 </summary> | |
5419 <value>The property value.</value> | |
5420 </member> | |
5421 <member name="P:Newtonsoft.Json.Linq.JProperty.Type"> | |
5422 <summary> | |
5423 Gets the node type for this <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
5424 </summary> | |
5425 <value>The type.</value> | |
5426 </member> | |
5427 <member name="T:Newtonsoft.Json.Linq.JTokenType"> | |
5428 <summary> | |
5429 Specifies the type of token. | |
5430 </summary> | |
5431 </member> | |
5432 <member name="F:Newtonsoft.Json.Linq.JTokenType.None"> | |
5433 <summary> | |
5434 No token type has been set. | |
5435 </summary> | |
5436 </member> | |
5437 <member name="F:Newtonsoft.Json.Linq.JTokenType.Object"> | |
5438 <summary> | |
5439 A JSON object. | |
5440 </summary> | |
5441 </member> | |
5442 <member name="F:Newtonsoft.Json.Linq.JTokenType.Array"> | |
5443 <summary> | |
5444 A JSON array. | |
5445 </summary> | |
5446 </member> | |
5447 <member name="F:Newtonsoft.Json.Linq.JTokenType.Constructor"> | |
5448 <summary> | |
5449 A JSON constructor. | |
5450 </summary> | |
5451 </member> | |
5452 <member name="F:Newtonsoft.Json.Linq.JTokenType.Property"> | |
5453 <summary> | |
5454 A JSON object property. | |
5455 </summary> | |
5456 </member> | |
5457 <member name="F:Newtonsoft.Json.Linq.JTokenType.Comment"> | |
5458 <summary> | |
5459 A comment. | |
5460 </summary> | |
5461 </member> | |
5462 <member name="F:Newtonsoft.Json.Linq.JTokenType.Integer"> | |
5463 <summary> | |
5464 An integer value. | |
5465 </summary> | |
5466 </member> | |
5467 <member name="F:Newtonsoft.Json.Linq.JTokenType.Float"> | |
5468 <summary> | |
5469 A float value. | |
5470 </summary> | |
5471 </member> | |
5472 <member name="F:Newtonsoft.Json.Linq.JTokenType.String"> | |
5473 <summary> | |
5474 A string value. | |
5475 </summary> | |
5476 </member> | |
5477 <member name="F:Newtonsoft.Json.Linq.JTokenType.Boolean"> | |
5478 <summary> | |
5479 A boolean value. | |
5480 </summary> | |
5481 </member> | |
5482 <member name="F:Newtonsoft.Json.Linq.JTokenType.Null"> | |
5483 <summary> | |
5484 A null value. | |
5485 </summary> | |
5486 </member> | |
5487 <member name="F:Newtonsoft.Json.Linq.JTokenType.Undefined"> | |
5488 <summary> | |
5489 An undefined value. | |
5490 </summary> | |
5491 </member> | |
5492 <member name="F:Newtonsoft.Json.Linq.JTokenType.Date"> | |
5493 <summary> | |
5494 A date value. | |
5495 </summary> | |
5496 </member> | |
5497 <member name="F:Newtonsoft.Json.Linq.JTokenType.Raw"> | |
5498 <summary> | |
5499 A raw JSON value. | |
5500 </summary> | |
5501 </member> | |
5502 <member name="F:Newtonsoft.Json.Linq.JTokenType.Bytes"> | |
5503 <summary> | |
5504 A collection of bytes value. | |
5505 </summary> | |
5506 </member> | |
5507 <member name="F:Newtonsoft.Json.Linq.JTokenType.Guid"> | |
5508 <summary> | |
5509 A Guid value. | |
5510 </summary> | |
5511 </member> | |
5512 <member name="F:Newtonsoft.Json.Linq.JTokenType.Uri"> | |
5513 <summary> | |
5514 A Uri value. | |
5515 </summary> | |
5516 </member> | |
5517 <member name="F:Newtonsoft.Json.Linq.JTokenType.TimeSpan"> | |
5518 <summary> | |
5519 A TimeSpan value. | |
5520 </summary> | |
5521 </member> | |
5522 <member name="T:Newtonsoft.Json.Schema.Extensions"> | |
5523 <summary> | |
5524 Contains the JSON schema extension methods. | |
5525 </summary> | |
5526 </member> | |
5527 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)"> | |
5528 <summary> | |
5529 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid. | |
5530 </summary> | |
5531 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> | |
5532 <param name="schema">The schema to test with.</param> | |
5533 <returns> | |
5534 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>. | |
5535 </returns> | |
5536 </member> | |
5537 <member name="M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)"> | |
5538 <summary> | |
5539 Determines whether the <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid. | |
5540 </summary> | |
5541 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> | |
5542 <param name="schema">The schema to test with.</param> | |
5543 <param name="errorMessages">When this method returns, contains any error messages generated while validating. </param> | |
5544 <returns> | |
5545 <c>true</c> if the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/> is valid; otherwise, <c>false</c>. | |
5546 </returns> | |
5547 </member> | |
5548 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)"> | |
5549 <summary> | |
5550 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
5551 </summary> | |
5552 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> | |
5553 <param name="schema">The schema to test with.</param> | |
5554 </member> | |
5555 <member name="M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)"> | |
5556 <summary> | |
5557 Validates the specified <see cref="T:Newtonsoft.Json.Linq.JToken"/>. | |
5558 </summary> | |
5559 <param name="source">The source <see cref="T:Newtonsoft.Json.Linq.JToken"/> to test.</param> | |
5560 <param name="schema">The schema to test with.</param> | |
5561 <param name="validationEventHandler">The validation event handler.</param> | |
5562 </member> | |
5563 <member name="T:Newtonsoft.Json.Schema.JsonSchemaException"> | |
5564 <summary> | |
5565 Returns detailed information about the schema exception. | |
5566 </summary> | |
5567 </member> | |
5568 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor"> | |
5569 <summary> | |
5570 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class. | |
5571 </summary> | |
5572 </member> | |
5573 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)"> | |
5574 <summary> | |
5575 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class | |
5576 with a specified error message. | |
5577 </summary> | |
5578 <param name="message">The error message that explains the reason for the exception.</param> | |
5579 </member> | |
5580 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)"> | |
5581 <summary> | |
5582 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class | |
5583 with a specified error message and a reference to the inner exception that is the cause of this exception. | |
5584 </summary> | |
5585 <param name="message">The error message that explains the reason for the exception.</param> | |
5586 <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> | |
5587 </member> | |
5588 <member name="M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)"> | |
5589 <summary> | |
5590 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> class. | |
5591 </summary> | |
5592 <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | |
5593 <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param> | |
5594 <exception cref="T:System.ArgumentNullException">The <paramref name="info"/> parameter is null. </exception> | |
5595 <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult"/> is zero (0). </exception> | |
5596 </member> | |
5597 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber"> | |
5598 <summary> | |
5599 Gets the line number indicating where the error occurred. | |
5600 </summary> | |
5601 <value>The line number indicating where the error occurred.</value> | |
5602 </member> | |
5603 <member name="P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition"> | |
5604 <summary> | |
5605 Gets the line position indicating where the error occurred. | |
5606 </summary> | |
5607 <value>The line position indicating where the error occurred.</value> | |
5608 </member> | |
5609 <member name="T:Newtonsoft.Json.Schema.JsonSchemaResolver"> | |
5610 <summary> | |
5611 Resolves <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from an id. | |
5612 </summary> | |
5613 </member> | |
5614 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor"> | |
5615 <summary> | |
5616 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> class. | |
5617 </summary> | |
5618 </member> | |
5619 <member name="M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)"> | |
5620 <summary> | |
5621 Gets a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id. | |
5622 </summary> | |
5623 <param name="id">The id.</param> | |
5624 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> for the specified id.</returns> | |
5625 </member> | |
5626 <member name="P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas"> | |
5627 <summary> | |
5628 Gets or sets the loaded schemas. | |
5629 </summary> | |
5630 <value>The loaded schemas.</value> | |
5631 </member> | |
5632 <member name="T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling"> | |
5633 <summary> | |
5634 Specifies undefined schema Id handling options for the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"/>. | |
5635 </summary> | |
5636 </member> | |
5637 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None"> | |
5638 <summary> | |
5639 Do not infer a schema Id. | |
5640 </summary> | |
5641 </member> | |
5642 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName"> | |
5643 <summary> | |
5644 Use the .NET type name as the schema Id. | |
5645 </summary> | |
5646 </member> | |
5647 <member name="F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName"> | |
5648 <summary> | |
5649 Use the assembly qualified .NET type name as the schema Id. | |
5650 </summary> | |
5651 </member> | |
5652 <member name="T:Newtonsoft.Json.Schema.ValidationEventArgs"> | |
5653 <summary> | |
5654 Returns detailed information related to the <see cref="T:Newtonsoft.Json.Schema.ValidationEventHandler"/>. | |
5655 </summary> | |
5656 </member> | |
5657 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception"> | |
5658 <summary> | |
5659 Gets the <see cref="T:Newtonsoft.Json.Schema.JsonSchemaException"/> associated with the validation event. | |
5660 </summary> | |
5661 <value>The JsonSchemaException associated with the validation event.</value> | |
5662 </member> | |
5663 <member name="P:Newtonsoft.Json.Schema.ValidationEventArgs.Message"> | |
5664 <summary> | |
5665 Gets the text description corresponding to the validation event. | |
5666 </summary> | |
5667 <value>The text description.</value> | |
5668 </member> | |
5669 <member name="T:Newtonsoft.Json.Schema.ValidationEventHandler"> | |
5670 <summary> | |
5671 Represents the callback method that will handle JSON schema validation events and the <see cref="T:Newtonsoft.Json.Schema.ValidationEventArgs"/>. | |
5672 </summary> | |
5673 </member> | |
5674 <member name="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"> | |
5675 <summary> | |
5676 Resolves member mappings for a type, camel casing property names. | |
5677 </summary> | |
5678 </member> | |
5679 <member name="T:Newtonsoft.Json.Serialization.DefaultContractResolver"> | |
5680 <summary> | |
5681 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"/>. | |
5682 </summary> | |
5683 </member> | |
5684 <member name="T:Newtonsoft.Json.Serialization.IContractResolver"> | |
5685 <summary> | |
5686 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"/>. | |
5687 </summary> | |
5688 </member> | |
5689 <member name="M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)"> | |
5690 <summary> | |
5691 Resolves the contract for a given type. | |
5692 </summary> | |
5693 <param name="type">The type to resolve a contract for.</param> | |
5694 <returns>The contract for a given type.</returns> | |
5695 </member> | |
5696 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor"> | |
5697 <summary> | |
5698 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class. | |
5699 </summary> | |
5700 </member> | |
5701 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)"> | |
5702 <summary> | |
5703 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> class. | |
5704 </summary> | |
5705 <param name="shareCache"> | |
5706 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. | |
5707 Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected | |
5708 behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly | |
5709 recommended to reuse <see cref="T:Newtonsoft.Json.Serialization.DefaultContractResolver"/> instances with the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
5710 </param> | |
5711 </member> | |
5712 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)"> | |
5713 <summary> | |
5714 Resolves the contract for a given type. | |
5715 </summary> | |
5716 <param name="type">The type to resolve a contract for.</param> | |
5717 <returns>The contract for a given type.</returns> | |
5718 </member> | |
5719 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)"> | |
5720 <summary> | |
5721 Gets the serializable members for the type. | |
5722 </summary> | |
5723 <param name="objectType">The type to get serializable members for.</param> | |
5724 <returns>The serializable members for the type.</returns> | |
5725 </member> | |
5726 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)"> | |
5727 <summary> | |
5728 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type. | |
5729 </summary> | |
5730 <param name="objectType">Type of the object.</param> | |
5731 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> for the given type.</returns> | |
5732 </member> | |
5733 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)"> | |
5734 <summary> | |
5735 Creates the constructor parameters. | |
5736 </summary> | |
5737 <param name="constructor">The constructor to create properties for.</param> | |
5738 <param name="memberProperties">The type's member properties.</param> | |
5739 <returns>Properties for the given <see cref="T:System.Reflection.ConstructorInfo"/>.</returns> | |
5740 </member> | |
5741 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)"> | |
5742 <summary> | |
5743 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>. | |
5744 </summary> | |
5745 <param name="matchingMemberProperty">The matching member property.</param> | |
5746 <param name="parameterInfo">The constructor parameter.</param> | |
5747 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.ParameterInfo"/>.</returns> | |
5748 </member> | |
5749 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)"> | |
5750 <summary> | |
5751 Resolves the default <see cref="T:Newtonsoft.Json.JsonConverter"/> for the contract. | |
5752 </summary> | |
5753 <param name="objectType">Type of the object.</param> | |
5754 <returns></returns> | |
5755 </member> | |
5756 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)"> | |
5757 <summary> | |
5758 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type. | |
5759 </summary> | |
5760 <param name="objectType">Type of the object.</param> | |
5761 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> for the given type.</returns> | |
5762 </member> | |
5763 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)"> | |
5764 <summary> | |
5765 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type. | |
5766 </summary> | |
5767 <param name="objectType">Type of the object.</param> | |
5768 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> for the given type.</returns> | |
5769 </member> | |
5770 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)"> | |
5771 <summary> | |
5772 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type. | |
5773 </summary> | |
5774 <param name="objectType">Type of the object.</param> | |
5775 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonPrimitiveContract"/> for the given type.</returns> | |
5776 </member> | |
5777 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)"> | |
5778 <summary> | |
5779 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type. | |
5780 </summary> | |
5781 <param name="objectType">Type of the object.</param> | |
5782 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonLinqContract"/> for the given type.</returns> | |
5783 </member> | |
5784 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)"> | |
5785 <summary> | |
5786 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type. | |
5787 </summary> | |
5788 <param name="objectType">Type of the object.</param> | |
5789 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonISerializableContract"/> for the given type.</returns> | |
5790 </member> | |
5791 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)"> | |
5792 <summary> | |
5793 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type. | |
5794 </summary> | |
5795 <param name="objectType">Type of the object.</param> | |
5796 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonDynamicContract"/> for the given type.</returns> | |
5797 </member> | |
5798 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)"> | |
5799 <summary> | |
5800 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type. | |
5801 </summary> | |
5802 <param name="objectType">Type of the object.</param> | |
5803 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> for the given type.</returns> | |
5804 </member> | |
5805 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)"> | |
5806 <summary> | |
5807 Determines which contract type is created for the given type. | |
5808 </summary> | |
5809 <param name="objectType">Type of the object.</param> | |
5810 <returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/> for the given type.</returns> | |
5811 </member> | |
5812 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)"> | |
5813 <summary> | |
5814 Creates properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>. | |
5815 </summary> | |
5816 <param name="type">The type to create properties for.</param> | |
5817 /// <param name="memberSerialization">The member serialization mode for the type.</param> | |
5818 <returns>Properties for the given <see cref="T:Newtonsoft.Json.Serialization.JsonContract"/>.</returns> | |
5819 </member> | |
5820 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)"> | |
5821 <summary> | |
5822 Creates the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member. | |
5823 </summary> | |
5824 <param name="member">The member.</param> | |
5825 <returns>The <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> used by the serializer to get and set values from a member.</returns> | |
5826 </member> | |
5827 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)"> | |
5828 <summary> | |
5829 Creates a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>. | |
5830 </summary> | |
5831 <param name="memberSerialization">The member's parent <see cref="T:Newtonsoft.Json.MemberSerialization"/>.</param> | |
5832 <param name="member">The member to create a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for.</param> | |
5833 <returns>A created <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> for the given <see cref="T:System.Reflection.MemberInfo"/>.</returns> | |
5834 </member> | |
5835 <member name="M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)"> | |
5836 <summary> | |
5837 Resolves the name of the property. | |
5838 </summary> | |
5839 <param name="propertyName">Name of the property.</param> | |
5840 <returns>Name of the property.</returns> | |
5841 </member> | |
5842 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration"> | |
5843 <summary> | |
5844 Gets a value indicating whether members are being get and set using dynamic code generation. | |
5845 This value is determined by the runtime permissions available. | |
5846 </summary> | |
5847 <value> | |
5848 <c>true</c> if using dynamic code generation; otherwise, <c>false</c>. | |
5849 </value> | |
5850 </member> | |
5851 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags"> | |
5852 <summary> | |
5853 Gets or sets the default members search flags. | |
5854 </summary> | |
5855 <value>The default members search flags.</value> | |
5856 </member> | |
5857 <member name="P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers"> | |
5858 <summary> | |
5859 Gets or sets a value indicating whether compiler generated members should be serialized. | |
5860 </summary> | |
5861 <value> | |
5862 <c>true</c> if serialized compiler generated members; otherwise, <c>false</c>. | |
5863 </value> | |
5864 </member> | |
5865 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor"> | |
5866 <summary> | |
5867 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver"/> class. | |
5868 </summary> | |
5869 </member> | |
5870 <member name="M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)"> | |
5871 <summary> | |
5872 Resolves the name of the property. | |
5873 </summary> | |
5874 <param name="propertyName">Name of the property.</param> | |
5875 <returns>The property name camel cased.</returns> | |
5876 </member> | |
5877 <member name="T:Newtonsoft.Json.Serialization.DefaultSerializationBinder"> | |
5878 <summary> | |
5879 The default serialization binder used when resolving and loading classes from type names. | |
5880 </summary> | |
5881 </member> | |
5882 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)"> | |
5883 <summary> | |
5884 When overridden in a derived class, controls the binding of a serialized object to a type. | |
5885 </summary> | |
5886 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object.</param> | |
5887 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object.</param> | |
5888 <returns> | |
5889 The type of the object the formatter creates a new instance of. | |
5890 </returns> | |
5891 </member> | |
5892 <member name="M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)"> | |
5893 <summary> | |
5894 When overridden in a derived class, controls the binding of a serialized object to a type. | |
5895 </summary> | |
5896 <param name="serializedType">The type of the object the formatter creates a new instance of.</param> | |
5897 <param name="assemblyName">Specifies the <see cref="T:System.Reflection.Assembly"/> name of the serialized object. </param> | |
5898 <param name="typeName">Specifies the <see cref="T:System.Type"/> name of the serialized object. </param> | |
5899 </member> | |
5900 <member name="T:Newtonsoft.Json.Serialization.ErrorContext"> | |
5901 <summary> | |
5902 Provides information surrounding an error. | |
5903 </summary> | |
5904 </member> | |
5905 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error"> | |
5906 <summary> | |
5907 Gets or sets the error. | |
5908 </summary> | |
5909 <value>The error.</value> | |
5910 </member> | |
5911 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject"> | |
5912 <summary> | |
5913 Gets the original object that caused the error. | |
5914 </summary> | |
5915 <value>The original object that caused the error.</value> | |
5916 </member> | |
5917 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Member"> | |
5918 <summary> | |
5919 Gets the member that caused the error. | |
5920 </summary> | |
5921 <value>The member that caused the error.</value> | |
5922 </member> | |
5923 <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Handled"> | |
5924 <summary> | |
5925 Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.ErrorContext"/> is handled. | |
5926 </summary> | |
5927 <value><c>true</c> if handled; otherwise, <c>false</c>.</value> | |
5928 </member> | |
5929 <member name="T:Newtonsoft.Json.Serialization.JsonArrayContract"> | |
5930 <summary> | |
5931 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
5932 </summary> | |
5933 </member> | |
5934 <member name="M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)"> | |
5935 <summary> | |
5936 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonArrayContract"/> class. | |
5937 </summary> | |
5938 <param name="underlyingType">The underlying type for the contract.</param> | |
5939 </member> | |
5940 <member name="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"> | |
5941 <summary> | |
5942 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
5943 </summary> | |
5944 </member> | |
5945 <member name="M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)"> | |
5946 <summary> | |
5947 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonDictionaryContract"/> class. | |
5948 </summary> | |
5949 <param name="underlyingType">The underlying type for the contract.</param> | |
5950 </member> | |
5951 <member name="P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver"> | |
5952 <summary> | |
5953 Gets or sets the property name resolver. | |
5954 </summary> | |
5955 <value>The property name resolver.</value> | |
5956 </member> | |
5957 <member name="T:Newtonsoft.Json.Serialization.JsonProperty"> | |
5958 <summary> | |
5959 Maps a JSON property to a .NET member or constructor parameter. | |
5960 </summary> | |
5961 </member> | |
5962 <member name="M:Newtonsoft.Json.Serialization.JsonProperty.ToString"> | |
5963 <summary> | |
5964 Returns a <see cref="T:System.String"/> that represents this instance. | |
5965 </summary> | |
5966 <returns> | |
5967 A <see cref="T:System.String"/> that represents this instance. | |
5968 </returns> | |
5969 </member> | |
5970 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName"> | |
5971 <summary> | |
5972 Gets or sets the name of the property. | |
5973 </summary> | |
5974 <value>The name of the property.</value> | |
5975 </member> | |
5976 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType"> | |
5977 <summary> | |
5978 Gets or sets the type that declared this property. | |
5979 </summary> | |
5980 <value>The type that declared this property.</value> | |
5981 </member> | |
5982 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Order"> | |
5983 <summary> | |
5984 Gets or sets the order of serialization and deserialization of a member. | |
5985 </summary> | |
5986 <value>The numeric order of serialization or deserialization.</value> | |
5987 </member> | |
5988 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName"> | |
5989 <summary> | |
5990 Gets or sets the name of the underlying member or parameter. | |
5991 </summary> | |
5992 <value>The name of the underlying member or parameter.</value> | |
5993 </member> | |
5994 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider"> | |
5995 <summary> | |
5996 Gets the <see cref="T:Newtonsoft.Json.Serialization.IValueProvider"/> that will get and set the <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> during serialization. | |
5997 </summary> | |
5998 <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> | |
5999 </member> | |
6000 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType"> | |
6001 <summary> | |
6002 Gets or sets the type of the property. | |
6003 </summary> | |
6004 <value>The type of the property.</value> | |
6005 </member> | |
6006 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Converter"> | |
6007 <summary> | |
6008 Gets or sets the <see cref="T:Newtonsoft.Json.JsonConverter"/> for the property. | |
6009 If set this converter takes presidence over the contract converter for the property type. | |
6010 </summary> | |
6011 <value>The converter.</value> | |
6012 </member> | |
6013 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter"> | |
6014 <summary> | |
6015 Gets the member converter. | |
6016 </summary> | |
6017 <value>The member converter.</value> | |
6018 </member> | |
6019 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored"> | |
6020 <summary> | |
6021 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored. | |
6022 </summary> | |
6023 <value><c>true</c> if ignored; otherwise, <c>false</c>.</value> | |
6024 </member> | |
6025 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable"> | |
6026 <summary> | |
6027 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable. | |
6028 </summary> | |
6029 <value><c>true</c> if readable; otherwise, <c>false</c>.</value> | |
6030 </member> | |
6031 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable"> | |
6032 <summary> | |
6033 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable. | |
6034 </summary> | |
6035 <value><c>true</c> if writable; otherwise, <c>false</c>.</value> | |
6036 </member> | |
6037 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue"> | |
6038 <summary> | |
6039 Gets the default value. | |
6040 </summary> | |
6041 <value>The default value.</value> | |
6042 </member> | |
6043 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required"> | |
6044 <summary> | |
6045 Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required. | |
6046 </summary> | |
6047 <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value> | |
6048 </member> | |
6049 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference"> | |
6050 <summary> | |
6051 Gets a value indicating whether this property preserves object references. | |
6052 </summary> | |
6053 <value> | |
6054 <c>true</c> if this instance is reference; otherwise, <c>false</c>. | |
6055 </value> | |
6056 </member> | |
6057 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling"> | |
6058 <summary> | |
6059 Gets the property null value handling. | |
6060 </summary> | |
6061 <value>The null value handling.</value> | |
6062 </member> | |
6063 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling"> | |
6064 <summary> | |
6065 Gets the property default value handling. | |
6066 </summary> | |
6067 <value>The default value handling.</value> | |
6068 </member> | |
6069 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling"> | |
6070 <summary> | |
6071 Gets the property reference loop handling. | |
6072 </summary> | |
6073 <value>The reference loop handling.</value> | |
6074 </member> | |
6075 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling"> | |
6076 <summary> | |
6077 Gets the property object creation handling. | |
6078 </summary> | |
6079 <value>The object creation handling.</value> | |
6080 </member> | |
6081 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling"> | |
6082 <summary> | |
6083 Gets or sets the type name handling. | |
6084 </summary> | |
6085 <value>The type name handling.</value> | |
6086 </member> | |
6087 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize"> | |
6088 <summary> | |
6089 Gets or sets a predicate used to determine whether the property should be serialize. | |
6090 </summary> | |
6091 <value>A predicate used to determine whether the property should be serialize.</value> | |
6092 </member> | |
6093 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified"> | |
6094 <summary> | |
6095 Gets or sets a predicate used to determine whether the property should be serialized. | |
6096 </summary> | |
6097 <value>A predicate used to determine whether the property should be serialized.</value> | |
6098 </member> | |
6099 <member name="P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified"> | |
6100 <summary> | |
6101 Gets or sets an action used to set whether the property has been deserialized. | |
6102 </summary> | |
6103 <value>An action used to set whether the property has been deserialized.</value> | |
6104 </member> | |
6105 <member name="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"> | |
6106 <summary> | |
6107 A collection of <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> objects. | |
6108 </summary> | |
6109 </member> | |
6110 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)"> | |
6111 <summary> | |
6112 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonPropertyCollection"/> class. | |
6113 </summary> | |
6114 <param name="type">The type.</param> | |
6115 </member> | |
6116 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)"> | |
6117 <summary> | |
6118 When implemented in a derived class, extracts the key from the specified element. | |
6119 </summary> | |
6120 <param name="item">The element from which to extract the key.</param> | |
6121 <returns>The key for the specified element.</returns> | |
6122 </member> | |
6123 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)"> | |
6124 <summary> | |
6125 Adds a <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object. | |
6126 </summary> | |
6127 <param name="property">The property to add to the collection.</param> | |
6128 </member> | |
6129 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)"> | |
6130 <summary> | |
6131 Gets the closest matching <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> object. | |
6132 First attempts to get an exact case match of propertyName and then | |
6133 a case insensitive match. | |
6134 </summary> | |
6135 <param name="propertyName">Name of the property.</param> | |
6136 <returns>A matching property if found.</returns> | |
6137 </member> | |
6138 <member name="M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)"> | |
6139 <summary> | |
6140 Gets a property by property name. | |
6141 </summary> | |
6142 <param name="propertyName">The name of the property to get.</param> | |
6143 <param name="comparisonType">Type property name string comparison.</param> | |
6144 <returns>A matching property if found.</returns> | |
6145 </member> | |
6146 <member name="T:Newtonsoft.Json.MissingMemberHandling"> | |
6147 <summary> | |
6148 Specifies missing member handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6149 </summary> | |
6150 </member> | |
6151 <member name="F:Newtonsoft.Json.MissingMemberHandling.Ignore"> | |
6152 <summary> | |
6153 Ignore a missing member and do not attempt to deserialize it. | |
6154 </summary> | |
6155 </member> | |
6156 <member name="F:Newtonsoft.Json.MissingMemberHandling.Error"> | |
6157 <summary> | |
6158 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a missing member is encountered during deserialization. | |
6159 </summary> | |
6160 </member> | |
6161 <member name="T:Newtonsoft.Json.NullValueHandling"> | |
6162 <summary> | |
6163 Specifies null value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6164 </summary> | |
6165 </member> | |
6166 <member name="F:Newtonsoft.Json.NullValueHandling.Include"> | |
6167 <summary> | |
6168 Include null values when serializing and deserializing objects. | |
6169 </summary> | |
6170 </member> | |
6171 <member name="F:Newtonsoft.Json.NullValueHandling.Ignore"> | |
6172 <summary> | |
6173 Ignore null values when serializing and deserializing objects. | |
6174 </summary> | |
6175 </member> | |
6176 <member name="T:Newtonsoft.Json.ReferenceLoopHandling"> | |
6177 <summary> | |
6178 Specifies reference loop handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6179 </summary> | |
6180 </member> | |
6181 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Error"> | |
6182 <summary> | |
6183 Throw a <see cref="T:Newtonsoft.Json.JsonSerializationException"/> when a loop is encountered. | |
6184 </summary> | |
6185 </member> | |
6186 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Ignore"> | |
6187 <summary> | |
6188 Ignore loop references and do not serialize. | |
6189 </summary> | |
6190 </member> | |
6191 <member name="F:Newtonsoft.Json.ReferenceLoopHandling.Serialize"> | |
6192 <summary> | |
6193 Serialize loop references. | |
6194 </summary> | |
6195 </member> | |
6196 <member name="T:Newtonsoft.Json.Schema.JsonSchema"> | |
6197 <summary> | |
6198 An in-memory representation of a JSON Schema. | |
6199 </summary> | |
6200 </member> | |
6201 <member name="M:Newtonsoft.Json.Schema.JsonSchema.#ctor"> | |
6202 <summary> | |
6203 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> class. | |
6204 </summary> | |
6205 </member> | |
6206 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)"> | |
6207 <summary> | |
6208 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
6209 </summary> | |
6210 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param> | |
6211 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns> | |
6212 </member> | |
6213 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)"> | |
6214 <summary> | |
6215 Reads a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>. | |
6216 </summary> | |
6217 <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> containing the JSON Schema to read.</param> | |
6218 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> to use when resolving schema references.</param> | |
6219 <returns>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> object representing the JSON Schema.</returns> | |
6220 </member> | |
6221 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)"> | |
6222 <summary> | |
6223 Load a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a string that contains schema JSON. | |
6224 </summary> | |
6225 <param name="json">A <see cref="T:System.String"/> that contains JSON.</param> | |
6226 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns> | |
6227 </member> | |
6228 <member name="M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)"> | |
6229 <summary> | |
6230 Parses the specified json. | |
6231 </summary> | |
6232 <param name="json">The json.</param> | |
6233 <param name="resolver">The resolver.</param> | |
6234 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> populated from the string that contains JSON.</returns> | |
6235 </member> | |
6236 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)"> | |
6237 <summary> | |
6238 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
6239 </summary> | |
6240 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
6241 </member> | |
6242 <member name="M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)"> | |
6243 <summary> | |
6244 Writes this schema to a <see cref="T:Newtonsoft.Json.JsonWriter"/> using the specified <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/>. | |
6245 </summary> | |
6246 <param name="writer">A <see cref="T:Newtonsoft.Json.JsonWriter"/> into which this method will write.</param> | |
6247 <param name="resolver">The resolver used.</param> | |
6248 </member> | |
6249 <member name="M:Newtonsoft.Json.Schema.JsonSchema.ToString"> | |
6250 <summary> | |
6251 Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. | |
6252 </summary> | |
6253 <returns> | |
6254 A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>. | |
6255 </returns> | |
6256 </member> | |
6257 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Id"> | |
6258 <summary> | |
6259 Gets or sets the id. | |
6260 </summary> | |
6261 </member> | |
6262 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Title"> | |
6263 <summary> | |
6264 Gets or sets the title. | |
6265 </summary> | |
6266 </member> | |
6267 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Required"> | |
6268 <summary> | |
6269 Gets or sets whether the object is required. | |
6270 </summary> | |
6271 </member> | |
6272 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly"> | |
6273 <summary> | |
6274 Gets or sets whether the object is read only. | |
6275 </summary> | |
6276 </member> | |
6277 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Hidden"> | |
6278 <summary> | |
6279 Gets or sets whether the object is visible to users. | |
6280 </summary> | |
6281 </member> | |
6282 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Transient"> | |
6283 <summary> | |
6284 Gets or sets whether the object is transient. | |
6285 </summary> | |
6286 </member> | |
6287 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Description"> | |
6288 <summary> | |
6289 Gets or sets the description of the object. | |
6290 </summary> | |
6291 </member> | |
6292 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Type"> | |
6293 <summary> | |
6294 Gets or sets the types of values allowed by the object. | |
6295 </summary> | |
6296 <value>The type.</value> | |
6297 </member> | |
6298 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Pattern"> | |
6299 <summary> | |
6300 Gets or sets the pattern. | |
6301 </summary> | |
6302 <value>The pattern.</value> | |
6303 </member> | |
6304 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength"> | |
6305 <summary> | |
6306 Gets or sets the minimum length. | |
6307 </summary> | |
6308 <value>The minimum length.</value> | |
6309 </member> | |
6310 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength"> | |
6311 <summary> | |
6312 Gets or sets the maximum length. | |
6313 </summary> | |
6314 <value>The maximum length.</value> | |
6315 </member> | |
6316 <member name="P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy"> | |
6317 <summary> | |
6318 Gets or sets a number that the value should be divisble by. | |
6319 </summary> | |
6320 <value>A number that the value should be divisble by.</value> | |
6321 </member> | |
6322 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Minimum"> | |
6323 <summary> | |
6324 Gets or sets the minimum. | |
6325 </summary> | |
6326 <value>The minimum.</value> | |
6327 </member> | |
6328 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Maximum"> | |
6329 <summary> | |
6330 Gets or sets the maximum. | |
6331 </summary> | |
6332 <value>The maximum.</value> | |
6333 </member> | |
6334 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum"> | |
6335 <summary> | |
6336 Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. | |
6337 </summary> | |
6338 <value>A flag indicating whether the value can not equal the number defined by the "minimum" attribute.</value> | |
6339 </member> | |
6340 <member name="P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum"> | |
6341 <summary> | |
6342 Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. | |
6343 </summary> | |
6344 <value>A flag indicating whether the value can not equal the number defined by the "maximum" attribute.</value> | |
6345 </member> | |
6346 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems"> | |
6347 <summary> | |
6348 Gets or sets the minimum number of items. | |
6349 </summary> | |
6350 <value>The minimum number of items.</value> | |
6351 </member> | |
6352 <member name="P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems"> | |
6353 <summary> | |
6354 Gets or sets the maximum number of items. | |
6355 </summary> | |
6356 <value>The maximum number of items.</value> | |
6357 </member> | |
6358 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Items"> | |
6359 <summary> | |
6360 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items. | |
6361 </summary> | |
6362 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of items.</value> | |
6363 </member> | |
6364 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Properties"> | |
6365 <summary> | |
6366 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties. | |
6367 </summary> | |
6368 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of properties.</value> | |
6369 </member> | |
6370 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties"> | |
6371 <summary> | |
6372 Gets or sets the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties. | |
6373 </summary> | |
6374 <value>The <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> of additional properties.</value> | |
6375 </member> | |
6376 <member name="P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties"> | |
6377 <summary> | |
6378 Gets or sets the pattern properties. | |
6379 </summary> | |
6380 <value>The pattern properties.</value> | |
6381 </member> | |
6382 <member name="P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties"> | |
6383 <summary> | |
6384 Gets or sets a value indicating whether additional properties are allowed. | |
6385 </summary> | |
6386 <value> | |
6387 <c>true</c> if additional properties are allowed; otherwise, <c>false</c>. | |
6388 </value> | |
6389 </member> | |
6390 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Requires"> | |
6391 <summary> | |
6392 Gets or sets the required property if this property is present. | |
6393 </summary> | |
6394 <value>The required property if this property is present.</value> | |
6395 </member> | |
6396 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Identity"> | |
6397 <summary> | |
6398 Gets or sets the identity. | |
6399 </summary> | |
6400 <value>The identity.</value> | |
6401 </member> | |
6402 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Enum"> | |
6403 <summary> | |
6404 Gets or sets the a collection of valid enum values allowed. | |
6405 </summary> | |
6406 <value>A collection of valid enum values allowed.</value> | |
6407 </member> | |
6408 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Options"> | |
6409 <summary> | |
6410 Gets or sets a collection of options. | |
6411 </summary> | |
6412 <value>A collection of options.</value> | |
6413 </member> | |
6414 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Disallow"> | |
6415 <summary> | |
6416 Gets or sets disallowed types. | |
6417 </summary> | |
6418 <value>The disallow types.</value> | |
6419 </member> | |
6420 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Default"> | |
6421 <summary> | |
6422 Gets or sets the default value. | |
6423 </summary> | |
6424 <value>The default value.</value> | |
6425 </member> | |
6426 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Extends"> | |
6427 <summary> | |
6428 Gets or sets the extend <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>. | |
6429 </summary> | |
6430 <value>The extended <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>.</value> | |
6431 </member> | |
6432 <member name="P:Newtonsoft.Json.Schema.JsonSchema.Format"> | |
6433 <summary> | |
6434 Gets or sets the format. | |
6435 </summary> | |
6436 <value>The format.</value> | |
6437 </member> | |
6438 <member name="T:Newtonsoft.Json.Schema.JsonSchemaGenerator"> | |
6439 <summary> | |
6440 Generates a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from a specified <see cref="T:System.Type"/>. | |
6441 </summary> | |
6442 </member> | |
6443 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)"> | |
6444 <summary> | |
6445 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. | |
6446 </summary> | |
6447 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> | |
6448 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns> | |
6449 </member> | |
6450 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)"> | |
6451 <summary> | |
6452 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. | |
6453 </summary> | |
6454 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> | |
6455 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param> | |
6456 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns> | |
6457 </member> | |
6458 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)"> | |
6459 <summary> | |
6460 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. | |
6461 </summary> | |
6462 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> | |
6463 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param> | |
6464 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns> | |
6465 </member> | |
6466 <member name="M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)"> | |
6467 <summary> | |
6468 Generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from the specified type. | |
6469 </summary> | |
6470 <param name="type">The type to generate a <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> from.</param> | |
6471 <param name="resolver">The <see cref="T:Newtonsoft.Json.Schema.JsonSchemaResolver"/> used to resolve schema references.</param> | |
6472 <param name="rootSchemaNullable">Specify whether the generated root <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> will be nullable.</param> | |
6473 <returns>A <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/> generated from the specified type.</returns> | |
6474 </member> | |
6475 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling"> | |
6476 <summary> | |
6477 Gets or sets how undefined schemas are handled by the serializer. | |
6478 </summary> | |
6479 </member> | |
6480 <member name="P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver"> | |
6481 <summary> | |
6482 Gets or sets the contract resolver. | |
6483 </summary> | |
6484 <value>The contract resolver.</value> | |
6485 </member> | |
6486 <member name="T:Newtonsoft.Json.Schema.JsonSchemaType"> | |
6487 <summary> | |
6488 The value types allowed by the <see cref="T:Newtonsoft.Json.Schema.JsonSchema"/>. | |
6489 </summary> | |
6490 </member> | |
6491 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.None"> | |
6492 <summary> | |
6493 No type specified. | |
6494 </summary> | |
6495 </member> | |
6496 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.String"> | |
6497 <summary> | |
6498 String type. | |
6499 </summary> | |
6500 </member> | |
6501 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Float"> | |
6502 <summary> | |
6503 Float type. | |
6504 </summary> | |
6505 </member> | |
6506 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Integer"> | |
6507 <summary> | |
6508 Integer type. | |
6509 </summary> | |
6510 </member> | |
6511 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean"> | |
6512 <summary> | |
6513 Boolean type. | |
6514 </summary> | |
6515 </member> | |
6516 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Object"> | |
6517 <summary> | |
6518 Object type. | |
6519 </summary> | |
6520 </member> | |
6521 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Array"> | |
6522 <summary> | |
6523 Array type. | |
6524 </summary> | |
6525 </member> | |
6526 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Null"> | |
6527 <summary> | |
6528 Null type. | |
6529 </summary> | |
6530 </member> | |
6531 <member name="F:Newtonsoft.Json.Schema.JsonSchemaType.Any"> | |
6532 <summary> | |
6533 Any type. | |
6534 </summary> | |
6535 </member> | |
6536 <member name="T:Newtonsoft.Json.Serialization.JsonObjectContract"> | |
6537 <summary> | |
6538 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6539 </summary> | |
6540 </member> | |
6541 <member name="M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)"> | |
6542 <summary> | |
6543 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonObjectContract"/> class. | |
6544 </summary> | |
6545 <param name="underlyingType">The underlying type for the contract.</param> | |
6546 </member> | |
6547 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization"> | |
6548 <summary> | |
6549 Gets or sets the object member serialization. | |
6550 </summary> | |
6551 <value>The member object serialization.</value> | |
6552 </member> | |
6553 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties"> | |
6554 <summary> | |
6555 Gets the object's properties. | |
6556 </summary> | |
6557 <value>The object's properties.</value> | |
6558 </member> | |
6559 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters"> | |
6560 <summary> | |
6561 Gets the constructor parameters required for any non-default constructor | |
6562 </summary> | |
6563 </member> | |
6564 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor"> | |
6565 <summary> | |
6566 Gets or sets the override constructor used to create the object. | |
6567 This is set when a constructor is marked up using the | |
6568 JsonConstructor attribute. | |
6569 </summary> | |
6570 <value>The override constructor.</value> | |
6571 </member> | |
6572 <member name="P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor"> | |
6573 <summary> | |
6574 Gets or sets the parametrized constructor used to create the object. | |
6575 </summary> | |
6576 <value>The parametrized constructor.</value> | |
6577 </member> | |
6578 <member name="M:Newtonsoft.Json.Serialization.JsonSerializerInternalWriter.SerializeDynamic(Newtonsoft.Json.JsonWriter,System.Dynamic.IDynamicMetaObjectProvider,Newtonsoft.Json.Serialization.JsonDynamicContract)"> | |
6579 <summary> | |
6580 Serializes the dynamic. | |
6581 </summary> | |
6582 <param name="writer">The writer.</param> | |
6583 <param name="value">The value.</param> | |
6584 <param name="contract">The contract.</param> | |
6585 </member> | |
6586 <member name="T:Newtonsoft.Json.Serialization.JsonStringContract"> | |
6587 <summary> | |
6588 Contract details for a <see cref="T:System.Type"/> used by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6589 </summary> | |
6590 </member> | |
6591 <member name="M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)"> | |
6592 <summary> | |
6593 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.JsonStringContract"/> class. | |
6594 </summary> | |
6595 <param name="underlyingType">The underlying type for the contract.</param> | |
6596 </member> | |
6597 <member name="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"> | |
6598 <summary> | |
6599 Get and set values for a <see cref="T:System.Reflection.MemberInfo"/> using reflection. | |
6600 </summary> | |
6601 </member> | |
6602 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)"> | |
6603 <summary> | |
6604 Initializes a new instance of the <see cref="T:Newtonsoft.Json.Serialization.ReflectionValueProvider"/> class. | |
6605 </summary> | |
6606 <param name="memberInfo">The member info.</param> | |
6607 </member> | |
6608 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)"> | |
6609 <summary> | |
6610 Sets the value. | |
6611 </summary> | |
6612 <param name="target">The target to set the value on.</param> | |
6613 <param name="value">The value to set on the target.</param> | |
6614 </member> | |
6615 <member name="M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)"> | |
6616 <summary> | |
6617 Gets the value. | |
6618 </summary> | |
6619 <param name="target">The target to get the value from.</param> | |
6620 <returns>The value.</returns> | |
6621 </member> | |
6622 <member name="T:Newtonsoft.Json.Serialization.OnErrorAttribute"> | |
6623 <summary> | |
6624 When applied to a method, specifies that the method is called when an error occurs serializing an object. | |
6625 </summary> | |
6626 </member> | |
6627 <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)"> | |
6628 <summary> | |
6629 Helper method for generating a MetaObject which calls a | |
6630 specific method on Dynamic that returns a result | |
6631 </summary> | |
6632 </member> | |
6633 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)"> | |
6634 <summary> | |
6635 Helper method for generating a MetaObject which calls a | |
6636 specific method on Dynamic, but uses one of the arguments for | |
6637 the result. | |
6638 </summary> | |
6639 </member> | |
6640 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)"> | |
6641 <summary> | |
6642 Helper method for generating a MetaObject which calls a | |
6643 specific method on Dynamic, but uses one of the arguments for | |
6644 the result. | |
6645 </summary> | |
6646 </member> | |
6647 <member name="M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions"> | |
6648 <summary> | |
6649 Returns a Restrictions object which includes our current restrictions merged | |
6650 with a restriction limiting our type | |
6651 </summary> | |
6652 </member> | |
6653 <member name="T:Newtonsoft.Json.Serialization.ObjectConstructor`1"> | |
6654 <summary> | |
6655 Represents a method that constructs an object. | |
6656 </summary> | |
6657 </member> | |
6658 <member name="T:Newtonsoft.Json.TypeNameHandling"> | |
6659 <summary> | |
6660 Specifies type name handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. | |
6661 </summary> | |
6662 </member> | |
6663 <member name="F:Newtonsoft.Json.TypeNameHandling.None"> | |
6664 <summary> | |
6665 Do not include the .NET type name when serializing types. | |
6666 </summary> | |
6667 </member> | |
6668 <member name="F:Newtonsoft.Json.TypeNameHandling.Objects"> | |
6669 <summary> | |
6670 Include the .NET type name when serializing into a JSON object structure. | |
6671 </summary> | |
6672 </member> | |
6673 <member name="F:Newtonsoft.Json.TypeNameHandling.Arrays"> | |
6674 <summary> | |
6675 Include the .NET type name when serializing into a JSON array structure. | |
6676 </summary> | |
6677 </member> | |
6678 <member name="F:Newtonsoft.Json.TypeNameHandling.Auto"> | |
6679 <summary> | |
6680 Include the .NET type name when the type of the object being serialized is not the same as its declared type. | |
6681 </summary> | |
6682 </member> | |
6683 <member name="F:Newtonsoft.Json.TypeNameHandling.All"> | |
6684 <summary> | |
6685 Always include the .NET type name when serializing. | |
6686 </summary> | |
6687 </member> | |
6688 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)"> | |
6689 <summary> | |
6690 Converts the value to the specified type. | |
6691 </summary> | |
6692 <param name="initialValue">The value to convert.</param> | |
6693 <param name="culture">The culture to use when converting.</param> | |
6694 <param name="targetType">The type to convert the value to.</param> | |
6695 <returns>The converted type.</returns> | |
6696 </member> | |
6697 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)"> | |
6698 <summary> | |
6699 Converts the value to the specified type. | |
6700 </summary> | |
6701 <param name="initialValue">The value to convert.</param> | |
6702 <param name="culture">The culture to use when converting.</param> | |
6703 <param name="targetType">The type to convert the value to.</param> | |
6704 <param name="convertedValue">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param> | |
6705 <returns> | |
6706 <c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>. | |
6707 </returns> | |
6708 </member> | |
6709 <member name="M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)"> | |
6710 <summary> | |
6711 Converts the value to the specified type. If the value is unable to be converted, the | |
6712 value is checked whether it assignable to the specified type. | |
6713 </summary> | |
6714 <param name="initialValue">The value to convert.</param> | |
6715 <param name="culture">The culture to use when converting.</param> | |
6716 <param name="targetType">The type to convert or cast the value to.</param> | |
6717 <returns> | |
6718 The converted type. If conversion was unsuccessful, the initial value | |
6719 is returned if assignable to the target type. | |
6720 </returns> | |
6721 </member> | |
6722 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1"> | |
6723 <summary> | |
6724 Gets a dictionary of the names and values of an Enum type. | |
6725 </summary> | |
6726 <returns></returns> | |
6727 </member> | |
6728 <member name="M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)"> | |
6729 <summary> | |
6730 Gets a dictionary of the names and values of an Enum type. | |
6731 </summary> | |
6732 <param name="enumType">The enum type to get names and values for.</param> | |
6733 <returns></returns> | |
6734 </member> | |
6735 <member name="T:Newtonsoft.Json.JsonToken"> | |
6736 <summary> | |
6737 Specifies the type of Json token. | |
6738 </summary> | |
6739 </member> | |
6740 <member name="F:Newtonsoft.Json.JsonToken.None"> | |
6741 <summary> | |
6742 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. | |
6743 </summary> | |
6744 </member> | |
6745 <member name="F:Newtonsoft.Json.JsonToken.StartObject"> | |
6746 <summary> | |
6747 An object start token. | |
6748 </summary> | |
6749 </member> | |
6750 <member name="F:Newtonsoft.Json.JsonToken.StartArray"> | |
6751 <summary> | |
6752 An array start token. | |
6753 </summary> | |
6754 </member> | |
6755 <member name="F:Newtonsoft.Json.JsonToken.StartConstructor"> | |
6756 <summary> | |
6757 A constructor start token. | |
6758 </summary> | |
6759 </member> | |
6760 <member name="F:Newtonsoft.Json.JsonToken.PropertyName"> | |
6761 <summary> | |
6762 An object property name. | |
6763 </summary> | |
6764 </member> | |
6765 <member name="F:Newtonsoft.Json.JsonToken.Comment"> | |
6766 <summary> | |
6767 A comment. | |
6768 </summary> | |
6769 </member> | |
6770 <member name="F:Newtonsoft.Json.JsonToken.Raw"> | |
6771 <summary> | |
6772 Raw JSON. | |
6773 </summary> | |
6774 </member> | |
6775 <member name="F:Newtonsoft.Json.JsonToken.Integer"> | |
6776 <summary> | |
6777 An integer. | |
6778 </summary> | |
6779 </member> | |
6780 <member name="F:Newtonsoft.Json.JsonToken.Float"> | |
6781 <summary> | |
6782 A float. | |
6783 </summary> | |
6784 </member> | |
6785 <member name="F:Newtonsoft.Json.JsonToken.String"> | |
6786 <summary> | |
6787 A string. | |
6788 </summary> | |
6789 </member> | |
6790 <member name="F:Newtonsoft.Json.JsonToken.Boolean"> | |
6791 <summary> | |
6792 A boolean. | |
6793 </summary> | |
6794 </member> | |
6795 <member name="F:Newtonsoft.Json.JsonToken.Null"> | |
6796 <summary> | |
6797 A null token. | |
6798 </summary> | |
6799 </member> | |
6800 <member name="F:Newtonsoft.Json.JsonToken.Undefined"> | |
6801 <summary> | |
6802 An undefined token. | |
6803 </summary> | |
6804 </member> | |
6805 <member name="F:Newtonsoft.Json.JsonToken.EndObject"> | |
6806 <summary> | |
6807 An object end token. | |
6808 </summary> | |
6809 </member> | |
6810 <member name="F:Newtonsoft.Json.JsonToken.EndArray"> | |
6811 <summary> | |
6812 An array end token. | |
6813 </summary> | |
6814 </member> | |
6815 <member name="F:Newtonsoft.Json.JsonToken.EndConstructor"> | |
6816 <summary> | |
6817 A constructor end token. | |
6818 </summary> | |
6819 </member> | |
6820 <member name="F:Newtonsoft.Json.JsonToken.Date"> | |
6821 <summary> | |
6822 A Date. | |
6823 </summary> | |
6824 </member> | |
6825 <member name="F:Newtonsoft.Json.JsonToken.Bytes"> | |
6826 <summary> | |
6827 Byte data. | |
6828 </summary> | |
6829 </member> | |
6830 <member name="T:Newtonsoft.Json.WriteState"> | |
6831 <summary> | |
6832 Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter"/>. | |
6833 </summary> | |
6834 </member> | |
6835 <member name="F:Newtonsoft.Json.WriteState.Error"> | |
6836 <summary> | |
6837 An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter"/> in an invalid state. | |
6838 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. | |
6839 Any other <see cref="T:Newtonsoft.Json.JsonWriter"/> method calls results in an <see cref="T:System.InvalidOperationException"/> being thrown. | |
6840 </summary> | |
6841 </member> | |
6842 <member name="F:Newtonsoft.Json.WriteState.Closed"> | |
6843 <summary> | |
6844 The <see cref="M:Newtonsoft.Json.JsonWriter.Close"/> method has been called. | |
6845 </summary> | |
6846 </member> | |
6847 <member name="F:Newtonsoft.Json.WriteState.Object"> | |
6848 <summary> | |
6849 An object is being written. | |
6850 </summary> | |
6851 </member> | |
6852 <member name="F:Newtonsoft.Json.WriteState.Array"> | |
6853 <summary> | |
6854 A array is being written. | |
6855 </summary> | |
6856 </member> | |
6857 <member name="F:Newtonsoft.Json.WriteState.Constructor"> | |
6858 <summary> | |
6859 A constructor is being written. | |
6860 </summary> | |
6861 </member> | |
6862 <member name="F:Newtonsoft.Json.WriteState.Property"> | |
6863 <summary> | |
6864 A property is being written. | |
6865 </summary> | |
6866 </member> | |
6867 <member name="F:Newtonsoft.Json.WriteState.Start"> | |
6868 <summary> | |
6869 A write method has not been called. | |
6870 </summary> | |
6871 </member> | |
6872 <member name="T:Newtonsoft.Json.Formatting"> | |
6873 <summary> | |
6874 Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>. | |
6875 </summary> | |
6876 </member> | |
6877 <member name="F:Newtonsoft.Json.Formatting.None"> | |
6878 <summary> | |
6879 No special formatting is applied. This is the default. | |
6880 </summary> | |
6881 </member> | |
6882 <member name="F:Newtonsoft.Json.Formatting.Indented"> | |
6883 <summary> | |
6884 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. | |
6885 </summary> | |
6886 </member> | |
6887 <member name="T:Newtonsoft.Json.Utilities.StringBuffer"> | |
6888 <summary> | |
6889 Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. | |
6890 </summary> | |
6891 </member> | |
6892 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})"> | |
6893 <summary> | |
6894 Determines whether the collection is null or empty. | |
6895 </summary> | |
6896 <param name="collection">The collection.</param> | |
6897 <returns> | |
6898 <c>true</c> if the collection is null or empty; otherwise, <c>false</c>. | |
6899 </returns> | |
6900 </member> | |
6901 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})"> | |
6902 <summary> | |
6903 Adds the elements of the specified collection to the specified generic IList. | |
6904 </summary> | |
6905 <param name="initial">The list to add to.</param> | |
6906 <param name="collection">The collection of elements to add.</param> | |
6907 </member> | |
6908 <member name="M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})"> | |
6909 <summary> | |
6910 Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. | |
6911 </summary> | |
6912 <typeparam name="TSource">The type of the elements of source.</typeparam> | |
6913 <param name="list">A sequence in which to locate a value.</param> | |
6914 <param name="value">The object to locate in the sequence</param> | |
6915 <param name="comparer">An equality comparer to compare values.</param> | |
6916 <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns> | |
6917 </member> | |
6918 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)"> | |
6919 <summary> | |
6920 Gets the type of the typed collection's items. | |
6921 </summary> | |
6922 <param name="type">The type.</param> | |
6923 <returns>The type of the typed collection's items.</returns> | |
6924 </member> | |
6925 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)"> | |
6926 <summary> | |
6927 Gets the member's underlying type. | |
6928 </summary> | |
6929 <param name="member">The member.</param> | |
6930 <returns>The underlying type of the member.</returns> | |
6931 </member> | |
6932 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)"> | |
6933 <summary> | |
6934 Determines whether the member is an indexed property. | |
6935 </summary> | |
6936 <param name="member">The member.</param> | |
6937 <returns> | |
6938 <c>true</c> if the member is an indexed property; otherwise, <c>false</c>. | |
6939 </returns> | |
6940 </member> | |
6941 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)"> | |
6942 <summary> | |
6943 Determines whether the property is an indexed property. | |
6944 </summary> | |
6945 <param name="property">The property.</param> | |
6946 <returns> | |
6947 <c>true</c> if the property is an indexed property; otherwise, <c>false</c>. | |
6948 </returns> | |
6949 </member> | |
6950 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)"> | |
6951 <summary> | |
6952 Gets the member's value on the object. | |
6953 </summary> | |
6954 <param name="member">The member.</param> | |
6955 <param name="target">The target object.</param> | |
6956 <returns>The member's value on the object.</returns> | |
6957 </member> | |
6958 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)"> | |
6959 <summary> | |
6960 Sets the member's value on the target object. | |
6961 </summary> | |
6962 <param name="member">The member.</param> | |
6963 <param name="target">The target.</param> | |
6964 <param name="value">The value.</param> | |
6965 </member> | |
6966 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)"> | |
6967 <summary> | |
6968 Determines whether the specified MemberInfo can be read. | |
6969 </summary> | |
6970 <param name="member">The MemberInfo to determine whether can be read.</param> | |
6971 /// <param name="nonPublic">if set to <c>true</c> then allow the member to be gotten non-publicly.</param> | |
6972 <returns> | |
6973 <c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>. | |
6974 </returns> | |
6975 </member> | |
6976 <member name="M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)"> | |
6977 <summary> | |
6978 Determines whether the specified MemberInfo can be set. | |
6979 </summary> | |
6980 <param name="member">The MemberInfo to determine whether can be set.</param> | |
6981 <param name="nonPublic">if set to <c>true</c> then allow the member to be set non-publicly.</param> | |
6982 <param name="canSetReadOnly">if set to <c>true</c> then allow the member to be set if read-only.</param> | |
6983 <returns> | |
6984 <c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>. | |
6985 </returns> | |
6986 </member> | |
6987 <member name="M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)"> | |
6988 <summary> | |
6989 Determines whether the string is all white space. Empty string will return false. | |
6990 </summary> | |
6991 <param name="s">The string to test whether it is all white space.</param> | |
6992 <returns> | |
6993 <c>true</c> if the string is all white space; otherwise, <c>false</c>. | |
6994 </returns> | |
6995 </member> | |
6996 <member name="M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)"> | |
6997 <summary> | |
6998 Nulls an empty string. | |
6999 </summary> | |
7000 <param name="s">The string.</param> | |
7001 <returns>Null if the string was null, otherwise the string unchanged.</returns> | |
7002 </member> | |
7003 </members> | |
7004 </doc> |