Base:
method
IsValid
System.ComponentModel.DataAnnotations.DataTypeAttribute.IsValid(System.Object)
3 references to IsValid
Microsoft.AspNetCore.Identity (2)
IdentityApiEndpointRouteBuilderExtensions.cs (2)
71
if (string.IsNullOrEmpty(email) || !_emailAddressAttribute.
IsValid
(email))
357
if (!string.IsNullOrEmpty(infoRequest.NewEmail) && !_emailAddressAttribute.
IsValid
(infoRequest.NewEmail))
Microsoft.Extensions.Identity.Core (1)
UserValidator.cs (1)
91
if (!new EmailAddressAttribute().
IsValid
(email))