Search Results for

    Show / Hide Table of Contents

    Class DateRange

    The date time range class used in filters

    Inheritance
    object
    DateRange
    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 DateRange

    Properties

    From

    The from value: it can be a datetime string or a pattern now(+-)(int)(YMDHm).

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

    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: it can be a datetime string or a pattern now(+-)(int)(YMDHm).

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

    Methods

    FromJson(string)

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

    Returns
    DateRange

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX