# providerIds

> A list of Search Provider IDs that will be used to create the search context.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.Search](/engine/6000.5/script-reference/unityengine/search.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public string[] providerIds { get; }
```

### Examples

```csharp
const string assetProviders = "adb;asset";

[SearchContext("t:prefab", "expression;asset;scene", SearchViewFlags.GridView)]
public GameObject prefab;
```
