Catel.Services.IDispatcherServiceExtensions.BeginInvoke C# (CSharp) 메소드

BeginInvoke() 공개 정적인 메소드

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.
리턴 void
        public static void BeginInvoke(this IDispatcherService dispatcherService, Action action)
        {
            dispatcherService.BeginInvoke(action, false);
        }

Same methods

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