Bevisuali.UX.ExtWPF.BeginInvoke C# (CSharp) Méthode

BeginInvoke() public static méthode

public static BeginInvoke ( this dispatcher, System.Action action ) : void
dispatcher this
action System.Action
Résultat void
        public static void BeginInvoke(this Dispatcher dispatcher, Action action)
        {
            Delegate actionAsDelegate = action as Delegate;
            dispatcher.BeginInvoke(actionAsDelegate);
        }