Example #1
0
        private void OnRaiseDirectMsg(DirectMsgEventArgs e)
        {
            var handler = OnDirectMsg;

            if (handler == null)
            {
                return;
            }

            Console.WriteLine("Sending out direct message event from " + e.From + " sent from " + e.Channel + " channel");
            handler(this, e);
        }
Example #2
0
        private void OnRaiseDirectMsg(DirectMsgEventArgs e)
        {
            var handler = OnDirectMsg;

            if (handler == null) return;

            Console.WriteLine("Sending out direct message event from " + e.From + " sent from " + e.Channel + " channel");
            handler(this, e);
        }