Catel.Windows.Threading.DispatcherHelper.CheckAccess C# (CSharp) Méthode

CheckAccess() public static méthode

Checks the access of the dispatcher.
The is null.
public static CheckAccess ( this dispatcher ) : bool
dispatcher this The dispatcher.
Résultat bool
        public static bool CheckAccess(this CoreDispatcher dispatcher)
        {
            Argument.IsNotNull("dispatcher", dispatcher);

            return dispatcher.HasThreadAccess;
        }