SetPermissions(String,MessageQueueAccessRights,AccessControlEntryType) Method
Gives a computer, group, or user the specified access rights, with the specified access control type (allow, deny, revoke, or set).
Syntax
'Declaration Public Overloads Sub SetPermissions( _ ByVal user As String, _ ByVal rights As MessageQueueAccessRights, _ ByVal entryType As AccessControlEntryType _ )
'Usage Dim instance As MessageQueue Dim user As String Dim rights As MessageQueueAccessRights Dim entryType As AccessControlEntryType instance.SetPermissions(user, rights, entryType)
public void SetPermissions( string user, MessageQueueAccessRights rights, AccessControlEntryType entryType )
public: void SetPermissions( String^ user, MessageQueueAccessRights rights, AccessControlEntryType entryType )
Parameters
- user
- The individual, group, or computer that gets additional rights to the queue.
- rights
- A MessageQueueAccessRights that indicates the set of rights to the queue that Message Queuing assigns to the user passed in.
- entryType
- A AccessControlEntryType that specifies whether to grant, deny, or revoke the permissions specified by the rights parameter.
Exceptions
Exception | Description |
---|---|
MessageQueueException | An error occurred when accessing a Message Queuing method. |
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