C# Класс MediaAppSample.Core.Commands.CommandBase

Base class for commands.
Наследование: ICommand
Показать файл Открыть проект

Открытые методы

Метод Описание
CanExecute ( object parameter ) : bool
Execute ( object parameter ) : void
RaiseCanExecuteChanged ( ) : void

Method used to raise the CanExecuteChanged event to indicate that the return value of the CanExecute method has changed.

Описание методов

CanExecute() публичный абстрактный Метод

public abstract CanExecute ( object parameter ) : bool
parameter object
Результат bool

Execute() публичный абстрактный Метод

public abstract Execute ( object parameter ) : void
parameter object
Результат void

RaiseCanExecuteChanged() публичный Метод

Method used to raise the CanExecuteChanged event to indicate that the return value of the CanExecute method has changed.
public RaiseCanExecuteChanged ( ) : void
Результат void