csGeoLayers.Content.RainRadar.RainRadarLayer.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() private method

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