bin/fubudocs_exe/Newtonsoft.Json.xml in fubudocs-0.9.9.266 vs bin/fubudocs_exe/Newtonsoft.Json.xml in fubudocs-0.9.9.297

- old
+ new

@@ -114,10 +114,19 @@ <value> true to close the underlying stream or <see cref="T:System.IO.TextReader"/> when the reader is closed; otherwise false. The default is true. </value> </member> + <member name="P:Newtonsoft.Json.JsonReader.SupportMultipleContent"> + <summary> + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + </summary> + <value> + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + </value> + </member> <member name="P:Newtonsoft.Json.JsonReader.QuoteChar"> <summary> Gets the quotation mark character used to enclose the value of a string. </summary> </member> @@ -1234,10 +1243,42 @@ <param name="objectType">Type of the object.</param> <returns> <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. </returns> </member> + <member name="T:Newtonsoft.Json.Converters.DiscriminatedUnionConverter"> + <summary> + Converts a F# discriminated union type to and from JSON. + </summary> + </member> + <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> + <summary> + Writes the JSON representation of the object. + </summary> + <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> + <param name="value">The value.</param> + <param name="serializer">The calling serializer.</param> + </member> + <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)"> + <summary> + Reads the JSON representation of the object. + </summary> + <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param> + <param name="objectType">Type of the object.</param> + <param name="existingValue">The existing value of object being read.</param> + <param name="serializer">The calling serializer.</param> + <returns>The object value.</returns> + </member> + <member name="M:Newtonsoft.Json.Converters.DiscriminatedUnionConverter.CanConvert(System.Type)"> + <summary> + Determines whether this instance can convert the specified object type. + </summary> + <param name="objectType">Type of the object.</param> + <returns> + <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>. + </returns> + </member> <member name="T:Newtonsoft.Json.Converters.EntityKeyMemberConverter"> <summary> Converts an Entity Framework EntityKey to and from JSON. </summary> </member> @@ -1407,10 +1448,15 @@ <member name="T:Newtonsoft.Json.Converters.StringEnumConverter"> <summary> Converts an <see cref="T:System.Enum"/> to and from its name string value. </summary> </member> + <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.#ctor"> + <summary> + Initializes a new instance of the <see cref="T:Newtonsoft.Json.Converters.StringEnumConverter"/> class. + </summary> + </member> <member name="M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)"> <summary> Writes the JSON representation of the object. </summary> <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param> @@ -1440,10 +1486,16 @@ <summary> Gets or sets a value indicating whether the written enum text should be camel case. </summary> <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value> </member> + <member name="P:Newtonsoft.Json.Converters.StringEnumConverter.AllowIntegerValues"> + <summary> + Gets or sets a value indicating whether integer values are allowed. + </summary> + <value><c>true</c> if integers are allowed; otherwise, <c>false</c>.</value> + </member> <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> @@ -2775,33 +2827,46 @@ by the token type of the first token encountered in the reader. </returns> </member> <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)"> <summary> - Selects the token that matches the object path. + Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path. </summary> <param name="path"> - The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/> - to be returned. This must be a string of property names or array indexes separated - by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or - <code>Tables(0).DefaultView(0).Price</code> in Visual Basic. + A <see cref="T:System.String"/> that contains a JPath expression. </param> - <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> + <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>, or null.</returns> </member> <member name="M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)"> <summary> - Selects the token that matches the object path. + Selects a <see cref="T:Newtonsoft.Json.Linq.JToken"/> using a JPath expression. Selects the token that matches the object path. </summary> <param name="path"> - The object path from the current <see cref="T:Newtonsoft.Json.Linq.JToken"/> to the <see cref="T:Newtonsoft.Json.Linq.JToken"/> - to be returned. This must be a string of property names or array indexes separated - by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or - <code>Tables(0).DefaultView(0).Price</code> in Visual Basic. + A <see cref="T:System.String"/> that contains a JPath expression. </param> - <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no token is found.</param> - <returns>The <see cref="T:Newtonsoft.Json.Linq.JToken"/> that matches the object path.</returns> + <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param> + <returns>A <see cref="T:Newtonsoft.Json.Linq.JToken"/>.</returns> </member> + <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String)"> + <summary> + Selects a collection of elements using a JPath expression. + </summary> + <param name="path"> + A <see cref="T:System.String"/> that contains a JPath expression. + </param> + <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns> + </member> + <member name="M:Newtonsoft.Json.Linq.JToken.SelectTokens(System.String,System.Boolean)"> + <summary> + Selects a collection of elements using a JPath expression. + </summary> + <param name="path"> + A <see cref="T:System.String"/> that contains a JPath expression. + </param> + <param name="errorWhenNoMatch">A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.</param> + <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> that contains the selected elements.</returns> + </member> <member name="M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)"> <summary> Returns the <see cref="T:System.Dynamic.DynamicMetaObject"/> responsible for binding operations performed on this object. </summary> <param name="parameter">The expression tree representation of the runtime value.</param> @@ -2901,10 +2966,16 @@ <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. </summary> <param name="value">The value.</param> </member> + <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Decimal)"> + <summary> + Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. + </summary> + <param name="value">The value.</param> + </member> <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. </summary> <param name="value">The value.</param> @@ -2931,10 +3002,16 @@ <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. </summary> <param name="value">The value.</param> </member> + <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTimeOffset)"> + <summary> + Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. + </summary> + <param name="value">The value.</param> + </member> <member name="M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JValue"/> class with the given value. </summary> <param name="value">The value.</param> @@ -3257,16 +3334,15 @@ <member name="T:Newtonsoft.Json.Linq.JPropertyDescriptor"> <summary> Represents a view of a <see cref="T:Newtonsoft.Json.Linq.JProperty"/>. </summary> </member> - <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)"> + <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Newtonsoft.Json.Linq.JPropertyDescriptor"/> class. </summary> <param name="name">The name.</param> - <param name="propertyType">Type of the property.</param> </member> <member name="M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)"> <summary> When overridden in a derived class, returns whether resetting an object changes its value. </summary> @@ -4795,10 +4871,26 @@ If this is null, default serialization settings will be is 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 is 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> @@ -7174,11 +7266,11 @@ Provides information surrounding an error. </summary> </member> <member name="P:Newtonsoft.Json.Serialization.ErrorContext.Error"> <summary> - Gets or sets the error. + Gets the error. </summary> <value>The error.</value> </member> <member name="P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject"> <summary> @@ -7341,35 +7433,35 @@ </summary> <value>The converter.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter"> <summary> - Gets the member converter. + Gets or sets the member converter. </summary> <value>The member converter.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Ignored"> <summary> - Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored. + Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is ignored. </summary> <value><c>true</c> if ignored; otherwise, <c>false</c>.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Readable"> <summary> - Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable. + Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is readable. </summary> <value><c>true</c> if readable; otherwise, <c>false</c>.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Writable"> <summary> - Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable. + Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is writable. </summary> <value><c>true</c> if writable; otherwise, <c>false</c>.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute"> <summary> - Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute. + Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> has a member attribute. </summary> <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue"> <summary> @@ -7377,48 +7469,48 @@ </summary> <value>The default value.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.Required"> <summary> - Gets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required. + Gets or sets a value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required. </summary> <value>A value indicating whether this <see cref="T:Newtonsoft.Json.Serialization.JsonProperty"/> is required.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.IsReference"> <summary> - Gets a value indicating whether this property preserves object references. + Gets or sets a value indicating whether this property preserves object references. </summary> <value> <c>true</c> if this instance is reference; otherwise, <c>false</c>. </value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling"> <summary> - Gets the property null value handling. + Gets or sets the property null value handling. </summary> <value>The null value handling.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling"> <summary> - Gets the property default value handling. + Gets or sets the property default value handling. </summary> <value>The default value handling.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling"> <summary> - Gets the property reference loop handling. + Gets or sets the property reference loop handling. </summary> <value>The reference loop handling.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling"> <summary> - Gets the property object creation handling. + Gets or sets the property object creation handling. </summary> <value>The object creation handling.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling"> <summary> - Gets or sets the type name handling. + Gets or sets or sets the type name handling. </summary> <value>The type name handling.</value> </member> <member name="P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize"> <summary>