Generated by DocFX

Namespace ISynergy.Framework.Mvvm.Commands

Classes

AsyncRelayCommand

A _command that mirrors the functionality of RelayCommand, with the addition of accepting a returning a as the _execute action, and providing an ExecutionTask property that notifies changes when ExecuteAsync(Nullable<Object>) is invoked and when the returned completes.

AsyncRelayCommand<T>

A generic _command that provides a more specific version of AsyncRelayCommand.

RelayCommand

A _command whose sole purpose is to relay its functionality to other objects by invoking delegates. The default return value for the CanExecute(Nullable<Object>) method is true. This type does not allow you to accept _command parameters in the Execute(Nullable<Object>) and CanExecute(Nullable<Object>) callback methods.

RelayCommand<T>

A generic _command whose sole purpose is to relay its functionality to other objects by invoking delegates. The default return value for the CanExecute method is true. This class allows you to accept _command parameters in the Execute(T) and CanExecute(T) callback methods.