Hummingbird.ViewModels.AccountSettingsViewModel.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() private méthode

private NotifyPropertyChanged ( String info ) : void
info String
Résultat void
        private async void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                await Dispatcher.CurrentDispatcher.BeginInvoke(new Action(
                    () => { PropertyChanged(this, new PropertyChangedEventArgs(info)); }));
            }
        }
    }
AccountSettingsViewModel