Describes the result of a CreateUser(String, String) operation.
Namespace:
Novalys.VisualGuard.Security.MembershipAssembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 3.2.912.1 (3.2.912.01)
Syntax
| C# |
|---|
public enum VGMembershipCreateStatus |
| Visual Basic (Declaration) |
|---|
Public Enumeration VGMembershipCreateStatus |
Members
| Member name | Description | |
|---|---|---|
| Success |
The user was successfully created.
| |
| InvalidUserName |
The user name was not found in the repository or the user name is null or is empty or is longer than 64 characters or contains invalid chars ('\', '/', '?', '*', '%', ';', ''', '"', ':', '|', '[', ']', '+', '=', ',').
| |
| InvalidPassword |
The password is not formatted correctly or is null or is longer than 64 characters.
| |
| InvalidQuestion |
The password question is not formatted correctly
| |
| InvalidAnswer |
The password answer is not formatted correctly
| |
| InvalidEmail |
The e-mail address is not formatted correctly.
| |
| InvalidComment |
The comment is not formatted correctly.
| |
| DuplicateUserName |
The user name already exists in the repository.
| |
| DuplicateEmail |
The e-mail address already exists in the repository
| |
| UserRejected |
The user was not created, for a reason defined by the provider.
| |
| ProviderError |
The provider returned an error that is not described by other values.
| |
| TooManyUsers |
The maximum number of users allowed in the repository by the license has been reached.
| |
| InvalidWindowsAccount |
The specified NT account is not a valid.
|