C# Class Tag.Neuron.Xamarin.UI.Extensions.CommandExtensions

Helper/convenience methods for the ICommand.
Mostra file Open project: Trust-Anchor-Group/IdApp

Public Methods

Method Description
ChangeCanExecute ( ICommand command ) : void

Calls the Command.ChangeCanExecute method on the given ICommand, given that it is a Command.

Execute ( ICommand command ) : void

Calls the ICommand.Execute method with a null argument, given that the command can be executed (ICommand.CanExecute).

Method Details

ChangeCanExecute() public static method

Calls the Command.ChangeCanExecute method on the given ICommand, given that it is a Command.
public static ChangeCanExecute ( ICommand command ) : void
command ICommand
return void

Execute() public static method

Calls the ICommand.Execute method with a null argument, given that the command can be executed (ICommand.CanExecute).
public static Execute ( ICommand command ) : void
command ICommand
return void