Search Results for

    Show / Hide Table of Contents

    Class NumericRange

    The numeric range class

    Inheritance
    object
    NumericRange
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class NumericRange

    Properties

    From

    The from value.

    Declaration
    [JsonProperty("from", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public double? From { get; set; }
    Property Value
    double?

    Names

    Language specific range names.

    Declaration
    [JsonProperty("names", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public TranslatedStringDictionary Names { get; set; }
    Property Value
    TranslatedStringDictionary

    To

    The to value.

    Declaration
    [JsonProperty("to", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public double? To { get; set; }
    Property Value
    double?

    Methods

    FromJson(string)

    Declaration
    public static NumericRange FromJson(string data)
    Parameters
    string data

    Returns
    NumericRange

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX