Exemple #1
0
 public void Handle(ShortNameChangedEvent message)
 {
     if (this._settingsAccountInfo == null)
     {
         return;
     }
     this._settingsAccountInfo.ProfileInfo.screen_name = message.ShortName;
     this.NotifyPropertyChanged <string>((Expression <Func <string> >)(() => this.ShortNameStr));
 }
Exemple #2
0
 public void Handle(ShortNameChangedEvent message)
 {
     if (this._settingsAccountInfo == null)
     {
         return;
     }
     this._settingsAccountInfo.ProfileInfo.screen_name = message.ShortName;
     // ISSUE: method reference
     this.NotifyPropertyChanged <string>(() => this.ShortNameStr);
 }