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

Get the user's id from the given the email Address in a particular group.

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

Syntax

C#
public int GetUserIdFromEmail(
	string emailAddress,
	bool isExternal
)
Visual Basic (Declaration)
Public Function GetUserIdFromEmail ( _
	emailAddress As String, _
	isExternal As Boolean _
) As Integer
Visual C++
public:
int GetUserIdFromEmail(
	String^ emailAddress, 
	bool isExternal
)

Parameters

emailAddress
Type: System..::.String
The email Address of the user for whom the id is to be obtained.
isExternal
Type: System..::.Boolean
Is the user an extranet user

Return Value

Id of the user if successful, -1 in case of an error.

See Also