Click or drag to resize

CoreSessionOptions Constructor

Initializes a new instance of the CoreSessionOptions class.

Namespace:  MongoDB.Driver.Core.Bindings
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public CoreSessionOptions(
	bool isCausallyConsistent = false,
	bool isImplicit = false,
	TransactionOptions defaultTransactionOptions = null,
	bool isSnapshot = false
)

Parameters

isCausallyConsistent (Optional)
Type: SystemBoolean
if set to true this session is causally consistent]
isImplicit (Optional)
Type: SystemBoolean
if set to true this session is an implicit session.
defaultTransactionOptions (Optional)
Type: MongoDB.DriverTransactionOptions
The default transaction options.
isSnapshot (Optional)
Type: SystemBoolean
if set to true this session is a snapshot session.
See Also