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.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax public enum CoreTransactionState
Public Enumeration CoreTransactionState
type CoreTransactionState
Members
| Member name | Value | Description |
---|
| Starting | 1 |
StartTransaction has been called but no operations have been performed yet.
|
| InProgress | 2 |
The transaction is in progress.
|
| Committed | 3 |
CommitTransaction has been called.
|
| Aborted | 4 |
AbortTransaction has been called.
|
See Also