22 lines
581 B
C#
22 lines
581 B
C#
|
|
using Microsoft.AspNetCore.Mvc.Filters;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Waste.Web.Entry.Handler
|
|||
|
|
{
|
|||
|
|
public class ZECarAsyncPageFilter : IAsyncPageFilter
|
|||
|
|
{
|
|||
|
|
public async Task OnPageHandlerExecutionAsync(PageHandlerExecutingContext context, PageHandlerExecutionDelegate next)
|
|||
|
|
{
|
|||
|
|
await next.Invoke();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public Task OnPageHandlerSelectionAsync(PageHandlerSelectedContext context)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|