Click or drag to resize

CoreTransactionState Enumeration

Represents the current state of a Core transaction.

Namespace:  MongoDB.Driver.Core.Bindings
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax
public enum CoreTransactionState
Members
  Member nameValueDescription
Starting1 StartTransaction has been called but no operations have been performed yet.
InProgress2 The transaction is in progress.
Committed3 CommitTransaction has been called.
Aborted4 AbortTransaction has been called.
See Also