Gets a collection of all the users in the repository in pages of data.

Namespace:  Novalys.VisualGuard.Security.WebForm
Assembly:  Novalys.VisualGuard.Security.WebForm (in Novalys.VisualGuard.Security.WebForm.dll) Version: 3.2.912.1 (3.2.912.01)

Syntax

C#
public override MembershipUserCollection GetAllUsers(
	int pageIndex,
	int pageSize,
	out int totalRecords
)
Visual Basic (Declaration)
Public Overrides Function GetAllUsers ( _
	pageIndex As Integer, _
	pageSize As Integer, _
	<OutAttribute> ByRef totalRecords As Integer _
) As MembershipUserCollection

Parameters

pageIndex
Type: System..::.Int32
The index of the page of results to return. Use 0 to indicate the first page.
pageSize
Type: System..::.Int32
The size of the page of results to return. pageIndex is zero-based.
totalRecords
Type: System..::.Int32 %
The total number of users.

Return Value

A MembershipUserCollection of MembershipUser objects representing all the users in the repository.

See Also