Table of Contents

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

HWND

LParam

Additional message information.
public required nint LParam { get; init; }

Property Value

nint

UMsg

The message.
public required uint UMsg { get; init; }

Property Value

uint

WParam

Additional message information.
public required nuint WParam { get; init; }

Property Value

nuint

Methods

ToString()

Returns a string that represents the current object.
public override string ToString()

Returns

string
A string that represents the current object.