ScheduledTaskAgent1.Row.NotifyPropertyChanging C# (CSharp) Метод

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

private NotifyPropertyChanging ( string propertyName ) : void
propertyName string
Результат void
        private void NotifyPropertyChanging(string propertyName)
        {
            if (PropertyChanging != null)
            {
                PropertyChanging(this, new PropertyChangingEventArgs(propertyName));
            }
        }