This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.MapControllers(); | |
app.UseMiddleware<LoggerMiddleware>(); | |
app.LoggingExtension(); | |
app.Run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LoggerMiddleware | |
/WeatherForecast | |
LoggingExtension | |
/WeatherForecast |
Yorumlar
Yorum Gönder