.
Summary
Retrieves information about an access control list (ACL)
C# Signature:
[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, IntPtr pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_REVISION_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
[DllImport("advapi32.dll", SetLastError = true)]
static extern bool GetAclInformation(IntPtr pAcl, ref ACL_SIZE_INFORMATION pAclInformation, uint nAclInformationLength, ACL_INFORMATION_CLASS dwAclInformationClass);
VB Signature:
Declare Function GetAclInformation Lib "advapi32.dll" (TODO) As TODO
User-Defined Types:
ACL_INFORMATION_CLASS
ACL_REVISION_INFORMATION
ACL_SIZE_INFORMATION
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
Please add some!
Documentation
Tells the [GetAclInformation] function what kind of information to return.
3/16/2007 1:40:21 PM - cody@cutrer.us-66.133.111.172
Used by [GetAclInformation]
3/25/2011 2:14:02 PM - -83.149.36.169
Used by [GetAclInformation]
3/16/2007 2:14:51 PM - cody@cutrer.us-66.133.111.172
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).