1 write to Value
System.Private.Windows.Core (1)
Windows.Win32.OLE_HANDLE.g.cs (1)
29 internal OLE_HANDLE(uint value) => this.Value = value;
14 references to Value
System.Private.Windows.Core (13)
Windows.Win32.OLE_HANDLE.g.cs (8)
31 public static implicit operator uint(OLE_HANDLE value) => value.Value; 35 public static bool operator ==(OLE_HANDLE left, OLE_HANDLE right) => left.Value == right.Value; 39 public bool Equals(OLE_HANDLE 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 IntPtr(OLE_HANDLE value) => new IntPtr(value.Value);
Windows\Win32\System\Ole\OLE_HANDLE.cs (5)
10public static explicit operator HICON(OLE_HANDLE handle) => new((int)handle.Value); 11public static explicit operator HBITMAP(OLE_HANDLE handle) => new((int)handle.Value); 12public static explicit operator HPALETTE(OLE_HANDLE handle) => new((int)handle.Value); 13public static explicit operator HMETAFILE(OLE_HANDLE handle) => new((int)handle.Value); 14public static explicit operator HENHMETAFILE(OLE_HANDLE handle) => new((int)handle.Value);
System.Windows.Forms (1)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PictureConverter.cs (1)
60nint extendedHandle = (int)handle.Value;