1 write to Value
System.Windows.Forms.Primitives (1)
Windows.Win32.HWINEVENTHOOK.g.cs (1)
31
internal HWINEVENTHOOK(void* value) => this.
Value
= value;
9 references to Value
System.Windows.Forms.Primitives (9)
Windows.Win32.HWINEVENTHOOK.g.cs (9)
39
internal bool IsNull =>
Value
== default;
41
public static implicit operator void*(HWINEVENTHOOK value) => value.
Value
;
45
public static bool operator ==(HWINEVENTHOOK left, HWINEVENTHOOK right) => left.
Value
== right.
Value
;
49
public bool Equals(HWINEVENTHOOK other) => this.
Value
== other.
Value
;
53
public override int GetHashCode() => unchecked((int)this.
Value
);
55
public override string ToString() => $"0x{(nuint)this.
Value
:x}";
57
public static implicit operator IntPtr(HWINEVENTHOOK value) => new IntPtr(value.
Value
);