Hummingbird.ViewModels.AccountSettingsViewModel.NotifyPropertyChanged C# (CSharp) 메소드

NotifyPropertyChanged() 개인적인 메소드

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