ArcGISWindowsPhoneSDK.DelegateCommand.DelegateCommand C# (CSharp) Method

DelegateCommand() public method

public DelegateCommand ( Action executeAction, bool>.Func canExecute ) : System
executeAction Action
canExecute bool>.Func
return System
        public DelegateCommand(Action<object> executeAction, Func<object, bool> canExecute)
        {
            this.executeAction = executeAction;
            this.canExecute = canExecute;
        }