Click or drag to resize

TransactionOptions Constructor

Initializes a new instance of the TransactionOptions class.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public TransactionOptions(
	Optional<ReadConcern> readConcern = null,
	Optional<ReadPreference> readPreference = null,
	Optional<WriteConcern> writeConcern = null,
	Optional<Nullable<TimeSpan>> maxCommitTime = null
)

Parameters

readConcern (Optional)
Type: MongoDB.DriverOptionalReadConcern
The read concern.
readPreference (Optional)
Type: MongoDB.DriverOptionalReadPreference
The read preference.
writeConcern (Optional)
Type: MongoDB.DriverOptionalWriteConcern
The write concern.
maxCommitTime (Optional)
Type: MongoDB.DriverOptionalNullableTimeSpan
The max commit time.
See Also