Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created April 13, 2024 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wullemsb/88c8ab643fd618e49c799fa451c70795 to your computer and use it in GitHub Desktop.
Save wullemsb/88c8ab643fd618e49c799fa451c70795 to your computer and use it in GitHub Desktop.
public class RequestResponseLoggingMiddleware
{
private readonly RequestDelegate _next;
public RequestResponseLoggingMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext httpContext, IApiLoggingService apiLoggingService)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment