7 references to SECURITY_INFORMATION
System.Workflow.Runtime (7)
DebugEngine\DebugController.cs (5)
141
NativeMethods.GetKernelObjectSecurity(hProcessToken, NativeMethods.
SECURITY_INFORMATION
.DACL_SECURITY_INFORMATION, IntPtr.Zero, 0, out returnLength);
146
if (!NativeMethods.GetKernelObjectSecurity(hProcessToken, NativeMethods.
SECURITY_INFORMATION
.DACL_SECURITY_INFORMATION, securityDescriptorPtr, returnLength, out returnLength))
185
NativeMethods.GetKernelObjectSecurity(hProcessToken, NativeMethods.
SECURITY_INFORMATION
.DACL_SECURITY_INFORMATION, IntPtr.Zero, 0, out returnLength);
190
if (!NativeMethods.GetKernelObjectSecurity(hProcessToken, NativeMethods.
SECURITY_INFORMATION
.DACL_SECURITY_INFORMATION, securityDescriptorPtr, returnLength, out returnLength))
205
if (!NativeMethods.SetKernelObjectSecurity(hProcessToken, NativeMethods.
SECURITY_INFORMATION
.DACL_SECURITY_INFORMATION, securityDescriptorPtr))
DebugEngine\NativeMethods.cs (2)
102
public static extern bool GetKernelObjectSecurity(IntPtr Handle,
SECURITY_INFORMATION
RequestedInformation, IntPtr pSecurityDescriptor, UInt32 nLength, out UInt32 lpnLengthNeeded);
105
public static extern bool SetKernelObjectSecurity(IntPtr Handle,
SECURITY_INFORMATION
SecurityInformation, IntPtr SecurityDescriptor);