blazor-lumen-boilerplate

Native APIs

How-to guides for accessing native browser APIs.

Prompt

string Reponse = await JSRuntime.InvokeAsync<string>("Prompt", "Prompt label text.", "Optional placeholder value");

Confirm

bool Reponse = await JSRuntime.InvokeAsync<bool>("Confirm", "Confirm label text.");

Focus Element

JSRuntime.InvokeVoidAsync("FocusElement", ".query-selector-string");

Document Title Override

JSRuntime.InvokeVoidAsync("SetTitle", "Custom document title");