MongoClientWithReadConcern Method |
Returns a new IMongoClient instance with a different read concern setting.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax public override IMongoClient WithReadConcern(
ReadConcern readConcern
)
Public Overrides Function WithReadConcern (
readConcern As ReadConcern
) As IMongoClient
abstract WithReadConcern :
readConcern : ReadConcern -> IMongoClient
override WithReadConcern :
readConcern : ReadConcern -> IMongoClient
Parameters
- readConcern
- Type: MongoDB.DriverReadConcern
The read concern.
Return Value
Type:
IMongoClientA new IMongoClient instance with a different read concern setting.
Implements
IMongoClientWithReadConcern(ReadConcern)See Also