UserValidator<TUser, TKey>.RequireUniqueEmail Property

Gets or sets whether unique e-mail is needed for validating the user.

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

Syntax

'Declaration
Public Property RequireUniqueEmail As Boolean 
    Get 
    Set
'Usage
Dim instance As UserValidator 
Dim value As Boolean 

value = instance.RequireUniqueEmail

instance.RequireUniqueEmail = value
public bool RequireUniqueEmail { get; set; }
public:
property bool RequireUniqueEmail {
    bool get ();
    void set (bool value);
}
member RequireUniqueEmail : bool with get, set
function get RequireUniqueEmail () : boolean 
function set RequireUniqueEmail (value : boolean)

Property Value

Type: System.Boolean
true if unique e-mail is needed for validating the user; otherwise, false.

See Also

Reference

UserValidator<TUser, TKey> Class

Microsoft.AspNet.Identity Namespace

Other Resources

ASP.NET Identity