Method Watch
Watch<TDocument>(IMongoCollection<TDocument>, ChangeStreamOptions, CancellationToken)
Watches changes on the collection.
public static IChangeStreamCursor<ChangeStreamDocument<TDocument>> Watch<TDocument>(this IMongoCollection<TDocument> collection, ChangeStreamOptions options = null, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
options
ChangeStream Options The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- IChange
Stream <ChangeCursor Stream <TDocument>>Document A change stream.
Type Parameters
TDocument
The type of the document.
Watch<TDocument>(IMongoCollection<TDocument>, IClientSessionHandle, ChangeStreamOptions, CancellationToken)
Watches changes on the collection.
public static IChangeStreamCursor<ChangeStreamDocument<TDocument>> Watch<TDocument>(this IMongoCollection<TDocument> collection, IClientSessionHandle session, ChangeStreamOptions options = null, CancellationToken cancellationToken = default)
Parameters
collection
IMongoCollection <TDocument>The collection.
session
IClientSession Handle The session.
options
ChangeStream Options The options.
cancellationToken
CancellationToken The cancellation token.
Returns
- IChange
Stream <ChangeCursor Stream <TDocument>>Document A change stream.
Type Parameters
TDocument
The type of the document.