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(Function,Int32) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
BeginInvoke<TArg>(Function<TArg>,TArg) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
BeginInvoke<TArg>(Function<TArg>,Int32,TArg) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
BeginInvoke<TArg1,TArg2>(Function<TArg1,TArg2>,TArg1,TArg2) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |
BeginInvoke<TArg1,TArg2>(Function<TArg1,TArg2>,Int32,TArg1,TArg2) | Executes the specified function asynchronously with the specified array of arguments on the UI thread (Application thread). |