C# 클래스 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
파일 보기 프로젝트 열기: Tirasa/ConnId 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

SearchResult() 공개 메소드

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
리턴 System

SearchResult() 공개 메소드

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.
리턴 System