PRELIMINARY INFORMATION - SUBJECT TO CHANGE
This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Gets information from the data source for a user. Provides an option to update the last-activity date/time stamp for the user.

Namespace: Smartsite.Security.Authentication
Assembly:  Smartsite.Security (in Smartsite.Security.dll)

Syntax

C#Copy imageCopy Code
public override  GetUser(
	string username,
	bool userIsOnline
)
Visual Basic (Declaration)Copy imageCopy Code
Public Overrides Function GetUser ( _
	username As , _
	userIsOnline As  _
) As 

Parameters

username
String
The name of the user to get information for.
userIsOnline
Boolean
true to update the last-activity date/time stamp for the user; false to return user information without updating the last-activity date/time stamp for the user.

Return Value

A MembershipUser object populated with the specified user's information from the data source.

See Also

Advanced