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

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
Int64

TotalResults

Gets or sets the total number of search results.

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

Extension Methods

Extensions.Yield<T>(T)
In This Article
Back to top Generated by DocFX