Esempio n. 1
0
 protected virtual async void OnPropertyChanged([CallerMemberName] string propertyName = null)
 {
     if (PropertyChanged != null)
     {
         dispatchService.Handler = PropertyChanged;
         await dispatchService.RunAsync(propertyName);
     }
 }