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

BeginConnect() public method

Saves the sufficient information and lets the Client instance start to connect to a Server. It will not connect if it is already connected or currently connecting. (Use Disconnect first in that case) When the Client connected successfully it dumps its ThrottledSendQueue.
public BeginConnect ( string addr, int port ) : void
addr string The address where the Client should connect to
port int The port on the Server where the Client should connect to
return void
        public void BeginConnect(string addr, int port)
        {
            m_me.SetInfo(m_nicks[0], UserName, ServerPassword, Info);
            m_client.BeginConnect(addr, port);
        }

Same methods

IrcClient::BeginConnect ( string addr ) : void