IdentityErrorDescriber.DuplicateEmail(String) Method

Definition

Returns an IdentityError indicating the specified email is already associated with an account.

public:
 virtual Microsoft::AspNetCore::Identity::IdentityError ^ DuplicateEmail(System::String ^ email);
public virtual Microsoft.AspNetCore.Identity.IdentityError DuplicateEmail (string email);
abstract member DuplicateEmail : string -> Microsoft.AspNetCore.Identity.IdentityError
override this.DuplicateEmail : string -> Microsoft.AspNetCore.Identity.IdentityError
Public Overridable Function DuplicateEmail (email As String) As IdentityError

Parameters

email
String

The email that is already associated with an account.

Returns

An IdentityError indicating the specified email is already associated with an account.

Applies to