IDispatcherMessageLoopInvokeAndForget(Action) Method |
Invokes the specified callback on the message loop.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax void InvokeAndForget(
Action callback
)
Parameters
- callback Action
[Missing <param name="callback"/> documentation for "M:Altaxo.Main.Services.IDispatcherMessageLoop.InvokeAndForget(System.Action)"]
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