AttachedCommandBehavior.CommandBehavior.GetAction C# (CSharp) Method

GetAction() public static method

Gets the Action property.
public static GetAction ( DependencyObject d ) : Action
d System.Windows.DependencyObject
return Action
        public static Action<object> GetAction(DependencyObject d)
        {
            return (Action<object>) d.GetValue(ActionProperty);
        }