cs_elbot.TCPWrapper.GotData C# (CSharp) Method

GotData() private method

private GotData ( object Sender, TCPClient e ) : void
Sender object
e TCPClient
return void
        private void GotData(object Sender, TCPClient.TCPClient.GotDataEventArgs e)
        {
            byte[] b = e.DataBuffer;

            OnGotCommand(new GotCommandEventArgs(e.DataBuffer));
        }