SearchSuggestion.Kind Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the type of suggestion.
public:
property SearchSuggestionKind Kind { SearchSuggestionKind get(); };
SearchSuggestionKind Kind();
public SearchSuggestionKind Kind { get; }
var searchSuggestionKind = searchSuggestion.kind;
Public ReadOnly Property Kind As SearchSuggestionKind
Property Value
The type of suggestion.
Remarks
If the suggestion was supplied by the system, it has a SearchSuggestionKind of Query. If the suggestion was supplied by the application, in response to a SuggestionsRequested event, the kind is determined by the method of SearchSuggestionCollection that was used to add the suggestion.
| SearchSuggestionCollection method | SearchSuggestionKind |
|---|---|
| AppendQuerySuggestion | Query |
| AppendQuerySuggestions | Query |
| AppendResultSuggestion | Result |
| AppendSearchSeparator | Separator |