3 overrides of IsValid
System.ComponentModel.DataAnnotations (2)
DataAnnotations\CompareAttribute.cs (1)
38
protected override ValidationResult
IsValid
(object value, ValidationContext validationContext) {
DataAnnotations\CustomValidationAttribute.cs (1)
127
protected override ValidationResult
IsValid
(object value, ValidationContext validationContext) {
System.Web (1)
Security\MembershipPasswordAttribute.cs (1)
169
protected override ValidationResult
IsValid
(object value, ValidationContext validationContext) {
10 references to IsValid
System.ComponentModel.DataAnnotations (10)
DataAnnotations\CustomValidationAttribute.cs (1)
120
/// Override of validation method. See <see cref="ValidationAttribute.
IsValid
(object, ValidationContext)"/>.
DataAnnotations\ValidationAttribute.cs (9)
10
/// <para>Override <see cref="
IsValid
(object, ValidationContext)"/> to implement validation logic.</para>
306
/// Instead, implement <see cref="
IsValid
(object, ValidationContext)"/>.
330
return this.
IsValid
(value, null) == null;
350
/// <exception cref="NotImplementedException"> is thrown when <see cref="
IsValid
(object, ValidationContext)" />
408
/// <exception cref="NotImplementedException"> is thrown when <see cref="
IsValid
(object, ValidationContext)" />
416
ValidationResult result = this.
IsValid
(value, validationContext);
458
/// <remarks>This method invokes the <see cref="
IsValid
(object, ValidationContext)"/> method
465
/// <exception cref="ValidationException"> is thrown if <see cref="
IsValid
(object, ValidationContext)"/>
469
/// <exception cref="NotImplementedException"> is thrown when <see cref="
IsValid
(object, ValidationContext)" />