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: 2017.0.101.17 (2017.0.101.17)

Syntax

C#
public override MembershipUserCollection GetAllUsers(
	int pageIndex,
	int pageSize,
	out int totalRecords
)
Visual Basic
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

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

See Also