AddSiteAuthenticatedUser Method
Description
Adds site user with credentials for LDAP authentication.
Syntax
Visual Basic
Public Sub AddSiteAuthenticatedUser( _
   ByVal UserName As String, _
   ByVal FullName As String, _
   ByVal Email As String, _
   ByVal Description As String, _
   ByVal Phone As String, _
   ByVal DomainAuthentication As String, _
   ByVal Group As Variant _
) 
Parameters
UserName
The name of the user to be added.
FullName
The full name of the user to be added.
Email
The e-mail address of the user to be added.
Description
A description of the user to be added
Phone
The phone number of the user to be added.
DomainAuthentication
The identifier of the user in an external User directory, for example the distinguished name in LDAP.
Group
The group to which the added user belongs. Pass either the group name or a CustomizationUsersGroup Object.
Remarks
This method creates a CustomizationUser object and adds it to the site. The new user is only memory-resident until Customization.Commit is called.
See Also