Table of Contents

Class PipelineStageDefinition<TInput, TOutput>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Base class for pipeline stages.

public abstract class PipelineStageDefinition<TInput, TOutput> : IPipelineStageDefinition

Type Parameters

TInput

The type of the input.

TOutput

The type of the output.

Inheritance
PipelineStageDefinition<TInput, TOutput>
Implements
Derived
Inherited Members

Properties

InputType

Gets the type of the input.

public Type InputType { get; }

Property Value

Type

OperatorName

Gets the name of the pipeline operator.

public abstract string OperatorName { get; }

Property Value

string

OutputType

Gets the type of the output.

public Type OutputType { get; }

Property Value

Type

Methods

Render(IBsonSerializer<TInput>, IBsonSerializerRegistry)

Renders the specified document serializer.

public virtual RenderedPipelineStageDefinition<TOutput> Render(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry)

Parameters

inputSerializer IBsonSerializer<TInput>

The input serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

Returns

RenderedPipelineStageDefinition<TOutput>

A RenderedPipelineStageDefinition<TOutput>

Render(IBsonSerializer<TInput>, IBsonSerializerRegistry, LinqProvider)

Renders the specified document serializer.

public abstract RenderedPipelineStageDefinition<TOutput> Render(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)

Parameters

inputSerializer IBsonSerializer<TInput>

The input serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

linqProvider LinqProvider

The LINQ provider.

Returns

RenderedPipelineStageDefinition<TOutput>

A RenderedPipelineStageDefinition<TOutput>

ToString()

public override string ToString()

Returns

string

ToString(IBsonSerializer<TInput>, IBsonSerializerRegistry)

Returns a string that represents this instance.

public string ToString(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry)

Parameters

inputSerializer IBsonSerializer<TInput>

The input serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

Returns

string

A string that represents this instance.

ToString(IBsonSerializer<TInput>, IBsonSerializerRegistry, LinqProvider)

Returns a string that represents this instance.

public string ToString(IBsonSerializer<TInput> inputSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)

Parameters

inputSerializer IBsonSerializer<TInput>

The input serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

linqProvider LinqProvider

The LINQ provider.

Returns

string

A string that represents this instance.

Operators

implicit operator PipelineStageDefinition<TInput, TOutput>(BsonDocument)

Performs an implicit conversion from BsonDocument to PipelineStageDefinition<TInput, TOutput>.

public static implicit operator PipelineStageDefinition<TInput, TOutput>(BsonDocument document)

Parameters

document BsonDocument

The document.

Returns

PipelineStageDefinition<TInput, TOutput>

The result of the conversion.

implicit operator PipelineStageDefinition<TInput, TOutput>(string)

Performs an implicit conversion from string to PipelineStageDefinition<TInput, TOutput>.

public static implicit operator PipelineStageDefinition<TInput, TOutput>(string json)

Parameters

json string

The JSON string.

Returns

PipelineStageDefinition<TInput, TOutput>

The result of the conversion.