ResourceManagementClientGetResourcesPaged Method (String, Int32, IEnumerableString, IEnumerableSortingAttribute) |
Uses the specified XPath filter to find matching objects in the resource management service, using a SearchResultPager to navigate through the result set
Namespace:
Lithnet.ResourceManagement.Client
Assembly:
Lithnet.ResourceManagement.Client (in Lithnet.ResourceManagement.Client.dll) Version: 1.0.6435.24467
Syntaxpublic SearchResultPager GetResourcesPaged(
string filter,
int pageSize,
IEnumerable<string> attributesToGet,
IEnumerable<SortingAttribute> sortAttributes
)
Public Function GetResourcesPaged (
filter As String,
pageSize As Integer,
attributesToGet As IEnumerable(Of String),
sortAttributes As IEnumerable(Of SortingAttribute)
) As SearchResultPager
public:
SearchResultPager^ GetResourcesPaged(
String^ filter,
int pageSize,
IEnumerable<String^>^ attributesToGet,
IEnumerable<SortingAttribute^>^ sortAttributes
)
Parameters
- filter
- Type: SystemString
The XPath filter defining the search criteria - pageSize
- Type: SystemInt32
The number of results to request from the server at a time - attributesToGet
- Type: System.Collections.GenericIEnumerableString
The list of attributes to retrieve - sortAttributes
- Type: System.Collections.GenericIEnumerableSortingAttribute
A collection of attribute names and sort directions to order the results with
Return Value
Type:
SearchResultPagerAn object that can be used to navigate through the search results
See Also