Enum Transaction.TransactionState
Lifecycle state of a Transaction. Transitions are one-way (see State).
public enum Transaction.TransactionState
Fields
Committed = 4Committed by the caller.
Created = 1Created, but no operation has been performed yet.
InProgress = 2At least one operation has been added to the transaction.
Invalid = 0Default/unset value; not a live transaction.
Rollbacked = 3Rolled back explicitly by the caller or automatically during dispose.