1 write to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Windows.Win32.HWND.g.cs (1)
28
internal HWND(IntPtr value) => this.
Value
= value;
9 references to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (9)
Windows.Win32.HWND.g.cs (9)
32
internal bool IsNull =>
Value
== default;
34
public static implicit operator IntPtr(HWND value) => value.
Value
;
38
public static bool operator ==(HWND left, HWND right) => left.
Value
== right.
Value
;
42
public bool Equals(HWND other) => this.
Value
== other.
Value
;
46
public override int GetHashCode() => this.
Value
.GetHashCode();
48
public override string ToString() => $"0x{this.
Value
:x}";
50
public static implicit operator HANDLE(HWND value) => new HANDLE(value.
Value
);