Show / Hide Table of Contents

Class Search.SearchInformationData

Metadata about a search operation.

Inheritance
System.Object
Search.SearchInformationData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CustomSearchAPI.v1.Data
Assembly: Google.Apis.CustomSearchAPI.v1.dll
Syntax
public class SearchInformationData

Properties

FormattedSearchTime

The time taken for the server to return search results, formatted according to locale style.

Declaration
[JsonProperty("formattedSearchTime")]
public virtual string FormattedSearchTime { get; set; }
Property Value
Type Description
System.String

FormattedTotalResults

The total number of search results, formatted according to locale style.

Declaration
[JsonProperty("formattedTotalResults")]
public virtual string FormattedTotalResults { get; set; }
Property Value
Type Description
System.String

SearchTime

The time taken for the server to return search results.

Declaration
[JsonProperty("searchTime")]
public virtual double? SearchTime { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

TotalResults

The total number of search results returned by the query.

Declaration
[JsonProperty("totalResults")]
public virtual string TotalResults { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top