Class WindowMessageMonitorEventArgsPayload
- Namespace
- Whim
- Assembly
- Whim.dll
Represents a message passed to a window procedure.
public class WindowMessageMonitorEventArgsPayload
- Inheritance
-
WindowMessageMonitorEventArgsPayload
- Inherited Members
Remarks
See https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-msg
Properties
HWnd
A handle to the window.
public required HWND HWnd { get; init; }
Property Value
LParam
Additional message information.
public required nint LParam { get; init; }
Property Value
UMsg
The message.
public required uint UMsg { get; init; }
Property Value
WParam
Additional message information.
public required nuint WParam { get; init; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
- A string that represents the current object.