csGeoLayers.Content.RainRadar.RainRadarLayer.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() private méthode

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