Table of Contents

Class AggregateFacetResult<TOutput>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

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 string

The 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.