/// <summary>
        /// Generates a clone of this security settings configuration.
        /// </summary>
        /// <returns></returns>
        public override object Clone()
        {
            InternalServerSecurity newValue = new InternalServerSecurity();

            CopyTo(newValue);
            return(newValue);
        }
 /// <summary>
 /// Copies the values of this instance to another.
 /// </summary>
 /// <param name="value">The target instance.</param>
 protected void CopyTo(InternalServerSecurity value)
 {
     base.CopyTo(value);
 }