Search Results for

    Show / Hide Table of Contents

    Class TreeAggregationResultItemDetail

    Detail for a tree aggregation result item.

    Inheritance
    object
    AggregationResultItemDetailBase
    TreeAggregationResultItemDetail
    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 TreeAggregationResultItemDetail : AggregationResultItemDetailBase

    Properties

    HasChildren

    Indicates if the node contains children.

    Declaration
    [JsonProperty("hasChildren", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool HasChildren { get; set; }
    Property Value
    bool

    Path

    Path of the item. Use together with TreeFilter.

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

    ResolvedPathComponents

    Resolved path components of the path.

    Declaration
    [JsonProperty("resolvedPathComponents", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<TreeAggregationResultPathComponent> ResolvedPathComponents { get; set; }
    Property Value
    ICollection<TreeAggregationResultPathComponent>

    Methods

    FromJson(string)

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

    Returns
    TreeAggregationResultItemDetail

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX