Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 405 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 405 Bytes

Blazor Debounce

Example of using a simpler way to handle "debouncing" input in a Blazor WebAssembly app.

CompletionTemplate provides a basic template for the input.

AutoComplete simply makes API calls on every keypress.

TimerComplete uses a timer to debounce by not fetching until 300ms of inactivity is detected.

DebounceComplete uses a simple queue flag to fetch until no longer required.