| Overload | Description |
|---|---|
| BeginInvoke(Delegate,Object[]) | Executes the specified delegate asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke(Delegate,Int32,Object[]) | Executes the specified delegate asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke(DNFunction,Int32) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke<TArg>(DNFunction<TArg>,TArg) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke<TArg>(DNFunction<TArg>,Int32,TArg) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke<TArg1,TArg2>(DNFunction<TArg1,TArg2>,TArg1,TArg2) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
| BeginInvoke<TArg1,TArg2>(DNFunction<TArg1,TArg2>,Int32,TArg1,TArg2) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |