# IndexingOptions

> Use Indexing options to specify the contents of your search index.

## Definition

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

```csharp
[Flags]
public enum IndexingOptions : byte
```

## Fields

| Value                                                                                              | Description                                                                                |
| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ |
| [All](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/all.md)                   | Apply all indexing options.                                                                |
| [Dependencies](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/dependencies.md) | Include Asset dependencies in your index.                                                  |
| [Extended](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/extended.md)         | Include extended information in your index such as sub objects in Scene and Prefab Assets. |
| [Keep](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/keep.md)                 | Use this option to save the created index as an Asset file.                                |
| [None](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/none.md)                 | Do not include additional indexing options.                                                |
| [Properties](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/properties.md)     | Include Asset serialized properties in your index.                                         |
| [Temporary](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/temporary.md)       | Save the search index to a temporary folder that is not managed by Unity.                  |
| [Types](/engine/6000.5/script-reference/unityeditor/search/indexingoptions/types.md)               | Include additional types of information in your Asset index.                               |
