Skip to content

Instantly share code, notes, and snippets.

@jmarnold
Created January 15, 2013 18:36
Show Gist options
  • Save jmarnold/4540861 to your computer and use it in GitHub Desktop.
Save jmarnold/4540861 to your computer and use it in GitHub Desktop.
Conventional email rules
public class ConventionalEmailSource : IFieldValidationSource
{
public IEnumerable<IFieldValidationRule> RulesFor(PropertyInfo property)
{
if(property.Name.ToLower().Contains("email"))
{
yield return new EmailFieldRule();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment