Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created April 13, 2024 14:27
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/be1198bf3d56e29b0a9442d5c4a46da8 to your computer and use it in GitHub Desktop.
Save wullemsb/be1198bf3d56e29b0a9442d5c4a46da8 to your computer and use it in GitHub Desktop.
public class RequestResponseLoggingMiddleware
{
private readonly RequestDelegate _next;
private IApiLoggingService _apiLoggingService;
public RequestResponseLoggingMiddleware(RequestDelegate next, IApiLoggingService apiLoggingService)
{
_next = next;
_apiLoggingService = apiLoggingService;
}
public async Task Invoke(HttpContext httpContext)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment