Click or drag to resize

RelayCommand Class

A 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 does not allow you to accept command parameters in the Execute and CanExecute callback methods.
Inheritance Hierarchy
SystemObject
  Micros.PosCore.GuestProfile.MvvmToolsRelayCommand

Namespace:  Micros.PosCore.GuestProfile.MvvmTools
Assembly:  PosCore (in PosCore.dll) Version: 18.2
Syntax
C#
public class RelayCommand : ICommand

The RelayCommand type exposes the following members.

Constructors
Methods
Events
  NameDescription
Public eventCanExecuteChanged
Top
Remarks
Source: http://blogs.infragistics.com/blogs/josh_smith/archive/2008/11/18/putting-silverlight-commands-to-use.aspx
See Also