System.Messaging Reference (Document! X Sample)
System.Messaging Namespace / MessageQueueAccessRights Enumeration



In This Topic
    MessageQueueAccessRights Enumeration
    In This Topic
    Specifies a set of object-specific access rights for operations specific to Message Queuing.
    Syntax
    'Declaration
     
    
    Public Enum MessageQueueAccessRights 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As MessageQueueAccessRights
    public enum MessageQueueAccessRights : System.Enum 
    public enum class MessageQueueAccessRights : public System.Enum 
    Members
    MemberDescription
    ChangeQueuePermissionsThe right to modify queue permissions.
    DeleteJournalMessageThe right to delete messages from the journal queue.
    DeleteMessageThe right to delete messages from the queue.
    DeleteQueueThe right to delete the queue.
    FullControlFull rights to the queue. A union of all other rights in the enumeration.
    GenericReadA combination of GetQueueProperties, GetQueuePermissions, ReceiveMessage, and ReceiveJournalMessage.
    GenericWriteA combination of GetQueueProperties, GetQueuePermissions, and WriteMessage.
    GetQueuePermissionsThe right to read queue permissions.
    GetQueuePropertiesThe right to read properties of the queue.
    PeekMessageThe right to peek messages from the queue.
    ReceiveJournalMessageThe right to receive messages from the journal queue. This includes the rights to delete and peek messages from the journal queue.
    ReceiveMessageThe right to receive messages from the queue. This includes the rights to delete and peek messages.
    SetQueuePropertiesThe right to modify properties of the queue.
    TakeQueueOwnershipThe right to take ownership of the queue.
    WriteMessageThe right to send messages to the queue.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             System.Messaging.MessageQueueAccessRights

    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