Version: 2021.2
언어: 한국어

SearchService

class in UnityEditor.Search

매뉴얼로 전환

설명

Principal Search API to initiate searches and fetch results.

Make sure to check SearchService.Request for a complete list of all the different ways to execute a search request.

using System.Linq;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Search;
using UnityEngine;

static class Example_SearchService
{
    [MenuItem("Examples/SearchService/Class")]
    public static void Run()
    {
        void OnSearchCompleted(SearchContext context, IList<SearchItem> items)
        {
            foreach (var item in items)
                Debug.Log(item);
        }

        SearchService.Request("*.cs", OnSearchCompleted);
    }

    [MenuItem("Examples/SearchService/Providers")]
    public static void RunProviders()
    {
        // Print special search providers
        foreach (var provider in SearchService.Providers.Where(p => p.isExplicitProvider))
            Debug.Log($"Special Search Provider {provider.name} ({provider.id})");
    }

    [MenuItem("Examples/SearchService/OrderedProviders")]
    public static void RunOrderedProviders()
    {
        // Print providers by their search priority when a query is executed.
        foreach (var provider in SearchService.OrderedProviders)
            Debug.Log($"[{provider.priority}] {provider.name} ({provider.id})");
    }
}

정적 변수

OrderedProvidersReturns the list of search providers sorted by priority.
ProvidersReturns the list of all search providers (active or not).

정적 함수

CreateContextCreates context from a list of search provider IDs.
CreateIndexCreate a new search index.
GetActionReturns the search action for a given search provider and search action ID.
GetItemsInitiates a search and returns all search items matching the search context. Other items can be found later using asynchronous searches.
GetProviderReturns the data of a search provider given its ID.
IsIndexReadyIndicates if a search index is ready to be used.
RefreshClears everything and reloads all search providers. Use with care. Useful for unit tests.
RefreshWindowsRefresh all currently opened Search windows.
RequestExecutes a search request that will fetch search results asynchronously.
SetActiveActivates or deactivates a search provider. Call Refresh after this to take effect on the next search.
ShowContextualOpen the search window using a specific context (activating specific filters).
ShowPickerOpen a search item picker window.
ShowWindowCreates a new search window.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961