ASP.Net Core Middleware

namespace Middleware
{
public class LoggerMiddleware
{
private readonly RequestDelegate next;
public LoggerMiddleware(RequestDelegate next)
{
this.next = next;
}
public async Task Invoke(HttpContext context )
{
Console.WriteLine("LoggerMiddleware");
Console.WriteLine(context.Request.Path);
await next.Invoke(context);
}
}
}
view raw 1.Middleware.cs hosted with ❤ by GitHub
public static class MiddlewareExtension
{
public static IApplicationBuilder LoggingExtension(this IApplicationBuilder app)
{
app.Use(async (context, next) =>
{
Console.WriteLine("LoggingExtension");
Console.WriteLine(context.Request.Path);
await next.Invoke(context);
});
return app;
}
}
app.MapControllers();
app.UseMiddleware<LoggerMiddleware>();
app.LoggingExtension();
app.Run();
view raw 3.Program.cs hosted with ❤ by GitHub
LoggerMiddleware
/WeatherForecast
LoggingExtension
/WeatherForecast
view raw 4.Output hosted with ❤ by GitHub

Yorumlar