MessagePriority Enumeration
Specifies the priority Message Queuing applies to a message while it is en route to a queue, and when inserting the message into the destination queue.
Syntax
'Declaration Public Enum MessagePriority Inherits System.Enum
'Usage Dim instance As MessagePriority
public enum MessagePriority : System.Enum
public enum class MessagePriority : public System.Enum
Members
Member | Description |
---|---|
AboveNormal | Between High and Normal message priority. |
High | High message priority. |
Highest | Highest message priority. |
Low | Low message priority. |
Lowest | Lowest message priority. |
Normal | Normal message priority. |
VeryHigh | Between Highest and High message priority. |
VeryLow | Between Low and Lowest message priority. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
System.Messaging.MessagePriority
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