This version of Unity is unsupported.

SearchService.OrderedProviders

public static IEnumerable<SearchProvider> OrderedProviders;

Description

Returns the list of search providers sorted by priority.

// 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})");