50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace RazorPagesWebSite
|
|
{
|
|
public class ModelHandlerTestModel : PageModel
|
|
{
|
|
public string MethodName { get; set; }
|
|
|
|
public IActionResult OnGet()
|
|
{
|
|
return Page();
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync()
|
|
{
|
|
await Task.CompletedTask;
|
|
MethodName = nameof(OnPostAsync);
|
|
return Page();
|
|
}
|
|
|
|
public async Task OnGetCustomer()
|
|
{
|
|
await Task.CompletedTask;
|
|
MethodName = nameof(OnGetCustomer);
|
|
}
|
|
|
|
public async Task OnGetViewCustomerAsync()
|
|
{
|
|
await Task.CompletedTask;
|
|
MethodName = nameof(OnGetViewCustomerAsync);
|
|
}
|
|
|
|
public async Task<CustomActionResult> OnPostCustomActionResult()
|
|
{
|
|
await Task.CompletedTask;
|
|
return new CustomActionResult();
|
|
}
|
|
|
|
public CustomActionResult OnGetCustomActionResultAsync()
|
|
{
|
|
return new CustomActionResult();
|
|
}
|
|
}
|
|
}
|