SCSM.AzureAutomation.WPF.Connector.AzureAutomationWizardData.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() private méthode

private NotifyPropertyChanged ( String info ) : void
info String
Résultat void
        private void NotifyPropertyChanged(String info)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(info));
            }
        }