Click or drag to resize

IDispatcherMessageLoopInvokeAndForgetT(ActionT, T) Method

Executes an action asynchronously on the message loop thread without waiting.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
void InvokeAndForget<T>(
	Action<T> action,
	T arg
)

Parameters

action  ActionT
The action to execute.
arg  T
The argument of the action.

Type Parameters

T
The type of the action argument.
See Also