MessageQueueTransactionType 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 type of a Message Queuing transaction.
public enum class MessageQueueTransactionType
public enum MessageQueueTransactionType
type MessageQueueTransactionType =
Public Enum MessageQueueTransactionType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | Operation will not be transactional. |
Automatic | 1 | A transaction type used for Microsoft Transaction Server (MTS) or COM+ 1.0 Services. If there is already an MTS transaction context, it will be used when sending or receiving the message. |
Single | 3 | A transaction type used for single internal transactions. |
Remarks
When you read or write a message using an overload of the MessageQueue class's Send or Receive methods (including ReceiveById and ReceiveByCorrelationId) that takes a transactionType
parameter, you can specify how you are interacting with the queue. Automatic
enables you to send and receive from external transactions (such as when you are interacting with database applications), while Single
is used for single internal Message Queuing transactions.
None
enables you to receive a message from a transactional queue outside of a transaction or send a transactional message to a non-transactional queue. This is useful, for example, when routing several messages sent within a single transaction.
If you want to send or receive a message using an internal Message Queuing transaction but not a single internal transaction, create an instance of the MessageQueueTransaction class and pass it into an overload of the Send or Receive methods that takes a transaction
parameter rather than one that takes a transactionType
parameter.