Show / Hide Table of Contents

Class SearchResponse

A response from a search of a repository.

Inheritance
object
SearchResponse
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
[DataContract(Namespace = "http://ns.colectica.com/2009/07/")]
public class SearchResponse

Properties

DatabaseTime

Gets or sets the time spent by the database to retrieve the search results.

Declaration
[DataMember]
public TimeSpan DatabaseTime { get; set; }
Property Value
Type Description
TimeSpan

NextResult

When using a LIMIT for paging, returns the next result id

Declaration
[DataMember]
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
[DataMember]
public TimeSpan RepositoryTime { get; set; }
Property Value
Type Description
TimeSpan

Results

Gets or sets the search results.

Declaration
[DataMember]
public Collection<SearchResult> Results { get; set; }
Property Value
Type Description
Collection<SearchResult>

ReturnedResults

Gets or sets the number of returned results.

Declaration
[DataMember]
public long ReturnedResults { get; set; }
Property Value
Type Description
long

TotalResults

Gets or sets the total number of search results.

Declaration
[DataMember]
public long TotalResults { get; set; }
Property Value
Type Description
long

Extension Methods

Extensions.Yield<T>(T)
In this article
Back to top Generated by DocFX