Acknowledgment Enumeration
Specifies the result of an attempted message delivery.
Syntax
'Declaration Public Enum Acknowledgment Inherits System.Enum
'Usage Dim instance As Acknowledgment
public enum Acknowledgment : System.Enum
public enum class Acknowledgment : public System.Enum
Members
Member | Description |
---|---|
AccessDenied | A negative arrival acknowledgment indicating that the sending application does not have the necessary rights to send a message to the destination queue. |
BadDestinationQueue | A negative arrival acknowledgment indicating that the destination queue is not available to the sending application. |
BadEncryption | A negative arrival acknowledgment indicating that the destination queue manager could not decrypt a private message. |
BadSignature | A negative arrival acknowledgment indicating that the original message's digital signature is not valid and could not be authenticated by Message Queuing. |
CouldNotEncrypt | A negative arrival acknowledgment indicating that the source queue manager could not encrypt a private message. |
HopCountExceeded | A negative arrival acknowledgment indicating that the original message's hop count (which indicates the number of intermediate servers) was exceeded. |
None | The message is not an acknowledgment message. |
NotTransactionalMessage | A negative arrival acknowledgment indicating that a non-transactional message was sent to a transactional queue. |
NotTransactionalQueue | A negative arrival acknowledgment indicating that a transactional message was sent to a non-transactional queue. |
Purged | A negative arrival acknowledgment indicating that the message was purged before reaching its destination queue. |
QueueDeleted | A negative read acknowledgment indicating that the queue was deleted before the message could be read. |
QueueExceedMaximumSize | A negative arrival acknowledgment indicating that the original message was not delivered because its destination queue is full. |
QueuePurged | A negative read acknowledgment indicating that the queue was purged before the message could be read. |
ReachQueue | A positive arrival acknowledgment indicating that the original message reached its destination queue. |
ReachQueueTimeout | A negative arrival acknowledgment indicating that the time-to-reach-queue or time-to-be-received timer expired before the original message could reach the destination queue. |
Receive | A positive read acknowledgment indicating that the original message was received by the receiving application. |
ReceiveTimeout | A negative read acknowledgment indicating that the original message was not received from the queue before its time-to-be-received timer expired. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
System.Messaging.Acknowledgment
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also