2 instantiations of PSECURITY_DESCRIPTOR
Microsoft.AspNetCore.Server.HttpSys (1)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (1)
33 public static explicit operator PSECURITY_DESCRIPTOR(void* value) => new PSECURITY_DESCRIPTOR(value);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
DelegateTests.cs (1)
314PSECURITY_DESCRIPTOR pSecurityDescriptor = new();
14 references to PSECURITY_DESCRIPTOR
Microsoft.AspNetCore.Server.HttpSys (13)
Windows.Win32.PInvoke.ADVAPI32.dll.g.cs (4)
26 /// <inheritdoc cref="GetSecurityInfo(winmdroot.Foundation.HANDLE, winmdroot.Security.Authorization.SE_OBJECT_TYPE, uint, winmdroot.Foundation.PSID*, winmdroot.Foundation.PSID*, winmdroot.Security.ACL**, winmdroot.Security.ACL**, winmdroot.Security.PSECURITY_DESCRIPTOR*)"/> 28 internal static unsafe winmdroot.Foundation.WIN32_ERROR GetSecurityInfo(SafeHandle handle, winmdroot.Security.Authorization.SE_OBJECT_TYPE ObjectType, uint SecurityInfo, winmdroot.Foundation.PSID* ppsidOwner, winmdroot.Foundation.PSID* ppsidGroup, winmdroot.Security.ACL** ppDacl, winmdroot.Security.ACL** ppSacl, winmdroot.Security.PSECURITY_DESCRIPTOR* ppSecurityDescriptor) 77 internal static extern unsafe winmdroot.Foundation.WIN32_ERROR GetSecurityInfo(winmdroot.Foundation.HANDLE handle, winmdroot.Security.Authorization.SE_OBJECT_TYPE ObjectType, uint SecurityInfo, [Optional] winmdroot.Foundation.PSID* ppsidOwner, [Optional] winmdroot.Foundation.PSID* ppsidGroup, [Optional] winmdroot.Security.ACL** ppDacl, [Optional] winmdroot.Security.ACL** ppSacl, [Optional] winmdroot.Security.PSECURITY_DESCRIPTOR* ppSecurityDescriptor); 94 internal static extern uint GetSecurityDescriptorLength(winmdroot.Security.PSECURITY_DESCRIPTOR pSecurityDescriptor);
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (9)
25 : IEquatable<PSECURITY_DESCRIPTOR> 31 public static implicit operator void*(PSECURITY_DESCRIPTOR value) => value.Value; 33 public static explicit operator PSECURITY_DESCRIPTOR(void* value) => new PSECURITY_DESCRIPTOR(value); 35 public static bool operator ==(PSECURITY_DESCRIPTOR left, PSECURITY_DESCRIPTOR right) => left.Value == right.Value; 37 public static bool operator !=(PSECURITY_DESCRIPTOR left, PSECURITY_DESCRIPTOR right) => !(left == right); 39 public bool Equals(PSECURITY_DESCRIPTOR other) => this.Value == other.Value; 41 public override bool Equals(object obj) => obj is PSECURITY_DESCRIPTOR other && this.Equals(other);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
DelegateTests.cs (1)
314PSECURITY_DESCRIPTOR pSecurityDescriptor = new();