IPage.cs 203 B

12345678910
  1. using System.Threading.Tasks;
  2. using Microsoft.AspNetCore.Http;
  3. namespace AspNetCoreDefaultHost.Pages
  4. {
  5. public interface IPage
  6. {
  7. Task ProcessRequestAsync(HttpContext context);
  8. }
  9. }