[This is preliminary documentation and is subject to change.]

Inserts new Extranet user into the database

Namespace:  OfficeClip.DBLayer.Extranet
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public int InsertExtranetUser(
	bool isActive,
	string firstName,
	string lastName,
	string emailAddress,
	int createdUserId,
	string password,
	string address1,
	string address2,
	string city,
	string state,
	string zip,
	int countryId,
	string workPhone,
	string homePhone,
	string cellPhone,
	string fax,
	string title,
	string organization,
	int groupId
)
Visual Basic (Declaration)
Public Function InsertExtranetUser ( _
	isActive As Boolean, _
	firstName As String, _
	lastName As String, _
	emailAddress As String, _
	createdUserId As Integer, _
	password As String, _
	address1 As String, _
	address2 As String, _
	city As String, _
	state As String, _
	zip As String, _
	countryId As Integer, _
	workPhone As String, _
	homePhone As String, _
	cellPhone As String, _
	fax As String, _
	title As String, _
	organization As String, _
	groupId As Integer _
) As Integer
Visual C++
public:
int InsertExtranetUser(
	bool isActive, 
	String^ firstName, 
	String^ lastName, 
	String^ emailAddress, 
	int createdUserId, 
	String^ password, 
	String^ address1, 
	String^ address2, 
	String^ city, 
	String^ state, 
	String^ zip, 
	int countryId, 
	String^ workPhone, 
	String^ homePhone, 
	String^ cellPhone, 
	String^ fax, 
	String^ title, 
	String^ organization, 
	int groupId
)

Parameters

isActive
Type: System..::.Boolean
Active status of new user
firstName
Type: System..::.String
First name of new user
lastName
Type: System..::.String
Last name of new user
emailAddress
Type: System..::.String
email address of new user
createdUserId
Type: System..::.Int32
The unique id of the created user
password
Type: System..::.String
unecrypted password of new user
address1
Type: System..::.String
First line of user's address
address2
Type: System..::.String
Second line of user's address
city
Type: System..::.String
city of user
state
Type: System..::.String
state of user
zip
Type: System..::.String
zip code of user
countryId
Type: System..::.Int32
The unique id of the country
workPhone
Type: System..::.String
work phone of user
homePhone
Type: System..::.String
Home phone of user.
cellPhone
Type: System..::.String
Cellular phone of new uwer
fax
Type: System..::.String
fax number of user
title
Type: System..::.String
title of new user
organization
Type: System..::.String
organization of new user
groupId
Type: System..::.Int32
Group ID of new usr.

See Also