AuthenticationFailureType Enumeration |
The known types of login authentication failures, used in
FailureType.
Namespace:
NetQuarry.Security
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum AuthenticationFailureType
Public Enumeration AuthenticationFailureType
Members
| Member name | Value | Description |
---|
| UserIDNotProvided | 1 |
The User ID was not provided.
|
| UnknownUser | 2 |
The User ID was provided, but was not recognized as that of a valid user.
|
| InvalidPassword | 3 |
The User ID was recognized, but the provided password was not correct.
|
| PasswordNotProvided | 4 |
The User ID was provided, but the password was not provided (and one was required).
|
| TooManyFailures | 5 |
Authentication failed because the user made too many login attempts per the application's
MaxFailedLogins property.
|
| UserDisabled | 6 |
Authentication failed because the user's account is marked disabled.
|
| NotGroupMember | 7 |
Authentication failed because the user was not found to be the member of any groups.
That is, the user had no Profiles.
|
See Also