/// <summary>
        /// Returns the OS/Platform the Nessus Server is running on.
        /// </summary>
        /// <returns>string</returns>
        public string GetPlatform()
        {
            Reply reply = Reply.Parse(SendRequest(URI + "/server/load", "seq=" + Random));

            return(reply.Content.Platform);
        }
        /// <summary>
        /// Returns the ServerLoad object for this Nessus Server.
        /// </summary>
        /// <returns>ServerLoad</returns>
        public ServerLoad GetServerLoad()
        {
            Reply reply = Reply.Parse(SendRequest(URI + "/server/load", "seq=" + Random));

            return(reply.Content.ServerLoad);
        }