Rover.TCPServer.PrintAllClientInfo C# (CSharp) Method

PrintAllClientInfo() public method

Print all client information
public PrintAllClientInfo ( ) : void
return void
        public void PrintAllClientInfo()
        {
            Console.WriteLine("\n" + TcpClients.Count + " Clients are active\n");
            for (int i = 0; i < TcpClients.Count; i++)
            {
                Console.WriteLine("\nClient " + i);
                PrintClientInfo((TcpClient)TcpClients[i]);
            }
        }