public interface BingAutoSuggestSearch
| Modifier and Type | Interface and Description |
|---|---|
static interface |
BingAutoSuggestSearch.BingAutoSuggestSearchAutoSuggestDefinition
The entirety of autoSuggest definition.
|
static interface |
BingAutoSuggestSearch.BingAutoSuggestSearchAutoSuggestDefinitionStages
Grouping of autoSuggest definition stages.
|
| Modifier and Type | Method and Description |
|---|---|
BingAutoSuggestSearch.BingAutoSuggestSearchAutoSuggestDefinitionStages.WithQuery |
autoSuggest()
The AutoSuggest API lets you send a search query to Bing and get back a list of suggestions.
|
Suggestions |
autoSuggest(String query,
AutoSuggestOptionalParameter autoSuggestOptionalParameter)
Deprecated.
|
rx.Observable<Suggestions> |
autoSuggestAsync(String query,
AutoSuggestOptionalParameter autoSuggestOptionalParameter)
Deprecated.
|
@Deprecated Suggestions autoSuggest(String query, AutoSuggestOptionalParameter autoSuggestOptionalParameter)
query - The user's search term.autoSuggestOptionalParameter - the object representing the optional parameters to be set before calling this APIIllegalArgumentException - thrown if parameters fail the validationErrorResponseException - thrown if the request is rejected by serverRuntimeException - all other wrapped checked exceptions if the request fails to be sent@Deprecated rx.Observable<Suggestions> autoSuggestAsync(String query, AutoSuggestOptionalParameter autoSuggestOptionalParameter)
query - The user's search term.autoSuggestOptionalParameter - the object representing the optional parameters to be set before calling this APIIllegalArgumentException - thrown if parameters fail the validationBingAutoSuggestSearch.BingAutoSuggestSearchAutoSuggestDefinitionStages.WithQuery autoSuggest()
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/