SCSM.AzureAutomation.WPF.Connector.AzureAutomationWizardData.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() private method

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