devTool.Connection.Receive C# (CSharp) Method

Receive() public method

public Receive ( int start, int count ) : int
start int
count int
return int
        public int Receive(int start, int count)
        {
            return this.Socket.Receive(_recvBuffer, start, count, SocketFlags.None);
        }