IDispatcherMessageLoopInvokeAndForgetT1, T2(ActionT1, T2, T1, T2) Method |
Executes an action asynchronously on the message loop thread without waiting.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxvoid InvokeAndForget<T1, T2>(
Action<T1, T2> action,
T1 arg1,
T2 arg2
)
Parameters
- action ActionT1, T2
- The action to execute.
- arg1 T1
- The first argument of the action.
- arg2 T2
- The second argument of the action.
Type Parameters
- T1
- The type of the first action argument.
- T2
- The type of the second action argument.
See Also