Esempio n. 1
0
        private void SendTypingNotification(TypingStatus type)
        {
            if (!IsViewingChat)
            {
                return;
            }

            Events.SendUserCommand(CommandDefinitions.ClientSendTypingStatus,
                                   new[] { type.ToString().ToLower(), ConversationWith.Name });
        }
Esempio n. 2
0
 private void SendTypingNotification(TypingStatus type)
 {
     Events.SendUserCommand(CommandDefinitions.ClientSendTypingStatus,
         new[] {type.ToString(), ConversationWith.Name});
 }
Esempio n. 3
0
        private void SendTypingNotification(TypingStatus type)
        {
            if (!IsViewingChat) return;

            Events.SendUserCommand(CommandDefinitions.ClientSendTypingStatus,
                new[] {type.ToString().ToLower(), ConversationWith.Name});
        }