namespace Test.UI.Components.Pages { public partial class Aedifica { protected string currText = "..."; private async Task SaveText(string newText) { currText = newText; await Task.Delay(100); } } }