Exemple #1
0
 private void _client_OnPresenceChanged(object sender, Core.ProtoJson.Schema.Entity e)
 {
     if (e.id.gaia_id == CurrentUser.Id)
     {
         CurrentUser = new User(e);
         OnPropertyChanged(nameof(CurrentUser));
     }
     else
     {
         reorderContacts();
     }
 }
Exemple #2
0
 private void _client_OnUserInformationReceived(object sender, Core.ProtoJson.Schema.Entity e)
 {
     CurrentUser = new User(e);
     OnPropertyChanged(nameof(CurrentUser));
 }
Exemple #3
0
 private void _client_OnContactInformationReceived(object sender, Core.ProtoJson.Schema.Entity e)
 {
     reorderContacts();
 }