wpf_player.AudioPlayerModel.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() private method

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
return void
        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }