2 references to IsDigit
Microsoft.Extensions.Identity.Core (2)
PasswordValidator.cs (2)
56
if (options.RequireDigit && !password.Any(
IsDigit
))
119
return IsUpper(c) || IsLower(c) ||
IsDigit
(c);