VersionOne.ServiceHost.ConfigurationTool.Entities.ProxyConnectionSettings.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() protected méthode

protected NotifyPropertyChanged ( [ propertyName = "" ) : void
propertyName [
Résultat void
        protected virtual void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }
ProxyConnectionSettings