Logs an existing CContact user into the system by ContactId and password.

Namespace:  Asi.iBO.ContactManagement
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public static CContactUser LoginByContactId(
	string contactId,
	string clearPassword
)
Visual Basic (Declaration)
Public Shared Function LoginByContactId ( _
	contactId As String, _
	clearPassword As String _
) As CContactUser
Visual C++
public:
static CContactUser^ LoginByContactId(
	String^ contactId, 
	String^ clearPassword
)

Parameters

contactId
Type: System..::.String
The key to the CContact to be logged in.
clearPassword
Type: System..::.String
The password for the contact's account, unencrypted.

Return Value

The logged in CContactUser.

See Also