C# Class Catel.Windows.Threading.DispatcherHelper

Dispatcher helper class.
Show file Open project: Catel/Catel

Public Methods

Method Description
BeginInvoke ( this dispatcher, System.Action action ) : void

Begins the invocation of an action using the dispatcher.

CheckAccess ( this dispatcher ) : bool

Checks the access of the dispatcher.

DoEvents ( ) : void

Processes all UI messages currently in the message queue.

Private Methods

Method Description
ExitFrame ( object state ) : object
GetCurrentDispatcher ( ) : global::Windows.UI.Core.CoreDispatcher

Gets the current dispatcher.

Method Details

BeginInvoke() public static method

Begins the invocation of an action using the dispatcher.
The is null. The is null.
public static BeginInvoke ( this dispatcher, System.Action action ) : void
dispatcher this The dispatcher.
action System.Action The action.
return void

CheckAccess() public static method

Checks the access of the dispatcher.
The is null.
public static CheckAccess ( this dispatcher ) : bool
dispatcher this The dispatcher.
return bool

DoEvents() public static method

Processes all UI messages currently in the message queue.
public static DoEvents ( ) : void
return void