PasswordValidator.IsLetterOrDigit Method (Char)
Determines whether the character is a letter or a digit.
Namespace: Microsoft.AspNet.Identity
Assembly: Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)
Syntax
public virtual bool IsLetterOrDigit(
char c
)
public:
virtual bool IsLetterOrDigit(
wchar_t c
)
abstract IsLetterOrDigit :
c:char -> bool
override IsLetterOrDigit :
c:char -> bool
Public Overridable Function IsLetterOrDigit (
c As Char
) As Boolean
Parameters
c
Type: System.CharThe character to check.
Return Value
Type: System.Boolean
true if the character is upper, lower, or a digit; otherwise, false.
See Also
PasswordValidator Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity
Return to top