Visual Guard Class Library Documentation

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

Adds a new user to the Visual Guard repository.

public VGMembershipUser CreateUser(
   String username,
   String password,
   String email,
   String passwordQuestion,
   String passwordAnswer,
   Boolean isApproved,
   String comment,
   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.
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. null value when the creation fails.

Remarks

When a default role is defined for your application, the default role is automatically granted to the user. You can define a default role to your application in the Visual Guard console.

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

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