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.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
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