Table of Contents

Method Watch

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Watch(IMongoClient, ChangeStreamOptions, CancellationToken)

Watches changes on all collections in all databases.

public static IAsyncCursor<ChangeStreamDocument<BsonDocument>> Watch(this IMongoClient client, ChangeStreamOptions options = null, CancellationToken cancellationToken = default)

Parameters

client IMongoClient

The client.

options ChangeStreamOptions

The options.

cancellationToken CancellationToken

The cancellation token.

Returns

IAsyncCursor<ChangeStreamDocument<BsonDocument>>

A change stream.

Watch(IMongoClient, IClientSessionHandle, ChangeStreamOptions, CancellationToken)

Watches changes on all collections in all databases.

public static IAsyncCursor<ChangeStreamDocument<BsonDocument>> Watch(this IMongoClient client, IClientSessionHandle session, ChangeStreamOptions options = null, CancellationToken cancellationToken = default)

Parameters

client IMongoClient

The client.

session IClientSessionHandle

The session.

options ChangeStreamOptions

The options.

cancellationToken CancellationToken

The cancellation token.

Returns

IAsyncCursor<ChangeStreamDocument<BsonDocument>>

A change stream.