Describes the result of a CreateUser(String, String) operation.

Namespace: Novalys.VisualGuard.Security.Membership
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
public enum VGMembershipCreateStatus
Visual Basic
Public Enumeration VGMembershipCreateStatus

Members

Member nameValueDescription
Success0 The user was successfully created.
InvalidUserName1 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 ('\', '/', '?', '*', '%', ';', ''', '"', ':', '|', '[', ']', '+', '=', ',').
InvalidPassword2 The password is not formatted correctly or is null or is longer than 64 characters.
InvalidQuestion3 The password question is not formatted correctly
InvalidAnswer4 The password answer is not formatted correctly
InvalidEmail5 The e-mail address is not formatted correctly.
InvalidComment6 The comment is not formatted correctly.
DuplicateUserName7 The user name already exists in the repository.
DuplicateEmail8 The e-mail address already exists in the repository
UserRejected9 The user was not created, for a reason defined by the provider.
ProviderError10 The provider returned an error that is not described by other values.
TooManyUsers11 The maximum number of users allowed in the repository by the license has been reached.
InvalidWindowsAccount12 The specified NT account is not a valid.

See Also