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.
When overridden in a derived class, retrieves profile information for profiles in which the user name matches the specified user names.

Namespace: Smartsite.Core
Assembly:  Smartsite.Runtime (in Smartsite.Runtime.dll)

Syntax

C#Copy imageCopy Code
public override  FindProfilesByUserName(
	 authenticationOption,
	string usernameToMatch,
	int pageIndex,
	int pageSize,
	out int totalRecords
)
Visual Basic (Declaration)Copy imageCopy Code
Public Overrides Function FindProfilesByUserName ( _
	authenticationOption As , _
	usernameToMatch As , _
	pageIndex As Integer, _
	pageSize As Integer, _
	<> ByRef totalRecords As Integer _
) As 

Parameters

authenticationOption
ProfileAuthenticationOption
One of the ProfileAuthenticationOption values, specifying whether anonymous, authenticated, or both types of profiles are returned.
usernameToMatch
String
The user name to search for.
pageIndex
Int32
The index of the page of results to return.
pageSize
Int32
The size of the page of results to return.
totalRecords
Int32%
When this method returns, contains the total number of profiles.

Return Value

A ProfileInfoCollection containing user-profile information for profiles where the user name matches the supplied usernameToMatch parameter.

See Also

Advanced