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.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
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