프로젝트

일반

사용자정보

개정판 40

규민 황이(가) 약 7년 전에 추가함

차이점 보기:

HAgent/UDP_Test 1.0/UDP_Test.exe.config
1
<?xml version="1.0" encoding="utf-8" ?>
2
<configuration>
3
    <startup> 
4
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
5
    </startup>
6
</configuration>
HAgent/UDP_Test 1.0/Newtonsoft.Json.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Newtonsoft.Json</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Newtonsoft.Json.Bson.BsonObjectId">
8
            <summary>
9
            Represents a BSON Oid (object id).
10
            </summary>
11
        </member>
12
        <member name="P:Newtonsoft.Json.Bson.BsonObjectId.Value">
13
            <summary>
14
            Gets or sets the value of the Oid.
15
            </summary>
16
            <value>The value of the Oid.</value>
17
        </member>
18
        <member name="M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])">
19
            <summary>
20
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> class.
21
            </summary>
22
            <param name="value">The Oid value.</param>
23
        </member>
24
        <member name="T:Newtonsoft.Json.Bson.BsonReader">
25
            <summary>
26
            Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
27
            </summary>
28
        </member>
29
        <member name="P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility">
30
            <summary>
31
            Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary.
32
            </summary>
33
            <value>
34
            	<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
35
            </value>
36
        </member>
37
        <member name="P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray">
38
            <summary>
39
            Gets or sets a value indicating whether the root object will be read as a JSON array.
40
            </summary>
41
            <value>
42
            	<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
43
            </value>
44
        </member>
45
        <member name="P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling">
46
            <summary>
47
            Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
48
            </summary>
49
            <value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
50
        </member>
51
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)">
52
            <summary>
53
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
54
            </summary>
55
            <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
56
        </member>
57
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)">
58
            <summary>
59
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
60
            </summary>
61
            <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
62
        </member>
63
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
64
            <summary>
65
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
66
            </summary>
67
            <param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
68
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
69
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
70
        </member>
71
        <member name="M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
72
            <summary>
73
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonReader"/> class.
74
            </summary>
75
            <param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
76
            <param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
77
            <param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
78
        </member>
79
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Read">
80
            <summary>
81
            Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
82
            </summary>
83
            <returns>
84
            <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
85
            </returns>
86
        </member>
87
        <member name="M:Newtonsoft.Json.Bson.BsonReader.Close">
88
            <summary>
89
            Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
90
            If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
91
            </summary>
92
        </member>
93
        <member name="T:Newtonsoft.Json.Bson.BsonWriter">
94
            <summary>
95
            Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
96
            </summary>
97
        </member>
98
        <member name="P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling">
99
            <summary>
100
            Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
101
            When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
102
            </summary>
103
            <value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
104
        </member>
105
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)">
106
            <summary>
107
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
108
            </summary>
109
            <param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
110
        </member>
111
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)">
112
            <summary>
113
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonWriter"/> class.
114
            </summary>
115
            <param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
116
        </member>
117
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Flush">
118
            <summary>
119
            Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
120
            </summary>
121
        </member>
122
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
123
            <summary>
124
            Writes the end.
125
            </summary>
126
            <param name="token">The token.</param>
127
        </member>
128
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)">
129
            <summary>
130
            Writes a comment <c>/*...*/</c> containing the specified text.
131
            </summary>
132
            <param name="text">Text to place inside the comment.</param>
133
        </member>
134
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)">
135
            <summary>
136
            Writes the start of a constructor with the given name.
137
            </summary>
138
            <param name="name">The name of the constructor.</param>
139
        </member>
140
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)">
141
            <summary>
142
            Writes raw JSON.
143
            </summary>
144
            <param name="json">The raw JSON to write.</param>
145
        </member>
146
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)">
147
            <summary>
148
            Writes raw JSON where a value is expected and updates the writer's state.
149
            </summary>
150
            <param name="json">The raw JSON to write.</param>
151
        </member>
152
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray">
153
            <summary>
154
            Writes the beginning of a JSON array.
155
            </summary>
156
        </member>
157
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject">
158
            <summary>
159
            Writes the beginning of a JSON object.
160
            </summary>
161
        </member>
162
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)">
163
            <summary>
164
            Writes the property name of a name/value pair on a JSON object.
165
            </summary>
166
            <param name="name">The name of the property.</param>
167
        </member>
168
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.Close">
169
            <summary>
170
            Closes this writer.
171
            If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
172
            If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
173
            </summary>
174
        </member>
175
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Object)">
176
            <summary>
177
            Writes a <see cref="T:System.Object"/> value.
178
            An error will raised if the value cannot be written as a single JSON token.
179
            </summary>
180
            <param name="value">The <see cref="T:System.Object"/> value to write.</param>
181
        </member>
182
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteNull">
183
            <summary>
184
            Writes a null value.
185
            </summary>
186
        </member>
187
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined">
188
            <summary>
189
            Writes an undefined value.
190
            </summary>
191
        </member>
192
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)">
193
            <summary>
194
            Writes a <see cref="T:System.String"/> value.
195
            </summary>
196
            <param name="value">The <see cref="T:System.String"/> value to write.</param>
197
        </member>
198
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)">
199
            <summary>
200
            Writes a <see cref="T:System.Int32"/> value.
201
            </summary>
202
            <param name="value">The <see cref="T:System.Int32"/> value to write.</param>
203
        </member>
204
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)">
205
            <summary>
206
            Writes a <see cref="T:System.UInt32"/> value.
207
            </summary>
208
            <param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
209
        </member>
210
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)">
211
            <summary>
212
            Writes a <see cref="T:System.Int64"/> value.
213
            </summary>
214
            <param name="value">The <see cref="T:System.Int64"/> value to write.</param>
215
        </member>
216
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)">
217
            <summary>
218
            Writes a <see cref="T:System.UInt64"/> value.
219
            </summary>
220
            <param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
221
        </member>
222
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)">
223
            <summary>
224
            Writes a <see cref="T:System.Single"/> value.
225
            </summary>
226
            <param name="value">The <see cref="T:System.Single"/> value to write.</param>
227
        </member>
228
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)">
229
            <summary>
230
            Writes a <see cref="T:System.Double"/> value.
231
            </summary>
232
            <param name="value">The <see cref="T:System.Double"/> value to write.</param>
233
        </member>
234
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)">
235
            <summary>
236
            Writes a <see cref="T:System.Boolean"/> value.
237
            </summary>
238
            <param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
239
        </member>
240
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)">
241
            <summary>
242
            Writes a <see cref="T:System.Int16"/> value.
243
            </summary>
244
            <param name="value">The <see cref="T:System.Int16"/> value to write.</param>
245
        </member>
246
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)">
247
            <summary>
248
            Writes a <see cref="T:System.UInt16"/> value.
249
            </summary>
250
            <param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
251
        </member>
252
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)">
253
            <summary>
254
            Writes a <see cref="T:System.Char"/> value.
255
            </summary>
256
            <param name="value">The <see cref="T:System.Char"/> value to write.</param>
257
        </member>
258
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)">
259
            <summary>
260
            Writes a <see cref="T:System.Byte"/> value.
261
            </summary>
262
            <param name="value">The <see cref="T:System.Byte"/> value to write.</param>
263
        </member>
264
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)">
265
            <summary>
266
            Writes a <see cref="T:System.SByte"/> value.
267
            </summary>
268
            <param name="value">The <see cref="T:System.SByte"/> value to write.</param>
269
        </member>
270
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)">
271
            <summary>
272
            Writes a <see cref="T:System.Decimal"/> value.
273
            </summary>
274
            <param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
275
        </member>
276
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)">
277
            <summary>
278
            Writes a <see cref="T:System.DateTime"/> value.
279
            </summary>
280
            <param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
281
        </member>
282
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)">
283
            <summary>
284
            Writes a <see cref="T:System.DateTimeOffset"/> value.
285
            </summary>
286
            <param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
287
        </member>
288
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])">
289
            <summary>
290
            Writes a <see cref="T:System.Byte"/>[] value.
291
            </summary>
292
            <param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
293
        </member>
294
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)">
295
            <summary>
296
            Writes a <see cref="T:System.Guid"/> value.
297
            </summary>
298
            <param name="value">The <see cref="T:System.Guid"/> value to write.</param>
299
        </member>
300
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)">
301
            <summary>
302
            Writes a <see cref="T:System.TimeSpan"/> value.
303
            </summary>
304
            <param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
305
        </member>
306
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)">
307
            <summary>
308
            Writes a <see cref="T:System.Uri"/> value.
309
            </summary>
310
            <param name="value">The <see cref="T:System.Uri"/> value to write.</param>
311
        </member>
312
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])">
313
            <summary>
314
            Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
315
            </summary>
316
            <param name="value">The Object ID value to write.</param>
317
        </member>
318
        <member name="M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)">
319
            <summary>
320
            Writes a BSON regex.
321
            </summary>
322
            <param name="pattern">The regex pattern.</param>
323
            <param name="options">The regex options.</param>
324
        </member>
325
        <member name="T:Newtonsoft.Json.ConstructorHandling">
326
            <summary>
327
            Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
328
            </summary>
329
        </member>
330
        <member name="F:Newtonsoft.Json.ConstructorHandling.Default">
331
            <summary>
332
            First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
333
            </summary>
334
        </member>
335
        <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor">
336
            <summary>
337
            Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
338
            </summary>
339
        </member>
340
        <member name="T:Newtonsoft.Json.Converters.BinaryConverter">
341
            <summary>
342
            Converts a binary value to and from a base 64 string value.
343
            </summary>
344
        </member>
345
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
346
            <summary>
347
            Writes the JSON representation of the object.
348
            </summary>
349
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
350
            <param name="value">The value.</param>
351
            <param name="serializer">The calling serializer.</param>
352
        </member>
353
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
354
            <summary>
355
            Reads the JSON representation of the object.
356
            </summary>
357
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
358
            <param name="objectType">Type of the object.</param>
359
            <param name="existingValue">The existing value of object being read.</param>
360
            <param name="serializer">The calling serializer.</param>
361
            <returns>The object value.</returns>
362
        </member>
363
        <member name="M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)">
364
            <summary>
365
            Determines whether this instance can convert the specified object type.
366
            </summary>
367
            <param name="objectType">Type of the object.</param>
368
            <returns>
369
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
370
            </returns>
371
        </member>
372
        <member name="T:Newtonsoft.Json.Converters.BsonObjectIdConverter">
373
            <summary>
374
            Converts a <see cref="T:Newtonsoft.Json.Bson.BsonObjectId"/> to and from JSON and BSON.
375
            </summary>
376
        </member>
377
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
378
            <summary>
379
            Writes the JSON representation of the object.
380
            </summary>
381
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
382
            <param name="value">The value.</param>
383
            <param name="serializer">The calling serializer.</param>
384
        </member>
385
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
386
            <summary>
387
            Reads the JSON representation of the object.
388
            </summary>
389
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
390
            <param name="objectType">Type of the object.</param>
391
            <param name="existingValue">The existing value of object being read.</param>
392
            <param name="serializer">The calling serializer.</param>
393
            <returns>The object value.</returns>
394
        </member>
395
        <member name="M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)">
396
            <summary>
397
            Determines whether this instance can convert the specified object type.
398
            </summary>
399
            <param name="objectType">Type of the object.</param>
400
            <returns>
401
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
402
            </returns>
403
        </member>
404
        <member name="T:Newtonsoft.Json.Converters.CustomCreationConverter`1">
405
            <summary>
406
            Creates a custom object.
407
            </summary>
408
            <typeparam name="T">The object type to convert.</typeparam>
409
        </member>
410
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
411
            <summary>
412
            Writes the JSON representation of the object.
413
            </summary>
414
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
415
            <param name="value">The value.</param>
416
            <param name="serializer">The calling serializer.</param>
417
        </member>
418
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
419
            <summary>
420
            Reads the JSON representation of the object.
421
            </summary>
422
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
423
            <param name="objectType">Type of the object.</param>
424
            <param name="existingValue">The existing value of object being read.</param>
425
            <param name="serializer">The calling serializer.</param>
426
            <returns>The object value.</returns>
427
        </member>
428
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)">
429
            <summary>
430
            Creates an object which will then be populated by the serializer.
431
            </summary>
432
            <param name="objectType">Type of the object.</param>
433
            <returns>The created object.</returns>
434
        </member>
435
        <member name="M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)">
436
            <summary>
437
            Determines whether this instance can convert the specified object type.
438
            </summary>
439
            <param name="objectType">Type of the object.</param>
440
            <returns>
441
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
442
            </returns>
443
        </member>
444
        <member name="P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite">
445
            <summary>
446
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
447
            </summary>
448
            <value>
449
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
450
            </value>
451
        </member>
452
        <member name="T:Newtonsoft.Json.Converters.DataSetConverter">
453
            <summary>
454
            Converts a <see cref="T:System.Data.DataSet"/> to and from JSON.
455
            </summary>
456
        </member>
457
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
458
            <summary>
459
            Writes the JSON representation of the object.
460
            </summary>
461
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
462
            <param name="value">The value.</param>
463
            <param name="serializer">The calling serializer.</param>
464
        </member>
465
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
466
            <summary>
467
            Reads the JSON representation of the object.
468
            </summary>
469
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
470
            <param name="objectType">Type of the object.</param>
471
            <param name="existingValue">The existing value of object being read.</param>
472
            <param name="serializer">The calling serializer.</param>
473
            <returns>The object value.</returns>
474
        </member>
475
        <member name="M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)">
476
            <summary>
477
            Determines whether this instance can convert the specified value type.
478
            </summary>
479
            <param name="valueType">Type of the value.</param>
480
            <returns>
481
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
482
            </returns>
483
        </member>
484
        <member name="T:Newtonsoft.Json.Converters.DataTableConverter">
485
            <summary>
486
            Converts a <see cref="T:System.Data.DataTable"/> to and from JSON.
487
            </summary>
488
        </member>
489
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
490
            <summary>
491
            Writes the JSON representation of the object.
492
            </summary>
493
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
494
            <param name="value">The value.</param>
495
            <param name="serializer">The calling serializer.</param>
496
        </member>
497
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
498
            <summary>
499
            Reads the JSON representation of the object.
500
            </summary>
501
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
502
            <param name="objectType">Type of the object.</param>
503
            <param name="existingValue">The existing value of object being read.</param>
504
            <param name="serializer">The calling serializer.</param>
505
            <returns>The object value.</returns>
506
        </member>
507
        <member name="M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)">
508
            <summary>
509
            Determines whether this instance can convert the specified value type.
510
            </summary>
511
            <param name="valueType">Type of the value.</param>
512
            <returns>
513
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
514
            </returns>
515
        </member>
516
        <member name="T:Newtonsoft.Json.Converters.DateTimeConverterBase">
517
            <summary>
518
            Provides a base class for converting a <see cref="T:System.DateTime"/> to and from JSON.
519
            </summary>
520
        </member>
521
        <member name="M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)">
522
            <summary>
523
            Determines whether this instance can convert the specified object type.
524
            </summary>
525
            <param name="objectType">Type of the object.</param>
526
            <returns>
527
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
528
            </returns>
529
        </member>
530
        <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter">
531
            <summary>
532
            Converts a F# discriminated union type to and from JSON.
533
            </summary>
534
        </member>
535
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
536
            <summary>
537
            Writes the JSON representation of the object.
538
            </summary>
539
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
540
            <param name="value">The value.</param>
541
            <param name="serializer">The calling serializer.</param>
542
        </member>
543
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
544
            <summary>
545
            Reads the JSON representation of the object.
546
            </summary>
547
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
548
            <param name="objectType">Type of the object.</param>
549
            <param name="existingValue">The existing value of object being read.</param>
550
            <param name="serializer">The calling serializer.</param>
551
            <returns>The object value.</returns>
552
        </member>
553
        <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)">
554
            <summary>
555
            Determines whether this instance can convert the specified object type.
556
            </summary>
557
            <param name="objectType">Type of the object.</param>
558
            <returns>
559
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
560
            </returns>
561
        </member>
562
        <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter">
563
            <summary>
564
            Converts an Entity Framework <see cref="T:System.Data.EntityKeyMember"/> to and from JSON.
565
            </summary>
566
        </member>
567
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
568
            <summary>
569
            Writes the JSON representation of the object.
570
            </summary>
571
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
572
            <param name="value">The value.</param>
573
            <param name="serializer">The calling serializer.</param>
574
        </member>
575
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
576
            <summary>
577
            Reads the JSON representation of the object.
578
            </summary>
579
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
580
            <param name="objectType">Type of the object.</param>
581
            <param name="existingValue">The existing value of object being read.</param>
582
            <param name="serializer">The calling serializer.</param>
583
            <returns>The object value.</returns>
584
        </member>
585
        <member name="M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)">
586
            <summary>
587
            Determines whether this instance can convert the specified object type.
588
            </summary>
589
            <param name="objectType">Type of the object.</param>
590
            <returns>
591
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
592
            </returns>
593
        </member>
594
        <member name="T:Newtonsoft.Json.Converters.ExpandoObjectConverter">
595
            <summary>
596
            Converts an <see cref="T:System.Dynamic.ExpandoObject"/> to and from JSON.
597
            </summary>
598
        </member>
599
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
600
            <summary>
601
            Writes the JSON representation of the object.
602
            </summary>
603
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
604
            <param name="value">The value.</param>
605
            <param name="serializer">The calling serializer.</param>
606
        </member>
607
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
608
            <summary>
609
            Reads the JSON representation of the object.
610
            </summary>
611
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
612
            <param name="objectType">Type of the object.</param>
613
            <param name="existingValue">The existing value of object being read.</param>
614
            <param name="serializer">The calling serializer.</param>
615
            <returns>The object value.</returns>
616
        </member>
617
        <member name="M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)">
618
            <summary>
619
            Determines whether this instance can convert the specified object type.
620
            </summary>
621
            <param name="objectType">Type of the object.</param>
622
            <returns>
623
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
624
            </returns>
625
        </member>
626
        <member name="P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite">
627
            <summary>
628
            Gets a value indicating whether this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON.
629
            </summary>
630
            <value>
631
            	<c>true</c> if this <see cref="T:Newtonsoft.Json.JsonConverter"/> can write JSON; otherwise, <c>false</c>.
632
            </value>
633
        </member>
634
        <member name="T:Newtonsoft.Json.Converters.IsoDateTimeConverter">
635
            <summary>
636
            Converts a <see cref="T:System.DateTime"/> to and from the ISO 8601 date format (e.g. <c>"2008-04-12T12:53Z"</c>).
637
            </summary>
638
        </member>
639
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles">
640
            <summary>
641
            Gets or sets the date time styles used when converting a date to and from JSON.
642
            </summary>
643
            <value>The date time styles used when converting a date to and from JSON.</value>
644
        </member>
645
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat">
646
            <summary>
647
            Gets or sets the date time format used when converting a date to and from JSON.
648
            </summary>
649
            <value>The date time format used when converting a date to and from JSON.</value>
650
        </member>
651
        <member name="P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture">
652
            <summary>
653
            Gets or sets the culture used when converting a date to and from JSON.
654
            </summary>
655
            <value>The culture used when converting a date to and from JSON.</value>
656
        </member>
657
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
658
            <summary>
659
            Writes the JSON representation of the object.
660
            </summary>
661
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
662
            <param name="value">The value.</param>
663
            <param name="serializer">The calling serializer.</param>
664
        </member>
665
        <member name="M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
666
            <summary>
667
            Reads the JSON representation of the object.
668
            </summary>
669
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
670
            <param name="objectType">Type of the object.</param>
671
            <param name="existingValue">The existing value of object being read.</param>
672
            <param name="serializer">The calling serializer.</param>
673
            <returns>The object value.</returns>
674
        </member>
675
        <member name="T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter">
676
            <summary>
677
            Converts a <see cref="T:System.DateTime"/> to and from a JavaScript <c>Date</c> constructor (e.g. <c>new Date(52231943)</c>).
678
            </summary>
679
        </member>
680
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
681
            <summary>
682
            Writes the JSON representation of the object.
683
            </summary>
684
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
685
            <param name="value">The value.</param>
686
            <param name="serializer">The calling serializer.</param>
687
        </member>
688
        <member name="M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
689
            <summary>
690
            Reads the JSON representation of the object.
691
            </summary>
692
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
693
            <param name="objectType">Type of the object.</param>
694
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
695
            <param name="serializer">The calling serializer.</param>
696
            <returns>The object value.</returns>
697
        </member>
698
        <member name="T:Newtonsoft.Json.Converters.KeyValuePairConverter">
699
            <summary>
700
            Converts a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to and from JSON.
701
            </summary>
702
        </member>
703
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
704
            <summary>
705
            Writes the JSON representation of the object.
706
            </summary>
707
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
708
            <param name="value">The value.</param>
709
            <param name="serializer">The calling serializer.</param>
710
        </member>
711
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
712
            <summary>
713
            Reads the JSON representation of the object.
714
            </summary>
715
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
716
            <param name="objectType">Type of the object.</param>
717
            <param name="existingValue">The existing value of object being read.</param>
718
            <param name="serializer">The calling serializer.</param>
719
            <returns>The object value.</returns>
720
        </member>
721
        <member name="M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)">
722
            <summary>
723
            Determines whether this instance can convert the specified object type.
724
            </summary>
725
            <param name="objectType">Type of the object.</param>
726
            <returns>
727
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
728
            </returns>
729
        </member>
730
        <member name="T:Newtonsoft.Json.Converters.RegexConverter">
731
            <summary>
732
            Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from JSON and BSON.
733
            </summary>
734
        </member>
735
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
736
            <summary>
737
            Writes the JSON representation of the object.
738
            </summary>
739
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
740
            <param name="value">The value.</param>
741
            <param name="serializer">The calling serializer.</param>
742
        </member>
743
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
744
            <summary>
745
            Reads the JSON representation of the object.
746
            </summary>
747
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
748
            <param name="objectType">Type of the object.</param>
749
            <param name="existingValue">The existing value of object being read.</param>
750
            <param name="serializer">The calling serializer.</param>
751
            <returns>The object value.</returns>
752
        </member>
753
        <member name="M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)">
754
            <summary>
755
            Determines whether this instance can convert the specified object type.
756
            </summary>
757
            <param name="objectType">Type of the object.</param>
758
            <returns>
759
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
760
            </returns>
761
        </member>
762
        <member name="T:Newtonsoft.Json.Converters.StringEnumConverter">
763
            <summary>
764
            Converts an <see cref="T:System.Enum"/> to and from its name string value.
765
            </summary>
766
        </member>
767
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText">
768
            <summary>
769
            Gets or sets a value indicating whether the written enum text should be camel case.
770
            The default value is <c>false</c>.
771
            </summary>
772
            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>
773
        </member>
774
        <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues">
775
            <summary>
776
            Gets or sets a value indicating whether integer values are allowed when deserializing.
777
            The default value is <c>true</c>.
778
            </summary>
779
            <value><c>true</c> if integers are allowed when deserializing; otherwise, <c>false</c>.</value>
780
        </member>
781
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor">
782
            <summary>
783
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
784
            </summary>
785
        </member>
786
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor(System.Boolean)">
787
            <summary>
788
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class.
789
            </summary>
790
            <param name="camelCaseText"><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</param>
791
        </member>
792
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
793
            <summary>
794
            Writes the JSON representation of the object.
795
            </summary>
796
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
797
            <param name="value">The value.</param>
798
            <param name="serializer">The calling serializer.</param>
799
        </member>
800
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
801
            <summary>
802
            Reads the JSON representation of the object.
803
            </summary>
804
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
805
            <param name="objectType">Type of the object.</param>
806
            <param name="existingValue">The existing value of object being read.</param>
807
            <param name="serializer">The calling serializer.</param>
808
            <returns>The object value.</returns>
809
        </member>
810
        <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)">
811
            <summary>
812
            Determines whether this instance can convert the specified object type.
813
            </summary>
814
            <param name="objectType">Type of the object.</param>
815
            <returns>
816
            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
817
            </returns>
818
        </member>
819
        <member name="T:Newtonsoft.Json.Converters.UnixDateTimeConverter">
820
            <summary>
821
            Converts a <see cref="T:System.DateTime"/> to and from Unix epoch time
822
            </summary>
823
        </member>
824
        <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
825
            <summary>
826
            Writes the JSON representation of the object.
827
            </summary>
828
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
829
            <param name="value">The value.</param>
830
            <param name="serializer">The calling serializer.</param>
831
        </member>
832
        <member name="M:Newtonsoft.Json.Converters.UnixDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
833
            <summary>
834
            Reads the JSON representation of the object.
835
            </summary>
836
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
837
            <param name="objectType">Type of the object.</param>
838
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
839
            <param name="serializer">The calling serializer.</param>
840
            <returns>The object value.</returns>
841
        </member>
842
        <member name="T:Newtonsoft.Json.Converters.VersionConverter">
843
            <summary>
844
            Converts a <see cref="T:System.Version"/> to and from a string (e.g. <c>"1.2.3.4"</c>).
845
            </summary>
846
        </member>
847
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
848
            <summary>
849
            Writes the JSON representation of the object.
850
            </summary>
851
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
852
            <param name="value">The value.</param>
853
            <param name="serializer">The calling serializer.</param>
854
        </member>
855
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
856
            <summary>
857
            Reads the JSON representation of the object.
858
            </summary>
859
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
860
            <param name="objectType">Type of the object.</param>
861
            <param name="existingValue">The existing property value of the JSON that is being converted.</param>
862
            <param name="serializer">The calling serializer.</param>
863
            <returns>The object value.</returns>
864
        </member>
865
        <member name="M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)">
866
            <summary>
867
            Determines whether this instance can convert the specified object type.
868
            </summary>
869
            <param name="objectType">Type of the object.</param>
870
            <returns>
871
            	<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
872
            </returns>
873
        </member>
874
        <member name="T:Newtonsoft.Json.Converters.XmlNodeConverter">
875
            <summary>
876
            Converts XML to and from JSON.
877
            </summary>
878
        </member>
879
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName">
880
            <summary>
881
            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
882
            </summary>
883
            <value>The name of the deserialized root element.</value>
884
        </member>
885
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute">
886
            <summary>
887
            Gets or sets a flag to indicate whether to write the Json.NET array attribute.
888
            This attribute helps preserve arrays when converting the written XML back to JSON.
889
            </summary>
890
            <value><c>true</c> if the array attribute is written to the XML; otherwise, <c>false</c>.</value>
891
        </member>
892
        <member name="P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject">
893
            <summary>
894
            Gets or sets a value indicating whether to write the root JSON object.
895
            </summary>
896
            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>
897
        </member>
898
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
899
            <summary>
900
            Writes the JSON representation of the object.
901
            </summary>
902
            <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
903
            <param name="serializer">The calling serializer.</param>
904
            <param name="value">The value.</param>
905
        </member>
906
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
907
            <summary>
908
            Reads the JSON representation of the object.
909
            </summary>
910
            <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
911
            <param name="objectType">Type of the object.</param>
912
            <param name="existingValue">The existing value of object being read.</param>
913
            <param name="serializer">The calling serializer.</param>
914
            <returns>The object value.</returns>
915
        </member>
916
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)">
917
            <summary>
918
            Checks if the <paramref name="attributeName"/> is a namespace attribute.
919
            </summary>
920
            <param name="attributeName">Attribute name to test.</param>
921
            <param name="prefix">The attribute name prefix if it has one, otherwise an empty string.</param>
922
            <returns><c>true</c> if attribute name is for a namespace attribute, otherwise <c>false</c>.</returns>
923
        </member>
924
        <member name="M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)">
925
            <summary>
926
            Determines whether this instance can convert the specified value type.
927
            </summary>
928
            <param name="valueType">Type of the value.</param>
929
            <returns>
930
            	<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.
931
            </returns>
932
        </member>
933
        <member name="T:Newtonsoft.Json.DateFormatHandling">
934
            <summary>
935
            Specifies how dates are formatted when writing JSON text.
936
            </summary>
937
        </member>
938
        <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat">
939
            <summary>
940
            Dates are written in the ISO 8601 format, e.g. <c>"2012-03-21T05:40Z"</c>.
941
            </summary>
942
        </member>
943
        <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat">
944
            <summary>
945
            Dates are written in the Microsoft JSON format, e.g. <c>"\/Date(1198908717056)\/"</c>.
946
            </summary>
947
        </member>
948
        <member name="T:Newtonsoft.Json.DateParseHandling">
949
            <summary>
950
            Specifies how date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed when reading JSON text.
951
            </summary>
952
        </member>
953
        <member name="F:Newtonsoft.Json.DateParseHandling.None">
954
            <summary>
955
            Date formatted strings are not parsed to a date type and are read as strings.
956
            </summary>
957
        </member>
958
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTime">
959
            <summary>
960
            Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>.
961
            </summary>
962
        </member>
963
        <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset">
964
            <summary>
965
            Date formatted strings, e.g. <c>"\/Date(1198908717056)\/"</c> and <c>"2012-03-21T05:40Z"</c>, are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>.
966
            </summary>
967
        </member>
968
        <member name="T:Newtonsoft.Json.DateTimeZoneHandling">
969
            <summary>
970
            Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>.
971
            </summary>
972
        </member>
973
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local">
974
            <summary>
975
            Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.
976
            </summary>
977
        </member>
978
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc">
979
            <summary>
980
            Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC.
981
            </summary>
982
        </member>
983
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified">
984
            <summary>
985
            Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string.
986
            If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified.
987
            </summary>
988
        </member>
989
        <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind">
990
            <summary>
991
            Time zone information should be preserved when converting.
992
            </summary>
993
        </member>
994
        <member name="T:Newtonsoft.Json.DefaultValueHandling">
995
            <summary>
996
            Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>.
997
            </summary>
998
            <example>
999
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" />
1000
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" />
1001
            </example>
1002
        </member>
1003
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Include">
1004
            <summary>
1005
            Include members where the member value is the same as the member's default value when serializing objects.
1006
            Included members are written to JSON. Has no effect when deserializing.
1007
            </summary>
1008
        </member>
1009
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore">
1010
            <summary>
1011
            Ignore members where the member value is the same as the member's default value when serializing objects
1012
            so that it is not written to JSON.
1013
            This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers,
1014
            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by
1015
            placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property.
1016
            </summary>
1017
        </member>
1018
        <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate">
1019
            <summary>
1020
            Members with a default value but no JSON will be set to their default value when deserializing.
1021
            </summary>
1022
        </member>
1023
        <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate">
1024
            <summary>
1025
            Ignore members where the member value is the same as the member's default value when serializing objects
1026
            and set members to their default value when deserializing.
1027
            </summary>
1028
        </member>
1029
        <member name="T:Newtonsoft.Json.FloatFormatHandling">
1030
            <summary>
1031
            Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>,
1032
            <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>.
1033
            </summary>
1034
        </member>
1035
        <member name="F:Newtonsoft.Json.FloatFormatHandling.String">
1036
            <summary>
1037
            Write special floating point values as strings in JSON, e.g. <c>"NaN"</c>, <c>"Infinity"</c>, <c>"-Infinity"</c>.
1038
            </summary>
1039
        </member>
1040
        <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol">
1041
            <summary>
1042
            Write special floating point values as symbols in JSON, e.g. <c>NaN</c>, <c>Infinity</c>, <c>-Infinity</c>.
1043
            Note that this will produce non-valid JSON.
1044
            </summary>
1045
        </member>
1046
        <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue">
1047
            <summary>
1048
            Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, <c>null</c> for a <see cref="T:System.Nullable`1"/> of <see cref="T:System.Double"/> property.
1049
            </summary>
1050
        </member>
1051
        <member name="T:Newtonsoft.Json.FloatParseHandling">
1052
            <summary>
1053
            Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
1054
            </summary>
1055
        </member>
1056
        <member name="F:Newtonsoft.Json.FloatParseHandling.Double">
1057
            <summary>
1058
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>.
1059
            </summary>
1060
        </member>
1061
        <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal">
1062
            <summary>
1063
            Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>.
1064
            </summary>
1065
        </member>
1066
        <member name="T:Newtonsoft.Json.Formatting">
1067
            <summary>
1068
            Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>.
1069
            </summary>
1070
        </member>
1071
        <member name="F:Newtonsoft.Json.Formatting.None">
1072
            <summary>
1073
            No special formatting is applied. This is the default.
1074
            </summary>
1075
        </member>
1076
        <member name="F:Newtonsoft.Json.Formatting.Indented">
1077
            <summary>
1078
            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.
1079
            </summary>
1080
        </member>
1081
        <member name="T:Newtonsoft.Json.IArrayPool`1">
1082
            <summary>
1083
            Provides an interface for using pooled arrays.
1084
            </summary>
1085
            <typeparam name="T">The array type content.</typeparam>
1086
        </member>
1087
        <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)">
1088
            <summary>
1089
            Rent an array from the pool. This array must be returned when it is no longer needed.
1090
            </summary>
1091
            <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param>
1092
            <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns>
1093
        </member>
1094
        <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])">
1095
            <summary>
1096
            Return an array to the pool.
1097
            </summary>
1098
            <param name="array">The array that is being returned.</param>
1099
        </member>
1100
        <member name="T:Newtonsoft.Json.IJsonLineInfo">
1101
            <summary>
1102
            Provides an interface to enable a class to return line and position information.
1103
            </summary>
1104
        </member>
1105
        <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo">
1106
            <summary>
1107
            Gets a value indicating whether the class can return line information.
1108
            </summary>
1109
            <returns>
1110
            	<c>true</c> if <see cref="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"/> and <see cref="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"/> can be provided; otherwise, <c>false</c>.
1111
            </returns>
1112
        </member>
1113
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber">
1114
            <summary>
1115
            Gets the current line number.
1116
            </summary>
1117
            <value>The current line number or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1118
        </member>
1119
        <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition">
1120
            <summary>
1121
            Gets the current line position.
1122
            </summary>
1123
            <value>The current line position or 0 if no line information is available (for example, when <see cref="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"/> returns <c>false</c>).</value>
1124
        </member>
1125
        <member name="T:Newtonsoft.Json.JsonArrayAttribute">
1126
            <summary>
1127
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection.
1128
            </summary>
1129
        </member>
1130
        <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems">
1131
            <summary>
1132
            Gets or sets a value indicating whether null items are allowed in the collection.
1133
            </summary>
1134
            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>
1135
        </member>
1136
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor">
1137
            <summary>
1138
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class.
1139
            </summary>
1140
        </member>
1141
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)">
1142
            <summary>
1143
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items.
1144
            </summary>
1145
            <param name="allowNullItems">A flag indicating whether the array can contain null items.</param>
1146
        </member>
1147
        <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)">
1148
            <summary>
1149
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id.
1150
            </summary>
1151
            <param name="id">The container Id.</param>
1152
        </member>
1153
        <member name="T:Newtonsoft.Json.JsonConstructorAttribute">
1154
            <summary>
1155
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object.
1156
            </summary>
1157
        </member>
1158
        <member name="T:Newtonsoft.Json.JsonContainerAttribute">
1159
            <summary>
1160
            Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object.
1161
            </summary>
1162
        </member>
1163
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id">
1164
            <summary>
1165
            Gets or sets the id.
1166
            </summary>
1167
            <value>The id.</value>
1168
        </member>
1169
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title">
1170
            <summary>
1171
            Gets or sets the title.
1172
            </summary>
1173
            <value>The title.</value>
1174
        </member>
1175
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description">
1176
            <summary>
1177
            Gets or sets the description.
1178
            </summary>
1179
            <value>The description.</value>
1180
        </member>
1181
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType">
1182
            <summary>
1183
            Gets or sets the collection's items converter.
1184
            </summary>
1185
            <value>The collection's items converter.</value>
1186
        </member>
1187
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters">
1188
            <summary>
1189
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"/>.
1190
            If <c>null</c>, the default constructor is used.
1191
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number,
1192
            order, and type of these parameters.
1193
            </summary>
1194
            <example>
1195
            <code>
1196
            [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
1197
            </code>
1198
            </example>
1199
        </member>
1200
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType">
1201
            <summary>
1202
            Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.
1203
            </summary>
1204
            <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value>
1205
        </member>
1206
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters">
1207
            <summary>
1208
            The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by <see cref="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"/>.
1209
            If <c>null</c>, the default constructor is used.
1210
            When non-<c>null</c>, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number,
1211
            order, and type of these parameters.
1212
            </summary>
1213
            <example>
1214
            <code>
1215
            [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
1216
            </code>
1217
            </example>
1218
        </member>
1219
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference">
1220
            <summary>
1221
            Gets or sets a value that indicates whether to preserve object references.
1222
            </summary>
1223
            <value>
1224
            	<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.
1225
            </value>
1226
        </member>
1227
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference">
1228
            <summary>
1229
            Gets or sets a value that indicates whether to preserve collection's items references.
1230
            </summary>
1231
            <value>
1232
            	<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.
1233
            </value>
1234
        </member>
1235
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling">
1236
            <summary>
1237
            Gets or sets the reference loop handling used when serializing the collection's items.
1238
            </summary>
1239
            <value>The reference loop handling.</value>
1240
        </member>
1241
        <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling">
1242
            <summary>
1243
            Gets or sets the type name handling used when serializing the collection's items.
1244
            </summary>
1245
            <value>The type name handling.</value>
1246
        </member>
1247
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor">
1248
            <summary>
1249
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class.
1250
            </summary>
1251
        </member>
1252
        <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)">
1253
            <summary>
1254
            Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id.
1255
            </summary>
1256
            <param name="id">The container Id.</param>
1257
        </member>
1258
        <member name="T:Newtonsoft.Json.JsonConvert">
1259
            <summary>
1260
            Provides methods for converting between .NET types and JSON types.
1261
            </summary>
1262
            <example>
1263
              <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" />
1264
            </example>
1265
        </member>
1266
        <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings">
1267
            <summary>
1268
            Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>.
1269
            Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>,
1270
            and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>.
1271
            To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with
1272
            <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>.
1273
            </summary>
1274
        </member>
1275
        <member name="F:Newtonsoft.Json.JsonConvert.True">
1276
            <summary>
1277
            Represents JavaScript's boolean value <c>true</c> as a string. This field is read-only.
1278
            </summary>
1279
        </member>
1280
        <member name="F:Newtonsoft.Json.JsonConvert.False">
1281
            <summary>
1282
            Represents JavaScript's boolean value <c>false</c> as a string. This field is read-only.
1283
            </summary>
1284
        </member>
1285
        <member name="F:Newtonsoft.Json.JsonConvert.Null">
1286
            <summary>
1287
            Represents JavaScript's <c>null</c> as a string. This field is read-only.
1288
            </summary>
1289
        </member>
1290
        <member name="F:Newtonsoft.Json.JsonConvert.Undefined">
1291
            <summary>
1292
            Represents JavaScript's <c>undefined</c> as a string. This field is read-only.
1293
            </summary>
1294
        </member>
1295
        <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity">
1296
            <summary>
1297
            Represents JavaScript's positive infinity as a string. This field is read-only.
1298
            </summary>
1299
        </member>
1300
        <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity">
1301
            <summary>
1302
            Represents JavaScript's negative infinity as a string. This field is read-only.
1303
            </summary>
1304
        </member>
1305
        <member name="F:Newtonsoft.Json.JsonConvert.NaN">
1306
            <summary>
1307
            Represents JavaScript's <c>NaN</c> as a string. This field is read-only.
1308
            </summary>
1309
        </member>
1310
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)">
1311
            <summary>
1312
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation.
1313
            </summary>
1314
            <param name="value">The value to convert.</param>
1315
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1316
        </member>
1317
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)">
1318
            <summary>
1319
            Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1320
            </summary>
1321
            <param name="value">The value to convert.</param>
1322
            <param name="format">The format the date will be converted to.</param>
1323
            <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param>
1324
            <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns>
1325
        </member>
1326
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)">
1327
            <summary>
1328
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation.
1329
            </summary>
1330
            <param name="value">The value to convert.</param>
1331
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1332
        </member>
1333
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)">
1334
            <summary>
1335
            Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified.
1336
            </summary>
1337
            <param name="value">The value to convert.</param>
1338
            <param name="format">The format the date will be converted to.</param>
1339
            <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns>
1340
        </member>
1341
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)">
1342
            <summary>
1343
            Converts the <see cref="T:System.Boolean"/> to its JSON string representation.
1344
            </summary>
1345
            <param name="value">The value to convert.</param>
1346
            <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns>
1347
        </member>
1348
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)">
1349
            <summary>
1350
            Converts the <see cref="T:System.Char"/> to its JSON string representation.
1351
            </summary>
1352
            <param name="value">The value to convert.</param>
1353
            <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns>
1354
        </member>
1355
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)">
1356
            <summary>
1357
            Converts the <see cref="T:System.Enum"/> to its JSON string representation.
1358
            </summary>
1359
            <param name="value">The value to convert.</param>
1360
            <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns>
1361
        </member>
1362
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)">
1363
            <summary>
1364
            Converts the <see cref="T:System.Int32"/> to its JSON string representation.
1365
            </summary>
1366
            <param name="value">The value to convert.</param>
1367
            <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns>
1368
        </member>
1369
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)">
1370
            <summary>
1371
            Converts the <see cref="T:System.Int16"/> to its JSON string representation.
1372
            </summary>
1373
            <param name="value">The value to convert.</param>
1374
            <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns>
1375
        </member>
1376
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)">
1377
            <summary>
1378
            Converts the <see cref="T:System.UInt16"/> to its JSON string representation.
1379
            </summary>
1380
            <param name="value">The value to convert.</param>
1381
            <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns>
1382
        </member>
1383
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)">
1384
            <summary>
1385
            Converts the <see cref="T:System.UInt32"/> to its JSON string representation.
1386
            </summary>
1387
            <param name="value">The value to convert.</param>
1388
            <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns>
1389
        </member>
1390
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)">
1391
            <summary>
1392
            Converts the <see cref="T:System.Int64"/>  to its JSON string representation.
1393
            </summary>
1394
            <param name="value">The value to convert.</param>
1395
            <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns>
1396
        </member>
1397
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)">
1398
            <summary>
1399
            Converts the <see cref="T:System.UInt64"/> to its JSON string representation.
1400
            </summary>
1401
            <param name="value">The value to convert.</param>
1402
            <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns>
1403
        </member>
1404
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)">
1405
            <summary>
1406
            Converts the <see cref="T:System.Single"/> to its JSON string representation.
1407
            </summary>
1408
            <param name="value">The value to convert.</param>
1409
            <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns>
1410
        </member>
1411
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)">
1412
            <summary>
1413
            Converts the <see cref="T:System.Double"/> to its JSON string representation.
1414
            </summary>
1415
            <param name="value">The value to convert.</param>
1416
            <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns>
1417
        </member>
1418
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)">
1419
            <summary>
1420
            Converts the <see cref="T:System.Byte"/> to its JSON string representation.
1421
            </summary>
1422
            <param name="value">The value to convert.</param>
1423
            <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns>
1424
        </member>
1425
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)">
1426
            <summary>
1427
            Converts the <see cref="T:System.SByte"/> to its JSON string representation.
1428
            </summary>
1429
            <param name="value">The value to convert.</param>
1430
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1431
        </member>
1432
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)">
1433
            <summary>
1434
            Converts the <see cref="T:System.Decimal"/> to its JSON string representation.
1435
            </summary>
1436
            <param name="value">The value to convert.</param>
1437
            <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns>
1438
        </member>
1439
        <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)">
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff