SingleSignOnMembershipProvider.GetAllUsers Method (Int32, Int32, Int32)
This method supports the AD FS infrastructure and is not intended to be used directly from your code.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public override MembershipUserCollection GetAllUsers(
int pageIndex,
int pageSize,
out int totalRecords
)
public:
virtual MembershipUserCollection^ GetAllUsers(
int pageIndex,
int pageSize,
[OutAttribute] int% totalRecords
) override
override GetAllUsers :
pageIndex:int *
pageSize:int *
totalRecords:int byref -> MembershipUserCollection
Public Overrides Function GetAllUsers (
pageIndex As Integer,
pageSize As Integer,
<OutAttribute> ByRef totalRecords As Integer
) As MembershipUserCollection
Parameters
pageIndex
Type: System.Int32The index of the page of results to return.
pageSize
Type: System.Int32The size of the page of results to return.
totalRecords
Type: System.Int32The total number of matched users.
Return Value
Type: System.Web.Security.MembershipUserCollection
A collection of all the users.
See Also
SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace
Return to top