@page "/Test" @using Majorsoft.Blazor.Components.Debounce

Test

Notified value: @_notifiedInputValue
Actual value: @_debounceInputValue
@code { //DebounceInput private string _debounceInputValue = ""; private string _notifiedInputValue = ""; private int _debounceMilisec = 200; private int _minCharsLength = 2; private bool _forceNotifyByEnter = true; private bool _forceNotifyOnBlur = true; private DebounceInput input1; }