SystemEvents.InvokeOnEventsThread(Delegate) Method

Definition

Invokes the specified delegate using the thread that listens for system events.

public:
 static void InvokeOnEventsThread(Delegate ^ method);
public static void InvokeOnEventsThread (Delegate method);
static member InvokeOnEventsThread : Delegate -> unit
Public Shared Sub InvokeOnEventsThread (method As Delegate)

Parameters

method
Delegate

A delegate to invoke using the thread that listens for system events.

Exceptions

System event notifications are not supported under the current context. Server processes, for example, might not support global system event notifications.

The attempt to create a system events window thread did not succeed.

Remarks

You can use this method any time that you need to handle a system event that is not exposed otherwise by the SystemEvents class.

When you call this method, the specified delegate will be invoked by the thread that your application is using to process system events.

Applies to