/// <summary>
        /// Releases unmanaged and - optionally - managed resources.
        /// </summary>
        /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        protected virtual void Dispose(Boolean disposing)
        {
            if (disposing)
            {
                if (mCacheType != null)
                {
                    mCacheType.Dispose();
                }

                foreach (HealthChecks.HealthCheckType healthCheckType in mHealthCheckTypes)
                {
                    healthCheckType.Dispose();
                }
            }
        }