Visual Guard Class Library Documentation

VGMembership.CreateUser Method (String, String, String, String, String, Boolean, String, String, String, Boolean, VGMembershipCreateStatus&)

Adds a new user to the Visual Guard repository.

public static VGMembershipUser CreateUser(
   String username,
   String password,
   String email,
   String passwordQuestion,
   String passwordAnswer,
   Boolean isApproved,
   String comment,
   String firstName,
   String lastName,
   Boolean mustChangePasswordAtNextLogon,
   out VGMembershipCreateStatus& status
);

Parameters

username
The user name for the new user.
password
The password for the new user.
email
The e-mail address for the new user.
passwordQuestion
The password-question value for the membership user.
passwordAnswer
The password-answer value for the membership user.
isApproved
A Boolean that indicates whether the new user is approved to log on.
comment
Specific information for the user.
firstName
the first name of the user.
lastName
the last name of the user.
mustChangePasswordAtNextLogon
A Boolean value that indicates whether the new user must change the password at next logon.
status
A VGMembershipCreateStatus indicating that the user was created successfully or the reason creation failed.

Return Value

A VGMembershipUser object for the newly created user. a null value (Nothing in VB) when the creation fails.

Exceptions

Exception Type Condition
SecurityException The current user has not enough privileges to use Membership API. The Membership access level of the application must be sufficient to allows this action or the 'Membership Manager' role must be granted to the user by using the Visual Guard console.

See Also

VGMembership Class | Novalys.VisualGuard.Security.Membership Namespace | VGMembership.CreateUser Overload List