1 write to Value
System.Private.Windows.Core (1)
Windows.Win32.NTSTATUS.g.cs (1)
29
internal NTSTATUS(int value) => this.
Value
= value;
9 references to Value
System.Private.Windows.Core (9)
Windows.Win32.NTSTATUS.g.cs (9)
31
public static implicit operator int(NTSTATUS value) => value.
Value
;
35
public static bool operator ==(NTSTATUS left, NTSTATUS right) => left.
Value
== right.
Value
;
39
public bool Equals(NTSTATUS other) => this.
Value
== other.
Value
;
43
public override int GetHashCode() => this.
Value
.GetHashCode();
45
public override string ToString() => $"0x{this.
Value
:x}";
47
public static implicit operator uint(NTSTATUS value) => (uint)value.
Value
;
52
internal Severity SeverityCode => (Severity)(((uint)this.
Value
& 0xc0000000) >> 30);