Version: 2021.1
LanguageEnglish
  • C#

ISearchList

interface in UnityEditor.Search

Suggest a change

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.

Close

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.

Close

Cancel

Description

A search list represents a collection of search results that is filled.

public static IEnumerable<SearchItem> YieldResults()
{
    ISearchList results = SearchService.Request("*.cs");
    foreach (var result in results)
        yield return result;
}

Properties

contextAny valid search context that is used to track async search requests. It can be null.
pendingIndicates if the search request is still running and might return more results asynchronously.

Public Methods

AddItemsAdd new items to the search list.
FetchYields search items until the search query is finished.
GetRangeReturn a subset of items.
InsertRangeInsert new search items in the current list.
SelectEnumerate search items and transform them while they are being fetched.