> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# StateHasChangedDelayMode

> Defines how BlazorObservables are monitored to reduce the number of times StateHasChanged is fired.

## Definition

**Assembly:** CloudNimble.BlazorEssentials.dll

**Namespace:** CloudNimble.BlazorEssentials

**Inheritance:** System.Enum

## Syntax

```csharp theme={"dark"}
CloudNimble.BlazorEssentials.StateHasChangedDelayMode
```

## Summary

Defines how BlazorObservables are monitored to reduce the number of times StateHasChanged is fired.

## Values

| Name       | Value | Description                                                           |
| ---------- | ----- | --------------------------------------------------------------------- |
| `Off`      | 0     | Does not reduce the number of times StateHasChanged is called.        |
| `Debounce` | 1     | Only fire StateHasChanged if it hasn't been called in X milliseconds. |
| `Throttle` | 2     | Only fire StateHasChanged once every X milliseconds.                  |
