コード例 #1
0
ファイル: NamedPipeWrapper.cs プロジェクト: Arsslensoft/IPDTP
 /// <summary>
 /// Creates a SECURITY_DESCRIPTOR with DACL = null, which allows full access to Everyone.
 /// </summary>
 /// <param name="sd">The SECURITY_DESCRIPTOR structure.</param>
 #endregion
 public static void GetNullDaclSecurityDescriptor(out SECURITY_DESCRIPTOR sd)
 {
     if (NamedPipeNative.InitializeSecurityDescriptor(out sd, 1))
     {
         if (!NamedPipeNative.SetSecurityDescriptorDacl(ref sd, true, IntPtr.Zero, false))
         {
             throw new NamedPipeIOException("Error setting SECURITY_DESCRIPTOR attributes. Internal error: " + NamedPipeNative.GetLastError().ToString(), NamedPipeNative.GetLastError());
         }
     }
     else
     {
         throw new NamedPipeIOException("Error setting SECURITY_DESCRIPTOR attributes. Internal error: " + NamedPipeNative.GetLastError().ToString(), NamedPipeNative.GetLastError());
     }
 }
コード例 #2
0
ファイル: NamedPipeNative.cs プロジェクト: Arsslensoft/IPDTP
 public static extern bool InitializeSecurityDescriptor(out SECURITY_DESCRIPTOR sd, int dwRevision);
コード例 #3
0
ファイル: NamedPipeNative.cs プロジェクト: Arsslensoft/IPDTP
 public static extern bool SetSecurityDescriptorDacl(ref SECURITY_DESCRIPTOR sd, bool bDaclPresent, IntPtr Dacl, bool bDaclDefaulted);