Yaircc.Net.IRC.Connection.Send C# (CSharp) Method

Send() private method

Send a string of data to the server
private Send ( byte data ) : void
data byte The data to send
return void
        private void Send(byte[] data)
        {
            NetworkStream stream = this.client.GetStream();
            stream.BeginWrite(data, 0, data.Length, this.SendCallback, null);
        }

Same methods

Connection::Send ( string data ) : void