BeatMachine.Model.AnalyzedSong.NotifyPropertyChanging C# (CSharp) Méthode

NotifyPropertyChanging() private méthode

private NotifyPropertyChanging ( string propertyName ) : void
propertyName string
Résultat void
        private void NotifyPropertyChanging(string propertyName)
        {
            if (PropertyChanging != null)
            {
                PropertyChanging(this, new PropertyChangingEventArgs(propertyName));
            }
        }