1 instantiation of PSECURITY_DESCRIPTOR
Microsoft.AspNetCore.Shared.Tests (1)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (1)
33
public static explicit operator PSECURITY_DESCRIPTOR(void* value) => new
PSECURITY_DESCRIPTOR
(value);
10 references to PSECURITY_DESCRIPTOR
Microsoft.AspNetCore.Shared.Tests (10)
Windows.Win32.HTTP_LOGGING_INFO.g.cs (1)
95
internal 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);