Class AppendedStagePipelineDefinition<TInput, TIntermediate, TOutput>
Represents a pipeline consisting of an existing pipeline with one additional stage appended.
public sealed class AppendedStagePipelineDefinition<TInput, TIntermediate, TOutput> : PipelineDefinition<TInput, TOutput>
Type Parameters
TInput
The type of the input documents.
TIntermediate
The type of the intermediate documents.
TOutput
The type of the output documents.
- Inheritance
-
PipelineDefinition<TInput, TOutput>AppendedStagePipelineDefinition<TInput, TIntermediate, TOutput>
- Inherited Members
- Extension Methods
Constructors
AppendedStagePipelineDefinition(PipelineDefinition<TInput, TIntermediate>, PipelineStageDefinition<TIntermediate, TOutput>, IBsonSerializer<TOutput>)
Initializes a new instance of the AppendedStagePipelineDefinition<TInput, TIntermediate, TOutput> class.
public AppendedStagePipelineDefinition(PipelineDefinition<TInput, TIntermediate> pipeline, PipelineStageDefinition<TIntermediate, TOutput> stage, IBsonSerializer<TOutput> outputSerializer = null)
Parameters
pipeline
PipelineDefinition<TInput, TIntermediate>The pipeline.
stage
PipelineStageDefinition<TIntermediate, TOutput>The stage.
outputSerializer
IBsonSerializer<TOutput>The output serializer.
Properties
OutputSerializer
Gets the output serializer.
public override IBsonSerializer<TOutput> OutputSerializer { get; }
Property Value
- IBsonSerializer<TOutput>
Stages
Gets the stages.
public override IEnumerable<IPipelineStageDefinition> Stages { get; }
Property Value
Methods
Render(IBsonSerializer<TInput>, IBsonSerializerRegistry, LinqProvider)
Renders the pipeline.
public override RenderedPipelineDefinition<TOutput> Render(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)
Parameters
inputSerializer
IBsonSerializer<TInput>The input serializer.
serializerRegistry
IBsonSerializerRegistryThe serializer registry.
linqProvider
LinqProviderThe LINQ provider.