Rover.TCPServer.PrintAllClientInfo C# (CSharp) 메소드

PrintAllClientInfo() 공개 메소드

Print all client information
public PrintAllClientInfo ( ) : void
리턴 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]);
            }
        }