Skip to content

Instantly share code, notes, and snippets.

View ShaomingCode's full-sized avatar
🌴
On vacation

shaoming ShaomingCode

🌴
On vacation
View GitHub Profile
@mjrousos
mjrousos / BasicMiddleware.cs
Last active April 13, 2021 21:47
CustomMiddleware
// The middleware delegate to call after this one finishes processing
private readonly RequestDelegate _next;
public SOAPEndpointMiddleware(RequestDelegate next)
{
_next = next;
}