Exemple #1
0
        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public bool IsLidClosed()           // bdr
        {
            bool isLidClosed = false;

            try
            {
                if (IsConnectionEnabled)
                {
                    isLidClosed = myXmlRpcProxy.IsLidClosed();
                }
            }
            // Log the details of the exception
            catch (Exception ex)
            {
                LogException(ex, "IsLidClosed");
            }
            return(isLidClosed);
        }