Class AdvancedSearchResponse
A response from an advanced search of a repository.
Inherited Members
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
public class AdvancedSearchResponse
Properties
DatabaseTime
Gets or sets the time spent by the database to retrieve the search results.
Declaration
public TimeSpan DatabaseTime { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan |
ExecutionDetails
An informational message with additional execution details for some queries
Declaration
public string ExecutionDetails { get; set; }
Property Value
Type | Description |
---|---|
string |
NextResult
When using a LIMIT for paging, returns the next result id
Declaration
public long? NextResult { get; set; }
Property Value
Type | Description |
---|---|
long? |
RepositoryTime
Gets or sets the time spent by the repository to retrieve the search results.
Declaration
public TimeSpan RepositoryTime { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan |
Results
Gets or sets the search results.
Declaration
public Collection<AdvancedSearchResult> Results { get; set; }
Property Value
Type | Description |
---|---|
Collection<AdvancedSearchResult> |
ReturnedResults
Gets or sets the number of returned results.
Declaration
public long ReturnedResults { get; set; }
Property Value
Type | Description |
---|---|
long |