Yaircc.Net.IRC.Connection.Connect C# (CSharp) Метод

Connect() публичный Метод

Begin establishing the connection asynchronously.
public Connect ( ) : void
Результат void
        public void Connect()
        {
            this.client = new TcpClient();
            this.client.BeginConnect(this.server, this.port, this.ConnectCallback, null);

            if (this.beganConnecting != null)
            {
                this.beganConnecting(this, EventArgs.Empty);
            }
        }