MessageQueueTransactionStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the state of an internal Message Queuing transaction.
public enum class MessageQueueTransactionStatus
public enum MessageQueueTransactionStatus
type MessageQueueTransactionStatus =
Public Enum MessageQueueTransactionStatus
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Aborted | 0 | The transaction has been aborted and all participants have been notified. |
Committed | 1 | The transaction has been committed and all participants have been notified. |
Initialized | 2 | The transaction has been initialized. It has not yet been started. |
Pending | 3 | The transaction has been started. It has not yet been either committed or rolled back. |
Remarks
When an instance of the MessageQueueTransaction class has been created, its Status property is set by the constructor to Initialized
. After a transaction has begun, but before it is committed or rolled back, the Status is Pending
.