Hummingbird.ViewModels.AccountSettingsViewModel.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() private method

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