1 write to Value
System.Private.Windows.Core (1)
Windows.Win32.HANDLE.g.cs (1)
29 internal HANDLE(void* value) => this.Value = value;
11 references to Value
System.Private.Windows.Core (9)
Windows.Win32.HANDLE.g.cs (9)
37 internal bool IsNull => Value == default; 39 public static implicit operator void*(HANDLE value) => value.Value; 43 public static bool operator ==(HANDLE left, HANDLE right) => left.Value == right.Value; 47 public bool Equals(HANDLE 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(HANDLE value) => new IntPtr(value.Value);
System.Private.Windows.GdiPlus (1)
System\Drawing\IIconExtensions.cs (1)
26IMAGE_FLAGS.LR_DEFAULTCOLOR).Value
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursor.cs (1)
426IMAGE_FLAGS.LR_DEFAULTCOLOR).Value;