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.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
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