6 references to ValidationResult
System.ComponentModel.DataAnnotations (3)
DataAnnotations\ValidationAttribute.cs (2)
382
result = new
ValidationResult
(this.FormatErrorMessage(validationContext.DisplayName), memberNames);
423
result = new
ValidationResult
(errorMessage, result.MemberNames);
DataAnnotations\ValidationResult.cs (1)
43
:
this
(errorMessage, null) {
System.Web (3)
Security\MembershipPasswordAttribute.cs (3)
182
return new
ValidationResult
(FormatErrorMessage(errorMessage, name, MinRequiredPasswordLength), memberNames);
188
return new
ValidationResult
(FormatErrorMessage(errorMessage, name, MinRequiredNonAlphanumericCharacters), memberNames);
205
return new
ValidationResult
(FormatErrorMessage(errorMessage, name, additionalArgument: String.Empty), memberNames);