Version: 2020.2
언어: 한국어
public IEnumerable<T> Search (SearchService.ISearchContext context, string query, Action<IEnumerable<T>> asyncItemsReceived);

파라미터

context The search context.
query The query string used for the search.
asyncItemsReceived Callback used to return results asynchronously.

반환

IEnumerable<T> The initial search results, if any are available. If you want to return results asynchronously, and no results are available yet, return an empty list instead. If you return null, then Unity uses the default implementation.

설명

This function returns an IEnumerable of items that satisfy the search query.

You can return items synchronously and asynchronously with this function. To return results synchronously, use the returned IEnumerable. To return results asynchronously, use the asyncItemsReceived callback that takes an IEnumerable as a parameter.

To only return results asynchronously, return an empty IEnumerable. If you return null, the default Project search is used instead.