Share via


SearchResultsAnswer Constructors

Definition

Overloads

SearchResultsAnswer()

Initializes a new instance of the SearchResultsAnswer class.

SearchResultsAnswer(String, String, IList<Query>, Nullable<Int64>)

Initializes a new instance of the SearchResultsAnswer class.

SearchResultsAnswer()

Initializes a new instance of the SearchResultsAnswer class.

public SearchResultsAnswer ();
Public Sub New ()

Applies to

SearchResultsAnswer(String, String, IList<Query>, Nullable<Int64>)

Initializes a new instance of the SearchResultsAnswer class.

public SearchResultsAnswer (string id = default, string webSearchUrl = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models.Query> followUpQueries = default, long? totalEstimatedMatches = default);
new Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models.SearchResultsAnswer : string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models.Query> * Nullable<int64> -> Microsoft.Azure.CognitiveServices.Search.NewsSearch.Models.SearchResultsAnswer
Public Sub New (Optional id As String = Nothing, Optional webSearchUrl As String = Nothing, Optional followUpQueries As IList(Of Query) = Nothing, Optional totalEstimatedMatches As Nullable(Of Long) = Nothing)

Parameters

id
String

A String identifier.

webSearchUrl
String

The URL To Bing's search result for this item.

followUpQueries
IList<Query>
totalEstimatedMatches
Nullable<Int64>

The estimated number of webpages that are relevant to the query. Use this number along with the count and offset query parameters to page the results.

Applies to