Skip to main content

DelegateCommand<T>.Execute(T) Method

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

Namespace: DevExpress.Mvvm

Assembly: DevExpress.Mvvm.v23.2.dll

NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation

Declaration

public override void Execute(
    T parameter
)

Parameters

Name Type Description
parameter T

Data used by the command. If the command does not require data to be passed, this object can be set to a null reference.

Remarks

See Delegate Commands to learn more.

See Also