PasswordValidator.IsLower Method

Determines whether the character is between 'a' and 'z'.

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

Syntax

'Declaration
Public Overridable Function IsLower ( _
    c As Char _
) As Boolean
'Usage
Dim instance As PasswordValidator 
Dim c As Char 
Dim returnValue As Boolean 

returnValue = instance.IsLower(c)
public virtual bool IsLower(
    char c
)
public:
virtual bool IsLower(
    wchar_t c
)
abstract IsLower : 
        c:char -> bool  
override IsLower : 
        c:char -> bool
public function IsLower(
    c : char
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the character is between 'a' and 'z'; otherwise, false.

See Also

Reference

PasswordValidator Class

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity