13 overrides of IsValid
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
RemoteAttributeBase.cs (1)
127
public override bool
IsValid
(object? value)
System.ComponentModel.Annotations (12)
System\ComponentModel\DataAnnotations\AllowedValuesAttribute.cs (1)
44
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\AsyncValidationAttribute.cs (1)
88
public sealed override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\Base64StringAttribute.cs (1)
36
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\DataTypeAttribute.cs (1)
104
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\DeniedValuesAttribute.cs (1)
44
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\LengthAttribute.cs (1)
49
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
66
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\MinLengthAttribute.cs (1)
49
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\RangeAttribute.cs (1)
131
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
56
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\RequiredAttribute.cs (1)
38
public override bool
IsValid
(object? value)
System\ComponentModel\DataAnnotations\StringLengthAttribute.cs (1)
45
public override bool
IsValid
(object? value)
17 references to IsValid
System.ComponentModel.Annotations (17)
System\ComponentModel\DataAnnotations\AllowedValuesAttribute.cs (1)
33
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\AsyncValidationAttribute.cs (1)
79
/// Sealed override of <see cref="ValidationAttribute.
IsValid
(object?)" /> that delegates to the
System\ComponentModel\DataAnnotations\Base64StringAttribute.cs (1)
29
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\DataTypeAttribute.cs (1)
98
/// Override of <see cref="ValidationAttribute.
IsValid
(object)" />
System\ComponentModel\DataAnnotations\DeniedValuesAttribute.cs (1)
33
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\LengthAttribute.cs (1)
34
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
54
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\MinLengthAttribute.cs (1)
36
/// Determines whether a specified object is valid. (Overrides <see cref="ValidationAttribute.
IsValid
(object)" />)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
47
/// Override of <see cref="ValidationAttribute.
IsValid
(object)" />
System\ComponentModel\DataAnnotations\RequiredAttribute.cs (1)
31
/// Override of <see cref="ValidationAttribute.
IsValid
(object)" />
System\ComponentModel\DataAnnotations\StringLengthAttribute.cs (1)
36
/// Override of <see cref="ValidationAttribute.
IsValid
(object)" />
System\ComponentModel\DataAnnotations\ValidationAttribute.cs (6)
391
/// Derived classes should override this method instead of <see cref="
IsValid
(object)" />, which is deprecated.
420
return
IsValid
(value)
468
/// This base method invokes the <see cref="
IsValid
(object)" /> method to determine whether or not the
469
/// <paramref name="value" /> is acceptable. If <see cref="
IsValid
(object)" /> returns <c>false</c>, this base
476
/// is thrown if <see cref="
IsValid
(object)" /> returns <c>false</c>.
481
if (!
IsValid
(value))