CmisSync.Lib.Cmis.RepositoryStatusAggregator.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() private méthode

This method is called by the Set accessor of each property.
private NotifyPropertyChanged ( string propertyName ) : void
propertyName string Property name.
Résultat void
        private void NotifyPropertyChanged(string propertyName) {
            if (string.IsNullOrEmpty(propertyName)) {
                throw new ArgumentNullException("propertyName");
            }

            var handler = this.PropertyChanged;
            if (handler != null) {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }