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

INotifyableViewModel() private method

Views the model event.
This method should only be called by Catel so the ManagedViewModel can invoke it. This method is only used as a pass-through to the actual OnViewModelEvent method.
private INotifyableViewModel ( IViewModel viewModel, ViewModelEvent viewModelEvent, EventArgs e ) : void
viewModel IViewModel The view model.
viewModelEvent ViewModelEvent The view model event.
e System.EventArgs The instance containing the event data.
return void
        void INotifyableViewModel.ViewModelEvent(IViewModel viewModel, ViewModelEvent viewModelEvent, EventArgs e)
        {
            Log.Debug("A view model ('{0}') the current view model ('{1}') is interested in has raised an event ('{2}')",
                viewModel.GetType(), GetType(), viewModelEvent.ToString());

            OnViewModelEvent(viewModel, viewModelEvent, e);
        }

Same methods

ViewModelBase::INotifyableViewModel ( IViewModel viewModel, ICatelCommand command, object commandParameter ) : void
ViewModelBase::INotifyableViewModel ( IViewModel viewModel, string propertyName ) : void