1 write to Value
Microsoft.AspNetCore.Server.HttpSys (1)
Windows.Win32.HANDLE.g.cs (1)
29 internal HANDLE(IntPtr value) => this.Value = value;
8 references to Value
Microsoft.AspNetCore.Server.HttpSys (8)
Windows.Win32.HANDLE.g.cs (8)
33 internal bool IsNull => Value == default; 35 public static implicit operator IntPtr(HANDLE value) => value.Value; 39 public static bool operator ==(HANDLE left, HANDLE right) => left.Value == right.Value; 43 public bool Equals(HANDLE other) => this.Value == other.Value; 47 public override int GetHashCode() => this.Value.GetHashCode(); 49 public override string ToString() => $"0x{this.Value:x}";