IdentityErrorDescriber.PasswordTooShort(Int32) Method

Definition

Returns an IdentityError indicating a password of the specified length does not meet the minimum length requirements.

public:
 virtual Microsoft::AspNetCore::Identity::IdentityError ^ PasswordTooShort(int length);
public virtual Microsoft.AspNetCore.Identity.IdentityError PasswordTooShort (int length);
abstract member PasswordTooShort : int -> Microsoft.AspNetCore.Identity.IdentityError
override this.PasswordTooShort : int -> Microsoft.AspNetCore.Identity.IdentityError
Public Overridable Function PasswordTooShort (length As Integer) As IdentityError

Parameters

length
Int32

The length that is not long enough.

Returns

An IdentityError indicating a password of the specified length does not meet the minimum length requirements.

Applies to