1 write to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Windows.Win32.NTSTATUS.g.cs (1)
28 internal NTSTATUS(int value) => this.Value = value;
9 references to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (9)
Windows.Win32.NTSTATUS.g.cs (9)
30 public static implicit operator int(NTSTATUS value) => value.Value; 34 public static bool operator ==(NTSTATUS left, NTSTATUS right) => left.Value == right.Value; 38 public bool Equals(NTSTATUS other) => this.Value == other.Value; 42 public override int GetHashCode() => this.Value.GetHashCode(); 44 public override string ToString() => $"0x{this.Value:x}"; 46 public static implicit operator uint(NTSTATUS value) => (uint)value.Value; 51 internal Severity SeverityCode => (Severity)(((uint)this.Value & 0xc0000000) >> 30);