Inheritance: RegularExpressionValidator
Ejemplo n.º 1
0
		/// <summary>
		/// Constructs and configures an <see cref="IValidator"/>
		/// instance based on the properties set on the attribute instance.
		/// </summary>
		/// <returns></returns>
		public override IValidator Build()
		{
			IValidator validator = new EmailValidator();

			ConfigureValidatorMessage(validator);

			return validator;
		}
Ejemplo n.º 2
0
        /// <summary>
        /// Constructs and configures an <see cref="IValidator"/>
        /// instance based on the properties set on the attribute instance.
        /// </summary>
        /// <returns></returns>
        public override IValidator Build()
        {
            IValidator validator = new EmailValidator();

            ConfigureValidatorMessage(validator);

            return(validator);
        }