UNPKG

react-native-windows-cursor

Version:
859 lines 493 kB
<?xml version="1.0"?> <doc> <assembly> <name>Newtonsoft.Json</name> </assembly> <members> <member name="T:Newtonsoft.Json.ConstructorHandling"> <summary> Specifies how constructors are used when initializing objects during deserialization by the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. </summary> </member> <member name="F:Newtonsoft.Json.ConstructorHandling.Default"> <summary> First attempt to use the public default constructor, then fall back to single parameterized constructor, then the non-public default constructor. </summary> </member> <member name="F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor"> <summary> Json.NET will use a non-public default constructor before falling back to a parameterized constructor. </summary> </member> <member name="T:Newtonsoft.Json.DateFormatHandling"> <summary> Specifies how dates are formatted when writing JSON text. </summary> </member> <member name="F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat"> <summary> Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". </summary> </member> <member name="F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat"> <summary> Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". </summary> </member> <member name="T:Newtonsoft.Json.DateParseHandling"> <summary> Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. </summary> </member> <member name="F:Newtonsoft.Json.DateParseHandling.None"> <summary> Date formatted strings are not parsed to a date type and are read as strings. </summary> </member> <member name="F:Newtonsoft.Json.DateParseHandling.DateTime"> <summary> Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTime"/>. </summary> </member> <member name="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"> <summary> Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to <see cref="F:Newtonsoft.Json.DateParseHandling.DateTimeOffset"/>. </summary> </member> <member name="T:Newtonsoft.Json.DateTimeZoneHandling"> <summary> Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime"/>. </summary> </member> <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Local"> <summary> Treat as local time. If the <see cref="T:System.DateTime"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time. </summary> </member> <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Utc"> <summary> Treat as a UTC. If the <see cref="T:System.DateTime"/> object represents a local time, it is converted to a UTC. </summary> </member> <member name="F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified"> <summary> Treat as a local time if a <see cref="T:System.DateTime"/> is being converted to a string. If a string is being converted to <see cref="T:System.DateTime"/>, convert to a local time if a time zone is specified. </summary> </member> <member name="F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind"> <summary> Time zone information should be preserved when converting. </summary> </member> <member name="T:Newtonsoft.Json.DefaultValueHandling"> <summary> Specifies default value handling options for the <see cref="T:Newtonsoft.Json.JsonSerializer"/>. </summary> <example> <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingObject" title="DefaultValueHandling Class" /> <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="ReducingSerializedJsonSizeDefaultValueHandlingExample" title="DefaultValueHandling Ignore Example" /> </example> </member> <member name="F:Newtonsoft.Json.DefaultValueHandling.Include"> <summary> Include members where the member value is the same as the member's default value when serializing objects. Included members are written to JSON. Has no effect when deserializing. </summary> </member> <member name="F:Newtonsoft.Json.DefaultValueHandling.Ignore"> <summary> Ignore members where the member value is the same as the member's default value when serializing objects so that is is not written to JSON. This option will ignore all default values (e.g. <c>null</c> for objects and nullable types; <c>0</c> for integers, decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by placing the <see cref="T:System.ComponentModel.DefaultValueAttribute"/> on the property. </summary> </member> <member name="F:Newtonsoft.Json.DefaultValueHandling.Populate"> <summary> Members with a default value but no JSON will be set to their default value when deserializing. </summary> </member> <member name="F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate"> <summary> Ignore members where the member value is the same as the member's default value when serializing objects and sets members to their default value when deserializing. </summary> </member> <member name="T:Newtonsoft.Json.FloatFormatHandling"> <summary> Specifies float format handling options when writing special floating point numbers, e.g. <see cref="F:System.Double.NaN"/>, <see cref="F:System.Double.PositiveInfinity"/> and <see cref="F:System.Double.NegativeInfinity"/> with <see cref="T:Newtonsoft.Json.JsonWriter"/>. </summary> </member> <member name="F:Newtonsoft.Json.FloatFormatHandling.String"> <summary> Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". </summary> </member> <member name="F:Newtonsoft.Json.FloatFormatHandling.Symbol"> <summary> Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. Note that this will produce non-valid JSON. </summary> </member> <member name="F:Newtonsoft.Json.FloatFormatHandling.DefaultValue"> <summary> Write special floating point values as the property's default value in JSON, e.g. 0.0 for a <see cref="T:System.Double"/> property, null for a <see cref="T:System.Nullable`1"/> property. </summary> </member> <member name="T:Newtonsoft.Json.FloatParseHandling"> <summary> Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. </summary> </member> <member name="F:Newtonsoft.Json.FloatParseHandling.Double"> <summary> Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Double"/>. </summary> </member> <member name="F:Newtonsoft.Json.FloatParseHandling.Decimal"> <summary> Floating point numbers are parsed to <see cref="F:Newtonsoft.Json.FloatParseHandling.Decimal"/>. </summary> </member> <member name="T:Newtonsoft.Json.Formatting"> <summary> Specifies formatting options for the <see cref="T:Newtonsoft.Json.JsonTextWriter"/>. </summary> </member> <member name="F:Newtonsoft.Json.Formatting.None"> <summary> No special formatting is applied. This is the default. </summary> </member> <member name="F:Newtonsoft.Json.Formatting.Indented"> <summary> 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. </summary> </member> <member name="T:Newtonsoft.Json.IArrayPool`1"> <summary> Provides an interface for using pooled arrays. </summary> <typeparam name="T">The array type content.</typeparam> </member> <member name="M:Newtonsoft.Json.IArrayPool`1.Rent(System.Int32)"> <summary> Rent a array from the pool. This array must be returned when it is no longer needed. </summary> <param name="minimumLength">The minimum required length of the array. The returned array may be longer.</param> <returns>The rented array from the pool. This array must be returned when it is no longer needed.</returns> </member> <member name="M:Newtonsoft.Json.IArrayPool`1.Return(`0[])"> <summary> Return an array to the pool. </summary> <param name="array">The array that is being returned.</param> </member> <member name="T:Newtonsoft.Json.IJsonLineInfo"> <summary> Provides an interface to enable a class to return line and position information. </summary> </member> <member name="M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo"> <summary> Gets a value indicating whether the class can return line information. </summary> <returns> <c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>. </returns> </member> <member name="P:Newtonsoft.Json.IJsonLineInfo.LineNumber"> <summary> Gets the current line number. </summary> <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value> </member> <member name="P:Newtonsoft.Json.IJsonLineInfo.LinePosition"> <summary> Gets the current line position. </summary> <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value> </member> <member name="T:Newtonsoft.Json.JsonArrayAttribute"> <summary> Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the collection. </summary> </member> <member name="P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems"> <summary> Gets or sets a value indicating whether null items are allowed in the collection. </summary> <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value> </member> <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class. </summary> </member> <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonObjectAttribute"/> class with a flag indicating whether the array can contain null items </summary> <param name="allowNullItems">A flag indicating whether the array can contain null items.</param> </member> <member name="M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonArrayAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Newtonsoft.Json.JsonConstructorAttribute"> <summary> Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> to use the specified constructor when deserializing that object. </summary> </member> <member name="T:Newtonsoft.Json.JsonContainerAttribute"> <summary> Instructs the <see cref="T:Newtonsoft.Json.JsonSerializer"/> how to serialize the object. </summary> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.Id"> <summary> Gets or sets the id. </summary> <value>The id.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.Title"> <summary> Gets or sets the title. </summary> <value>The title.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.Description"> <summary> Gets or sets the description. </summary> <value>The description.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType"> <summary> Gets or sets the collection's items converter. </summary> <value>The collection's items converter.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterParameters"> <summary> The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.JsonConverter"/> described by ItemConverterType. If null, the default constructor is used. When non-null, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.JsonConverter"/> that exactly matches the number, order, and type of these parameters. </summary> <example> [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] </example> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyType"> <summary> Gets or sets the <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>. </summary> <value>The <see cref="T:System.Type"/> of the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/>.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.NamingStrategyParameters"> <summary> The parameter list to use when constructing the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> described by NamingStrategyType. If null, the default constructor is used. When non-null, there must be a constructor defined in the <see cref="T:Newtonsoft.Json.Serialization.NamingStrategy"/> that exactly matches the number, order, and type of these parameters. </summary> <example> [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] </example> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.IsReference"> <summary> Gets or sets a value that indicates whether to preserve object references. </summary> <value> <c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>. </value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference"> <summary> Gets or sets a value that indicates whether to preserve collection's items references. </summary> <value> <c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>. </value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling"> <summary> Gets or sets the reference loop handling used when serializing the collection's items. </summary> <value>The reference loop handling.</value> </member> <member name="P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling"> <summary> Gets or sets the type name handling used when serializing the collection's items. </summary> <value>The type name handling.</value> </member> <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class. </summary> </member> <member name="M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.JsonContainerAttribute"/> class with the specified container Id. </summary> <param name="id">The container Id.</param> </member> <member name="T:Newtonsoft.Json.JsonConvert"> <summary> Provides methods for converting between common language runtime types and JSON types. </summary> <example> <code lang="cs" source="..\Src\Newtonsoft.Json.Tests\Documentation\SerializationTests.cs" region="SerializeObject" title="Serializing and Deserializing JSON with JsonConvert" /> </example> </member> <member name="P:Newtonsoft.Json.JsonConvert.DefaultSettings"> <summary> Gets or sets a function that creates default <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. Default settings are automatically used by serialization methods on <see cref="T:Newtonsoft.Json.JsonConvert"/>, and <see cref="M:Newtonsoft.Json.Linq.JToken.ToObject``1"/> and <see cref="M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)"/> on <see cref="T:Newtonsoft.Json.Linq.JToken"/>. To serialize without using any default settings create a <see cref="T:Newtonsoft.Json.JsonSerializer"/> with <see cref="M:Newtonsoft.Json.JsonSerializer.Create"/>. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.True"> <summary> Represents JavaScript's boolean value true as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.False"> <summary> Represents JavaScript's boolean value false as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.Null"> <summary> Represents JavaScript's null as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.Undefined"> <summary> Represents JavaScript's undefined as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.PositiveInfinity"> <summary> Represents JavaScript's positive infinity as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.NegativeInfinity"> <summary> Represents JavaScript's negative infinity as a string. This field is read-only. </summary> </member> <member name="F:Newtonsoft.Json.JsonConvert.NaN"> <summary> Represents JavaScript's NaN as a string. This field is read-only. </summary> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)"> <summary> Converts the <see cref="T:System.DateTime"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)"> <summary> Converts the <see cref="T:System.DateTime"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified. </summary> <param name="value">The value to convert.</param> <param name="format">The format the date will be converted to.</param> <param name="timeZoneHandling">The time zone handling when the date is converted to a string.</param> <returns>A JSON string representation of the <see cref="T:System.DateTime"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)"> <summary> Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)"> <summary> Converts the <see cref="T:System.DateTimeOffset"/> to its JSON string representation using the <see cref="T:Newtonsoft.Json.DateFormatHandling"/> specified. </summary> <param name="value">The value to convert.</param> <param name="format">The format the date will be converted to.</param> <returns>A JSON string representation of the <see cref="T:System.DateTimeOffset"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)"> <summary> Converts the <see cref="T:System.Boolean"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Boolean"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Char)"> <summary> Converts the <see cref="T:System.Char"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Char"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)"> <summary> Converts the <see cref="T:System.Enum"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Enum"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)"> <summary> Converts the <see cref="T:System.Int32"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int32"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)"> <summary> Converts the <see cref="T:System.Int16"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int16"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)"> <summary> Converts the <see cref="T:System.UInt16"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt16"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)"> <summary> Converts the <see cref="T:System.UInt32"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt32"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)"> <summary> Converts the <see cref="T:System.Int64"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Int64"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)"> <summary> Converts the <see cref="T:System.UInt64"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.UInt64"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Single)"> <summary> Converts the <see cref="T:System.Single"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Single"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Double)"> <summary> Converts the <see cref="T:System.Double"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Double"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)"> <summary> Converts the <see cref="T:System.Byte"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Byte"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)"> <summary> Converts the <see cref="T:System.SByte"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)"> <summary> Converts the <see cref="T:System.Decimal"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.SByte"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)"> <summary> Converts the <see cref="T:System.Guid"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Guid"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)"> <summary> Converts the <see cref="T:System.TimeSpan"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.TimeSpan"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)"> <summary> Converts the <see cref="T:System.Uri"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Uri"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <param name="delimiter">The string delimiter character.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)"> <summary> Converts the <see cref="T:System.String"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <param name="delimiter">The string delimiter character.</param> <param name="stringEscapeHandling">The string escape handling.</param> <returns>A JSON string representation of the <see cref="T:System.String"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.ToString(System.Object)"> <summary> Converts the <see cref="T:System.Object"/> to its JSON string representation. </summary> <param name="value">The value to convert.</param> <returns>A JSON string representation of the <see cref="T:System.Object"/>.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)"> <summary> Serializes the specified object to a JSON string. </summary> <param name="value">The object to serialize.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)"> <summary> Serializes the specified object to a JSON string using formatting. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])"> <summary> Serializes the specified object to a JSON string using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. </summary> <param name="value">The object to serialize.</param> <param name="converters">A collection converters used while serializing.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])"> <summary> Serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <param name="converters">A collection converters used while serializing.</param> <returns>A JSON string representation of the object.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. If this is null, default serialization settings will be used.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. If this is null, default serialization settings will be used.</param> <param name="type"> The type of the value being serialized. This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. </param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. If this is null, default serialization settings will be used.</param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,System.Type,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Serializes the specified object to a JSON string using a type, formatting and <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. If this is null, default serialization settings will be used.</param> <param name="type"> The type of the value being serialized. This parameter is used when <see cref="T:Newtonsoft.Json.TypeNameHandling"/> is Auto to write out the type name if the type of the value does not match. Specifing the type is optional. </param> <returns> A JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)"> <summary> Asynchronously serializes the specified object to a JSON string. Serialization will happen on a new thread. </summary> <param name="value">The object to serialize.</param> <returns> A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)"> <summary> Asynchronously serializes the specified object to a JSON string using formatting. Serialization will happen on a new thread. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <returns> A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Asynchronously serializes the specified object to a JSON string using formatting and a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. Serialization will happen on a new thread. </summary> <param name="value">The object to serialize.</param> <param name="formatting">Indicates how the output is formatted.</param> <param name="settings">The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to serialize the object. If this is null, default serialization settings will be used.</param> <returns> A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)"> <summary> Deserializes the JSON to a .NET object. </summary> <param name="value">The JSON to deserialize.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to a .NET object using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)"> <summary> Deserializes the JSON to the specified .NET type. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The <see cref="T:System.Type"/> of object being deserialized.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)"> <summary> Deserializes the JSON to the specified .NET type. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)"> <summary> Deserializes the JSON to the given anonymous type. </summary> <typeparam name="T"> The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. </typeparam> <param name="value">The JSON to deserialize.</param> <param name="anonymousTypeObject">The anonymous type object.</param> <returns>The deserialized anonymous type from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the given anonymous type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <typeparam name="T"> The anonymous type to deserialize to. This can't be specified traditionally and must be infered from the anonymous type passed as a parameter. </typeparam> <param name="value">The JSON to deserialize.</param> <param name="anonymousTypeObject">The anonymous type object.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns>The deserialized anonymous type from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])"> <summary> Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <param name="converters">Converters to use while deserializing.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The object to deserialize.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])"> <summary> Deserializes the JSON to the specified .NET type using a collection of <see cref="T:Newtonsoft.Json.JsonConverter"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The type of the object to deserialize.</param> <param name="converters">Converters to use while deserializing.</param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The type of the object to deserialize to.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns>The deserialized object from the JSON string.</returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)"> <summary> Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <returns> A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. Deserialization will happen on a new thread. </summary> <typeparam name="T">The type of the object to deserialize to.</typeparam> <param name="value">The JSON to deserialize.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns> A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)"> <summary> Asynchronously deserializes the JSON to the specified .NET type. Deserialization will happen on a new thread. </summary> <param name="value">The JSON to deserialize.</param> <returns> A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)"> <summary> Asynchronously deserializes the JSON to the specified .NET type using <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/>. Deserialization will happen on a new thread. </summary> <param name="value">The JSON to deserialize.</param> <param name="type">The type of the object to deserialize to.</param> <param name="settings"> The <see cref="T:Newtonsoft.Json.JsonSerializerSettings"/> used to deserialize the object. If this is null, default serialization settings will be used. </param> <returns> A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string. </returns> </member> <member name="M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)"> <summary> Pop