Table of Contents

Class RenderedPipelineDefinition<TOutput>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A rendered pipeline.

public class RenderedPipelineDefinition<TOutput>

Type Parameters

TOutput

The type of the output.

Inheritance
RenderedPipelineDefinition<TOutput>
Inherited Members

Constructors

RenderedPipelineDefinition(IEnumerable<BsonDocument>, IBsonSerializer<TOutput>)

Initializes a new instance of the RenderedPipelineDefinition<TOutput> class.

public RenderedPipelineDefinition(IEnumerable<BsonDocument> documents, IBsonSerializer<TOutput> outputSerializer)

Parameters

documents IEnumerable<BsonDocument>

The pipeline.

outputSerializer IBsonSerializer<TOutput>

The output serializer.

Properties

Documents

Gets the documents.

public IList<BsonDocument> Documents { get; }

Property Value

IList<BsonDocument>

OutputSerializer

Gets the serializer.

public IBsonSerializer<TOutput> OutputSerializer { get; }

Property Value

IBsonSerializer<TOutput>