Create a new user with external authenticator. If external authenticator is null, create an internally authenticated new user.

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
IUser CreateUser(
	string firstName,
	string lastName,
	string login,
	string password,
	string email,
	IAuthenticatorInformation externalAuthenticator,
	string externalID
)
Visual Basic
Function CreateUser ( _
	firstName As String, _
	lastName As String, _
	login As String, _
	password As String, _
	email As String, _
	externalAuthenticator As IAuthenticatorInformation, _
	externalID As String _
) As IUser
Visual C++
IUser^ CreateUser(
	String^ firstName, 
	String^ lastName, 
	String^ login, 
	String^ password, 
	String^ email, 
	IAuthenticatorInformation^ externalAuthenticator, 
	String^ externalID
)

Parameters

firstName
Type: System..::..String
First Name
lastName
Type: System..::..String
Last Name
login
Type: System..::..String
Login Name
password
Type: System..::..String
Password
email
Type: System..::..String
Email Address
externalAuthenticator
Type: Cartella.Interfaces..::..IAuthenticatorInformation
External Authenticator plugin for the user. If not null, this user will always use the given plugin to authenticate
externalID
Type: System..::..String

Return Value

IUser

See Also