Unity - Scripting API: Search.SearchService.CreateContext
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Declaration
public static SearchContext CreateContext(string searchText);
Declaration
public static SearchContext CreateContext(IEnumerable<string> providerIds, string searchText, SearchFlags flags);
Declaration
public static SearchContext CreateContext(IEnumerable<SearchProvider> providers, string searchText, SearchFlags flags);
Parameters
| Parameter | Description |
|---|---|
| searchText | Search Query. |
| provider | Search provider (This search provider does not need to be active or registered). |
| providerId | Unique search provider ID string (i.e. asset, scene, find, etc.) |
| providerIds | List of search provider IDs. |
| providers | List of search providers. |
| flags | Options defining how the query is performed. |
Returns
SearchContext Returns a new SearchContext.
Description
Creates context from a list of search provider IDs.