Catel.Data.ChangeNotificationWrapper.OnObjectCollectionItemPropertyChanged C# (CSharp) Method

OnObjectCollectionItemPropertyChanged() public method

Called when the target object raises the INotifyPropertyChanged.PropertyChanged event of an object that is located inside the collection being monitored.
This method is public to allow the usage of the WeakEventListener, do not call this method yourself.
public OnObjectCollectionItemPropertyChanged ( object sender, PropertyChangedEventArgs e ) : void
sender object The sender.
e System.ComponentModel.PropertyChangedEventArgs The instance containing the event data.
return void
        public void OnObjectCollectionItemPropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            CollectionItemPropertyChanged.SafeInvoke(sender, e);
        }