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.WinUI.Mvvm.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public override void Execute(
    T param
)

Parameters

Name Type Description
param T

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

See Also