Class AggregateFacetResult<TOutput>
Represents the result of a single facet.
public sealed class AggregateFacetResult<TOutput> : AggregateFacetResult
Type Parameters
TOutputThe type of the output.
- Inheritance
-
AggregateFacetResult<TOutput>
- Inherited Members
Constructors
AggregateFacetResult(string, IEnumerable<TOutput>)
Initializes a new instance of the AggregateFacetResult<TOutput> class.
public AggregateFacetResult(string name, IEnumerable<TOutput> output)
Parameters
namestringThe name.
outputIEnumerable<TOutput>The output.
Properties
Output
Gets or sets the output.
public IReadOnlyList<TOutput> Output { get; set; }
Property Value
- IReadOnlyList<TOutput>
The output.