Class JsonPipelineStageDefinition<TInput, TOutput>
A JSON string based pipeline stage.
public sealed class JsonPipelineStageDefinition<TInput, TOutput> : PipelineStageDefinition<TInput, TOutput>, IPipelineStageDefinition
Type Parameters
TInput
The type of the input.
TOutput
The type of the output.
- Inheritance
-
PipelineStageDefinition<TInput, TOutput>JsonPipelineStageDefinition<TInput, TOutput>
- Implements
- Inherited Members
Constructors
JsonPipelineStageDefinition(string, IBsonSerializer<TOutput>)
Initializes a new instance of the JsonPipelineStageDefinition<TInput, TOutput> class.
public JsonPipelineStageDefinition(string json, IBsonSerializer<TOutput> outputSerializer = null)
Parameters
json
stringThe json.
outputSerializer
IBsonSerializer<TOutput>The output serializer.
Properties
Json
Gets the json.
public string Json { get; }
Property Value
OperatorName
Gets the name of the pipeline operator.
public override string OperatorName { get; }
Property Value
OutputSerializer
Gets the output serializer.
public IBsonSerializer<TOutput> OutputSerializer { get; }
Property Value
- IBsonSerializer<TOutput>
Methods
Render(IBsonSerializer<TInput>, IBsonSerializerRegistry, LinqProvider)
Renders the specified document serializer.
public override RenderedPipelineStageDefinition<TOutput> Render(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)
Parameters
inputSerializer
IBsonSerializer<TInput>The input serializer.
serializerRegistry
IBsonSerializerRegistryThe serializer registry.
linqProvider
LinqProviderThe LINQ provider.