# EnumerateAll()

> Enumerates all records stored in the PropertyDatabase

## Definition

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

```csharp
IEnumerable<IPropertyDatabaseRecord> EnumerateAll()
```

### Returns

| Type                                                                                                                     | Description                        |
| ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------- |
| [IEnumerable\<IPropertyDatabaseRecord>](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1) | An enumeration of all the records. |

### Remarks

This function returns a sorted set of all the records store in the property database, volatile or not, sorted by their keys.

Additional Resources: [IPropertyDatabaseRecord](/engine/6000.5/script-reference/unityeditor/search/ipropertydatabaserecord.md).
