I currently have an input tag that will call my GetExtensions(string pathname) function but I'm trying to figure out how to only call this method after the textbox has been filled out.
<input type="text" class="form-control" name="fileSelector" id="fileSelector"
@bind="FileFilter.PathName"
@oninput="@(e => GetExtensions(e.Value?.ToString()))"/>
How can I pass the value of the textbox to the function only when the textbox has been filled out / focus has been lost?