Click or drag to resize
CombinedPipelineDefinition<TInput, TIntermediateOutput, TOutput> Constructor

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.2.0
Syntax
public CombinedPipelineDefinition(
	PipelineDefinition<TInput, TIntermediateOutput> first,
	PipelineDefinition<TIntermediateOutput, TOutput> second
)

Parameters

first
Type: MongoDB.Driver.PipelineDefinition<TInput, TIntermediateOutput>
The first pipeline.
second
Type: MongoDB.Driver.PipelineDefinition<TIntermediateOutput, TOutput>
The second pipeline.
See Also