@page "/bind-get-set" @using Microsoft.AspNetCore.Components.Forms

Bind Get Set Examples

Elements

Components

@code { private string text = ""; private void Set(string value) { text = value; } private Task SetAsync(string value) { text = value; return Task.CompletedTask; } }