SystemEvents.InvokeOnEventsThread(Delegate) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.