/// <summary>
        /// Generates a clone of this audit reader settings configuration.
        /// </summary>
        /// <returns></returns>
        public virtual object Clone()
        {
            SecurityAuditReader newValue = new SecurityAuditReader();

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