Table of Contents

Enum UserCreateResultType

Namespace
Dynamicweb.Users.Frontend.UserCreate
Assembly
Dynamicweb.Users.dll

Represents the possible result types when creating a user.

public enum UserCreateResultType

Fields

EmailAlreadyExists = 1

The email already exists.

InvalidCustomerNumber = 8

The customer number provided is invalid.

InvalidEmail = 2

The email provided is invalid.

InvalidPasswordComplexity = 3

The password does not meet the required complexity.

InvalidPasswordLength = 4

The password length is invalid.

MismatchedPasswords = 5

The passwords provided do not match.

None = 0

No specific result.

UserNameAlreadyExists = 6

The username already exists.

UserNameIsEmpty = 7

The username is empty.

To top