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