C# Class Org.IdentityConnectors.Framework.Common.Objects.SearchResult

The final result of a query request returned after all connector objects matching the request have been returned. In addition to indicating that no more objects are to be returned by the search, the search result will contain page results state information if result paging has been enabled for the search.
Since 1.4
Exibir arquivo Open project: Tirasa/ConnId Class Usage Examples

Public Methods

Method Description
SearchResult ( ) : System

Creates a new search result with a {@code null} paged results cookie and no estimate of the total number of remaining results.

SearchResult ( string pagedResultsCookie, int remainingPagedResults ) : System

Creates a new search result with the provided paged results cookie and estimate of the total number of remaining results.

Method Details

SearchResult() public method

Creates a new search result with a {@code null} paged results cookie and no estimate of the total number of remaining results.
public SearchResult ( ) : System
return System

SearchResult() public method

Creates a new search result with the provided paged results cookie and estimate of the total number of remaining results.
public SearchResult ( string pagedResultsCookie, int remainingPagedResults ) : System
pagedResultsCookie string /// The opaque cookie which should be used with the next paged /// results search request, or {@code null} if paged results were /// not requested, or if there are not more pages to be returned.
remainingPagedResults int /// An estimate of the total number of remaining results to be /// returned in subsequent paged results search requests, or /// {@code -1} if paged results were not requested, or if the /// total number of remaining results is unknown.
return System