1 write to Value
Microsoft.AspNetCore.Shared.Tests (1)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (1)
29
internal PSECURITY_DESCRIPTOR(void* value) => this.
Value
= value;
9 references to Value
Microsoft.AspNetCore.Shared.Tests (9)
Windows.Win32.PSECURITY_DESCRIPTOR.g.cs (9)
37
internal bool IsNull =>
Value
== default;
39
public static implicit operator void*(PSECURITY_DESCRIPTOR value) => value.
Value
;
43
public static bool operator ==(PSECURITY_DESCRIPTOR left, PSECURITY_DESCRIPTOR right) => left.
Value
== right.
Value
;
47
public bool Equals(PSECURITY_DESCRIPTOR other) => this.
Value
== other.
Value
;
51
public override int GetHashCode() => unchecked((int)this.
Value
);
53
public override string ToString() => $"0x{(nuint)this.
Value
:x}";
55
public static implicit operator IntPtr(PSECURITY_DESCRIPTOR value) => new IntPtr(value.
Value
);