Squishy.Irc.IrcClient.ConnectNotify C# (CSharp) Method

ConnectNotify() private method

private ConnectNotify ( ) : void
return void
        internal void ConnectNotify()
        {
            OnConnected();
        }

Usage Example

コード例 #1
0
ファイル: Client.cs プロジェクト: WCell/WCell-UtilityBot
        private void OnConnect(Connection con)
        {
            m_irc.ConnectNotify();

            if (m_irc.Me.Pw.Length > 0)
            {
                SendLineNow("PASS :"******"NICK {0}\r\n", m_irc.Me.Nick));
            SendLineNow(string.Format("USER {0} \"\" \"{1}\" :{2}", m_irc.Me.UserName, m_addr, m_irc.Me.Info));
        }