# Providers

> Returns the list of all search providers (active or not).

## Definition

* **Type:** Property
* **Namespace:** [UnityEditor.Search](/engine/6000.6/script-reference/unityeditor/search.md)
* **Assembly:** UnityEditor

```csharp
public static List<SearchProvider> Providers { get; }
```

### Examples

```csharp
// Print special search providers
foreach (var provider in SearchService.Providers.Where(p => p.isExplicitProvider))
    Debug.Log($"Special Search Provider {provider.name} ({provider.id})");
```
