dbz.UIComponents.DelegateCommand.Execute C# (CSharp) Method

Execute() public method

Executes the actual command
public Execute ( object parameter ) : void
parameter object THe command parameter to be passed
return void
        public void Execute(object parameter)
        {
            if (ExecuteDelegate != null)
                ExecuteDelegate(parameter);
        }
DelegateCommand