Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than mqrt, prefix the name with the module name and a period.
MQSetQueueSecurity (mqrt)
.
C# Signature:
[DllImport("mqrt.dll", SetLastError=false, CharSet=CharSet.Auto)]
public static extern uint MQSetQueueSecurity(
[MarshalAs(UnmanagedType.LPWStr)]
string lpwcsFormatName
, int SecurityInformation
, IntPtr pSecurityDescriptor
);
VB Signature:
Declare Function MQSetQueueSecurity Lib "mqrt.dll" (TODO) As TODO
User-Defined Types:
SECURITY_INFORMATION
Notes:
MQGetQueueSecurity and MQSetQueueSecurity don't have a managed equivalent in the System.Messaging namespace. If you need to read or change the ACL on a queue to, for example, change the queue owner, you need to use P/Invoke to mqrt.dll.
Tips & Tricks:
Please add some!
Sample Code:
I can share more of the code if people are interested, but there are lots of API calls leading up to the call to MQSetQueueSecurity, so I'll just show the interesting parts here:
class mqrt {
public const int OWNER_SECURITY_INFORMATION = 0x1;
public const int MQ_OK = 0x0;
public const uint MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL = 0xC00E0023;
//MQGetQueueSecurity
//The MQGetQueueSecurity function retrieves the access control
//security descriptor for the queue that you specify
[DllImport("mqrt.dll", SetLastError=true)]
public static extern uint MQGetQueueSecurity (
[MarshalAs(UnmanagedType.LPWStr)]
string lpwcsFormatName
, int SecurityInformation
, IntPtr pSecurityDescriptor
, int nLength
, out int lpnLengthNeeded
);
//MQSetQueueSecurity
//The MQSetQueueSecurity function sets the access control
//security descriptor for the queue that you specify.
[DllImport("mqrt.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern uint MQSetQueueSecurity(
[MarshalAs(UnmanagedType.LPWStr)]
string lpwcsFormatName
, int SecurityInformation
, IntPtr pSecurityDescriptor
);
}
public bool setQueueOwnerName(string formatName, string newOwner) {
uint result; //Return value of Win32 API call
advapi32.SECURITY_DESCRIPTOR sd = new advapi32.SECURITY_DESCRIPTOR();
result = mqrt.MQSetQueueSecurity(
formatName
, mqrt.OWNER_SECURITY_INFORMATION
, pSD
);
//Free the Pinned Objects
hSD.Free();
return true;
}
Alternative Managed API:
None.
The MQSetQueueSecurity function sets the access control security descriptor for the queue that you specify.
3/16/2007 8:03:12 AM - 66.194.55.242
The MQGetQueueSecurity function retrieves the access control security descriptor for the queue that you specify.
5/21/2021 3:24:29 AM - -109.77.173.17
The MQSetQueueSecurity function sets the access control security descriptor for the queue that you specify.
3/16/2007 8:03:12 AM - 66.194.55.242
The MQSetQueueSecurity function sets the access control security descriptor for the queue that you specify.
3/16/2007 8:03:12 AM - 66.194.55.242
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).