Class AggregateFacetResult<TOutput>
Represents the result of a single facet.
public sealed class AggregateFacetResult<TOutput> : AggregateFacetResult
Type Parameters
TOutput
The 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
name
stringThe name.
output
IEnumerable<TOutput>The output.
Properties
Output
Gets or sets the output.
public IReadOnlyList<TOutput> Output { get; set; }
Property Value
- IReadOnlyList<TOutput>
The output.