Catel.MVVM.ViewModelBase.OnViewModelCommandExecuted C# (CSharp) Method

OnViewModelCommandExecuted() protected method

Called when a command for a view model type that the current view model is interested in has been executed. This can be accomplished by decorating the view model with the InterestedInAttribute.
protected OnViewModelCommandExecuted ( IViewModel viewModel, ICatelCommand command, object commandParameter ) : void
viewModel IViewModel The view model.
command ICatelCommand The command that has been executed.
commandParameter object The command parameter used during the execution.
return void
        protected virtual void OnViewModelCommandExecuted(IViewModel viewModel, ICatelCommand command, object commandParameter)
        {
        }