Inheritance: ConnectionEventArgs
Exemplo n.º 1
0
 void conn_BytesReceived(object sender, BytesReceivedEventArgs e)
 {
     Enqueue(e.Buffer, e.ID);
 }
        void conn_BytesReceived(object sender, BytesReceivedEventArgs e)
        {

            _log.InfoFormat("Received {0} bytes from connection {1}", e.DataStream.Length, e.ID.ToString());
            Enqueue(e.DataStream, e.ID);
        }