Table of Contents

Class BatchTransformingAsyncCursor<TFromDocument, TToDocument>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.Core.dll

Represents a cursor that wraps another cursor with a transformation function on the documents.

public sealed class BatchTransformingAsyncCursor<TFromDocument, TToDocument> : IAsyncCursor<TToDocument>, IDisposable

Type Parameters

TFromDocument

The type of from document.

TToDocument

The type of to document.

Inheritance
BatchTransformingAsyncCursor<TFromDocument, TToDocument>
Implements
IAsyncCursor<TToDocument>
Inherited Members
Extension Methods

Constructors

BatchTransformingAsyncCursor(IAsyncCursor<TFromDocument>, Func<IEnumerable<TFromDocument>, IEnumerable<TToDocument>>)

Initializes a new instance of the BatchTransformingAsyncCursor<TFromDocument, TToDocument> class.

public BatchTransformingAsyncCursor(IAsyncCursor<TFromDocument> wrapped, Func<IEnumerable<TFromDocument>, IEnumerable<TToDocument>> transformer)

Parameters

wrapped IAsyncCursor<TFromDocument>

The wrapped.

transformer Func<IEnumerable<TFromDocument>, IEnumerable<TToDocument>>

The transformer.

See Also
IAsyncCursor<TDocument>

Properties

Current

Gets the current batch of documents.

public IEnumerable<TToDocument> Current { get; }

Property Value

IEnumerable<TToDocument>

The current batch of documents.

See Also
IAsyncCursor<TDocument>

Methods

Dispose()

public void Dispose()
See Also
IAsyncCursor<TDocument>

MoveNext(CancellationToken)

Moves to the next batch of documents.

public bool MoveNext(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation token.

Returns

bool

Whether any more documents are available.

See Also
IAsyncCursor<TDocument>

MoveNextAsync(CancellationToken)

Moves to the next batch of documents.

public Task<bool> MoveNextAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation token.

Returns

Task<bool>

A Task whose result indicates whether any more documents are available.

See Also
IAsyncCursor<TDocument>

See Also

IAsyncCursor<TDocument>