Click or drag to resize

IMongoCollection<TDocument>.WatchAsync<TResult> Method (PipelineDefinition<ChangeStreamDocument<TDocument>, TResult>, ChangeStreamOptions, CancellationToken)

Watches changes on the collection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax
Task<IChangeStreamCursor<TResult>> WatchAsync<TResult>(
	PipelineDefinition<ChangeStreamDocument<TDocument>, TResult> pipeline,
	ChangeStreamOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

pipeline
Type: MongoDB.Driver.PipelineDefinition<ChangeStreamDocument<TDocument>, TResult>
The pipeline.
options (Optional)
Type: MongoDB.Driver.ChangeStreamOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Type Parameters

TResult
The type of the result.

Return Value

Type: Task<IChangeStreamCursor<TResult>>
A change stream.
See Also