예제 #1
0
        public void Handle(TLUpdateChatParticipants updateChatParticipants)
        {
            if (_currentChat.Index != updateChatParticipants.Participants.ChatId.Value)
            {
                return;
            }

            Execute.BeginOnUIThread(() =>
            {
                UpdateAdmins(updateChatParticipants.Participants as IChatParticipants);
            });
        }
예제 #2
0
 public void Handle(TLUpdateChatParticipants updateChatParticipants)
 {
     NotifyOfPropertyChange(() => CanEditChat);
 }