Version: 2022.3
언어: 한국어

ISearchList

interface in UnityEditor.Search

매뉴얼로 전환

설명

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;
}

변수

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 함수

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.