Adds a new user to the Visual Guard repository for a current application.

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 VGMembershipUser CreateUserForCurrentApplication(
	string username,
	string password,
	string email,
	string passwordQuestion,
	string passwordAnswer,
	bool isApproved,
	string comment,
	out VGMembershipCreateStatus status
)
Visual Basic
Public Function CreateUserForCurrentApplication ( 
	username As String,
	password As String,
	email As String,
	passwordQuestion As String,
	passwordAnswer As String,
	isApproved As Boolean,
	comment As String,
	<OutAttribute> ByRef status As VGMembershipCreateStatus
) As VGMembershipUser

Parameters

username
Type: System..::..String
The user name for the new user.
password
Type: System..::..String
The password for the new user.
email
Type: System..::..String
The e-mail address for the new user.
passwordQuestion
Type: System..::..String
The password-question value for the membership user.
passwordAnswer
Type: System..::..String
The password-answer value for the membership user.
isApproved
Type: System..::..Boolean
A Boolean that indicates whether the new user is approved to log on.
comment
Type: System..::..String
Specific information for the user.
status
Type: Novalys.VisualGuard.Security.Membership..::..VGMembershipCreateStatus%
A VGMembershipCreateStatus indicating that the user was created successfully or the reason creation failed.

Return Value

Type: VGMembershipUser
A VGMembershipUser object for the newly created user.

See Also