MessageQueue::SetPermissions Method (String^, MessageQueueAccessRights)
Gives a computer, group, or user the specified access rights.
Assembly: System.Messaging (in System.Messaging.dll)
Parameters
- user
-
Type:
System::String^
The individual, group, or computer that gets additional rights to the queue.
- rights
-
Type:
System.Messaging::MessageQueueAccessRights
A MessageQueueAccessRights that indicates the set of rights to the queue that Message Queuing assigns to the user passed in.
| Exception | Condition |
|---|---|
| ArgumentException | The user is null. |
| MessageQueueException | An error occurred when accessing a Message Queuing method. |
Use this overload to grant specified rights to an individual user. The user can be any valid trustee, which includes individual users, groups of users, or a computer. If the user is an individual, use the format DOMAIN\user for the user parameter. You can specify "." for the user parameter to indicate the local computer.
The permissions you assign through SetPermissions add rights to the existing list. By default, the creator of a public or private queue has full control, and the domain group Everyone has permission to get queue properties, get permissions, and write to the queue. When you call SetPermissions, the user and permissions information is appended to the bottom of the existing list.
The system examines each AccessControlEntry in sequence until one of the following events occurs:
An access-denied AccessControlEntry explicitly denies any of the requested access rights to one of the trustees listed in the thread's access token.
One or more access-allowed AccessControlEntry items for trustees listed in the thread's access token explicitly grant all the requested access rights.
All AccessControlEntry items have been checked and there is still at least one requested access right that has not been explicitly allowed, in which case, access is implicitly denied.
The rights to a queue, specified in the rights parameter, can be any combination of the following:
Full Control
Delete Message
Receive Message
Peek Message
Receive Journal Message
Get Queue Properties
Set Queue Properties
Get Permissions
Set Permissions
Take Queue Ownership
Write Message
The MessageQueueAccessRights enumeration represents a set of bit flags that you can combine using the bitwise operator OR to build the rights parameter.
With this overload, you can only grant permissions; you cannot revoke or deny them. You must use a different overload to explicitly grant any AccessControlEntryType other than Allow.
The following table shows whether this method is available in various Workgroup modes.
Workgroup mode | Available |
|---|---|
Local computer | Yes |
Local computer and direct format name | Yes |
Remote computer | No |
Remote computer and direct format name | No |
The following code example demonstrates the use of SetPermissions(String^, MessageQueueAccessRights).
// Connect to a queue on the local computer. MessageQueue^ queue = gcnew MessageQueue(".\\exampleQueue"); // Grant all users in the "Everyone" user group the right to receive // messages from the queue. queue->SetPermissions("Everyone", MessageQueueAccessRights::ReceiveMessage); queue->Close();
Available since 1.1