DelegateCommand<T>.Execute Method

Defines the method to be called when the command is invoked.

Namespace:  Microsoft.Practices.Composite.Presentation.Commands
Assembly:  Microsoft.Practices.Composite.Presentation (in Microsoft.Practices.Composite.Presentation.dll)

Syntax

'Declaration
Public Sub Execute ( _
    parameter As T _
)
public void Execute(
    T parameter
)
public:
void Execute(
    T parameter
)
function execute(parameter);

Parameters

  • parameter
    Type: T
    Data used by the command. If the command does not require data to be passed, this object can be set to nulla null reference (Nothing in Visual Basic).

See Also

DelegateCommand<T> Class

Microsoft.Practices.Composite.Presentation.Commands Namespace