PasswordValidator.RequireNonLetterOrDigit Property

 

Gets or sets whether the password requires a non-letter or digit character.

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

Syntax

public bool RequireNonLetterOrDigit { get; set; }
public:
property bool RequireNonLetterOrDigit {
    bool get();
    void set(bool value);
}
member RequireNonLetterOrDigit : bool with get, set
Public Property RequireNonLetterOrDigit As Boolean

Property Value

Type: System.Boolean

true if the password requires a non-letter or digit character; otherwise, false.

See Also

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

Return to top