@page
@functions {
public string Source { get; set; }
public void OnGet()
{
Source = "OnGet";
}
public void OnOptions(string message)
Source = "OnOptions";
Hello from @Source!