PasswordValidator.IsDigit Method (Char)

 

Determines whether the character is a digit between '0' and '9'.

Namespace:   Microsoft.AspNet.Identity
Assembly:  Microsoft.AspNet.Identity.Core (in Microsoft.AspNet.Identity.Core.dll)

Syntax

public virtual bool IsDigit(
    char c
)
public:
virtual bool IsDigit(
    wchar_t c
)
abstract IsDigit : 
        c:char -> bool
override IsDigit : 
        c:char -> bool
Public Overridable Function IsDigit (
    c As Char
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the character is a digit between '0' and '9'; otherwise, false.

See Also

PasswordValidator Class
Microsoft.AspNet.Identity Namespace
ASP.NET Identity

Return to top