Class SearchResponse
A response from a search of a repository.
Inheritance
System.Object
SearchResponse
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
public class SearchResponse : object
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 |
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<SearchResult> Results { get; set; }
Property Value
Type | Description |
---|---|
Collection<SearchResult> |
ReturnedResults
Gets or sets the number of returned results.
Declaration
public long ReturnedResults { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
TotalResults
Gets or sets the total number of search results.
Declaration
public long TotalResults { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |