wpf_player.PeerConfigurationModel.NotifyPropertyChanged C# (CSharp) Метод

NotifyPropertyChanged() приватный Метод

Method called when a property has been changed. This method rises the event PropertyChange.
private NotifyPropertyChanged ( String info ) : void
info String Name of the property that has been changed
Результат void
        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }