Bevisuali.UX.ExtWPF.Invoke C# (CSharp) 메소드

Invoke() 공개 정적인 메소드

public static Invoke ( this dispatcher, System.Action action ) : void
dispatcher this
action System.Action
리턴 void
        public static void Invoke(this Dispatcher dispatcher, Action action)
        {
            Delegate actionAsDelegate = action as Delegate;
            dispatcher.Invoke(actionAsDelegate);
        }