Show / Hide Table of Contents

Class AdvancedSearchResponse

A response from an advanced search of a repository.

Inheritance
object
AdvancedSearchResponse
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
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

Extension Methods

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