cs_elbot.TCPWrapper.GotData C# (CSharp) 메소드

GotData() 개인적인 메소드

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

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