private void OnMessageReceivedNotification(IncomingChatNotification notification)
 {
     RefreshOrAddEntryInList(notification.Channel);
 }
Пример #2
0
        public void OnMessageReceived(ChannelInfo channelInfo)
        {
            var message = new IncomingChatNotification(this, channelInfo);

            _messenger.Publish(message);
        }