Attributes that apply to a user that is loaded from the default database provider.
Namespace:
NetQuarry.Security
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum UserAttrs
<FlagsAttribute>
Public Enumeration UserAttrs
Members
| Member name | Value | Description |
---|
| Disabled | 1 | This user is disabled and should not be allowed to login. |
| NoCookie | 2 | This user ID should not be stored as a cookie. |
| ForcePasswordChange | 4 | The user should be forced to change their password at the next logon. |
| SystemGeneratedPassword | 8 | The password for this user was system-generated. |
| ExternalAuth | 16 | This user is authenticated via an external directory such as SSO or OAUTH. |
| TwoFactorAuth | 32 | This user must use two-factor authentication. |
Remarks
If you are using an Authentication Provider that is different than the Database provider, then these
flag generally have no meaning and there is no interface available to set them.
See Also