Beispiel #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="bulkBufferDeadVolume"></param>
        public void GetContainerVolumes(out double bulkBufferDeadVolume)
        {
            bulkBufferDeadVolume = 0.0d;

            try
            {
                if (IsConnectionEnabled)
                {
                    XmlRpcContainer containers = myXmlRpcProxy.GetContainerVolumes();
                    bulkBufferDeadVolume = containers.bulkBufferDeadVolume;
                }
            }
            catch (Exception ex)
            {
                // Log the details of the exception
                LogException(ex, "GetContainerVolumes");
            }
        }