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.
MQGetQueueSecurity (mqrt)
.
C# Signature:
[DllImport("mqrt.dll", CharSet = CharSet.Unicode)]
[DllImport("mqrt.dll", SetLastError=false)]
public static extern uint MQGetQueueSecurity (
[MarshalAs(UnmanagedType.LPWStr)]
string lpwcsFormatName
, int SecurityInformation
, IntPtr pSecurityDescriptor
, int nLength
, ref int lpnLengthNeeded
, out int lpnLengthNeeded
);
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:
Call MQGetQueueSecurity two times. The first time, set the nLength parameter to 0. The function then informs you of the size that you need for the security descriptor in lpnLengthNeeded.
Sample Code:
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", CharSet = CharSet.Unicode)]
[DllImport("mqrt.dll", SetLastError=false)]
public static extern uint MQGetQueueSecurity (
[MarshalAs(UnmanagedType.LPWStr)]
string lpwcsFormatName
, int SecurityInformation
, IntPtr pSecurityDescriptor
, int nLength
, ref int lpnLengthNeeded
, out int lpnLengthNeeded
);
}
private bool getQueueOwnerNameFromMSMQ(string formatName, ref string owner) {
byte[] securityDescriptor;
int length;
int lengthNeeded;
uint result;
//Call MQGetQueueSecurity two times. The first time, set the nLength
//parameter to 0. The function then informs you of the size that you need for the
//security descriptor in lpnLengthNeeded.
result = mqrt.MQGetQueueSecurity(
formatName
, mqrt.OWNER_SECURITY_INFORMATION
, IntPtr.Zero
, 0
, ref lengthNeeded);
, out lengthNeeded);
if (mqrt.MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL == result) {
//This is expected. Continue.
} else {
//Something else went wrong. Display error, and then exit.
string message = "There was an error calling MQGetQueueSecurity."
+ Environment.NewLine
+ "Error Number: " + result.ToString();
string caption = "MQGetQueueSecurity Error";
this.showError(message, caption);
return false;
}
//Now we know how big to make the security descriptor.
length = lengthNeeded;
securityDescriptor = new byte[length];
//Get a pointer to the SD
IntPtr lpSD = new IntPtr();
GCHandle hSD = GCHandle.Alloc(securityDescriptor, GCHandleType.Pinned);
lpSD = hSD.AddrOfPinnedObject();
//Call MQGetQueueSecurity
result = mqrt.MQGetQueueSecurity(
formatName
, mqrt.OWNER_SECURITY_INFORMATION
, lpSD
, length
, ref lengthNeeded);
, out lengthNeeded);
if (mqrt.MQ_OK != result) {
//Something else went wrong. Display error, and then exit.
string message = "There was an error calling MQGetQueueSecurity to read the SecurityDescriptor."
+ Environment.NewLine
+ "Error Number: " + result.ToString();
string caption = "MQGetQueueSecurity Error";
this.showError(message, caption);
return false;
}
hSD.Free();
//Function call to break out the owner name from the SD
//Left out as an exercise
//owner = getSecurityDescriptorOwnerName(securityDescriptor);
return true;
}
Alternative Managed API:
None.
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 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 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
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).