Catel.Services.IDispatcherServiceExtensions.BeginInvoke C# (CSharp) Method

BeginInvoke() public static method

Executes the specified action asynchronously with the specified arguments on the thread that the Dispatcher was created on.
The is null.
public static BeginInvoke ( this dispatcherService, System.Action action ) : void
dispatcherService this The dispatcher service.
action System.Action The action.
return void
        public static void BeginInvoke(this IDispatcherService dispatcherService, Action action)
        {
            dispatcherService.BeginInvoke(action, false);
        }

Same methods

IDispatcherServiceExtensions::BeginInvoke ( this dispatcherService, Delegate method ) : void