示例#1
0
        public bool TestConnection(uint clientID)
        {
            IonTcpConnection connection = GetConnection(clientID);

            if (connection != null)
            {
                return(connection.TestConnection()); // Try to send data
            }
            return(false);                           // Connection not here!
        }