CmisSync.Lib.Streams.NotifyPropertyChangedStream.NotifyPropertyChanged C# (CSharp) Метод

NotifyPropertyChanged() защищенный Метод

This method is called by the Set accessor of each property.
protected NotifyPropertyChanged ( string propertyName ) : void
propertyName string Property name.
Результат void
        protected virtual void NotifyPropertyChanged(string propertyName) {
            if (string.IsNullOrEmpty(propertyName)) {
                throw new ArgumentNullException("propertyName");
            }

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