Click or drag to resize

MongoClientBaseWatchAsyncTResult Method (IClientSessionHandle, PipelineDefinitionChangeStreamDocumentBsonDocument, TResult, ChangeStreamOptions, CancellationToken)

Watches changes on all collections in all databases.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public virtual Task<IChangeStreamCursor<TResult>> WatchAsync<TResult>(
	IClientSessionHandle session,
	PipelineDefinition<ChangeStreamDocument<BsonDocument>, TResult> pipeline,
	ChangeStreamOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

session
Type: MongoDB.DriverIClientSessionHandle
The session.
pipeline
Type: MongoDB.DriverPipelineDefinitionChangeStreamDocumentBsonDocument, TResult
The pipeline.
options (Optional)
Type: MongoDB.DriverChangeStreamOptions
The options.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Type Parameters

TResult
The type of the result.

Return Value

Type: TaskIChangeStreamCursorTResult
A change stream.

Implements

IMongoClientWatchAsyncTResult(IClientSessionHandle, PipelineDefinitionChangeStreamDocumentBsonDocument, TResult, ChangeStreamOptions, CancellationToken)
See Also