Click or drag to resize

IDispatcherMessageLoopInvokeAndForget(Action) Method

Invokes the specified callback on the message loop.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
void InvokeAndForget(
	Action callback
)

Parameters

callback  Action
The callback to execute.
Remarks
This method does not wait for the callback complete execution. If this method is used on the main thread; the message loop must be pumped before the callback gets to run. If the callback causes an exception, it is left unhandled.
See Also