Example #1
0
        private void UnreadNotificationsCallback(string roomID, MatrixSyncUnreadNotifications matrixSyncUnreadNotifications)
        {
            Chat chat = findOpenChatForm(roomID);

            if (chat != null)
            {
                chat.UnreadNotifications(matrixSyncUnreadNotifications);
            }
        }
Example #2
0
File: Chat.cs Project: mistay/yuck
 internal void UnreadNotifications(MatrixSyncUnreadNotifications matrixSyncUnreadNotifications)
 {
     tsStatusLabel.Text = "UnreadNotifications. highlight_count:" + matrixSyncUnreadNotifications.highlight_count + " notification_count:" + matrixSyncUnreadNotifications.notification_count;
 }