LanguageEnglish
  • C#

SearchRequest

class in UnityEditor.PackageManager.Requests

/

Inherits from:PackageManager.Requests.Request_1

Switch to Manual

Description

Represents an asynchronous request to find a package.

The PackageManager Client class returns a SearchRequest instance when you call the Client.Search method to find a package or the Client.SearchAll method to find all discoverable packages. Use this object to determine when the request is complete and to access the result.

After the request completes, you can retrieve the array of PackageInfo instances from the Result property.

using UnityEngine;
using UnityEditor.PackageManager;
using UnityEditor.PackageManager.Requests;
[ExecuteInEditMode]
public class PackageManagerSearchExample : MonoBehaviour
{
    SearchRequest m_SearchRequest;
    
    void Start()
    {
        Debug.Log("SearchRequest example...");
        m_SearchRequest = Client.Search("com.unity.textmeshpro");
    }

void Update() { if (m_SearchRequest != null && m_SearchRequest.IsCompleted) { if (m_SearchRequest.Status == StatusCode.Success) { var packages = m_SearchRequest.Result; if (packages.Length > 0) { var package = packages[0]; Debug.Log($"Found package: {package.name}" + $"\nVersion: {package.version}" + $"\nDescription: {package.description}"); } else { Debug.Log("No packages found"); } } else { Debug.LogError($"Search failed: {m_SearchRequest.Error.message}"); } m_SearchRequest = null; } } }

Properties

PackageIdOrNameThe package id or name used in this search operation.

Inherited Members

Properties

ErrorThe error returned by the request, if any.
IsCompletedWhether the request is complete.
StatusThe request status.
ResultA property that provides access to the result of a completed Package Manager request operation.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961