Universal Windows Service Class Library

MonitorEventHandler Delegate

Delegate for the monitor event handler.

public delegate void MonitorEventHandler(
   object sender,
   MonitorEventArgs e
);

Parameters

sender
Containing the object which fired the monitor event.
e
Monitor specified arguments used by callback function.

Remarks

Each function which should be called if a monitor event was fired must have the same struct as this delegate.

The event arguments containing some further information. See the MonitorEventArgs class.

Requirements

Namespace: uws.Monitors

Assembly: uwsCore (in uwsCore.dll)

See Also

uws.Monitors Namespace | Event | MonitorEventArgs