Search Results for

    Show / Hide Table of Contents

    Class AggregationResult

    Result of an aggregation

    Inheritance
    System.Object
    AggregationResult
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class AggregationResult

    Properties

    AggregationResultItems

    Items returned for the aggregation. Each item consists of a bucket with the matched value and the number of matches.
    Optionally inner aggregations for further drill down can be available.

    Declaration
    public ICollection<AggregationResultItem> AggregationResultItems { get; set; }
    Property Value
    System.Collections.Generic.ICollection<AggregationResultItem>

    Name

    Name of the aggregation.

    Declaration
    public string Name { get; set; }
    Property Value
    System.String

    SumOtherDocCount

    When there are lots of unique terms, Elastic Search only returns the top terms; this number is the sum of the document counts for all buckets that are not part of the response.

    Declaration
    public long? SumOtherDocCount { get; set; }
    Property Value
    System.Nullable<System.Int64>

    Methods

    FromJson(String)

    Declaration
    public static AggregationResult FromJson(string data)
    Parameters
    System.String data

    Returns
    AggregationResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX