danhulet

Results 1 comments of danhulet

I was able to create a middleware that can enable modifying the body ```c# app.MapReverseProxy(x => { x.Use(async (context, next) => { var canHaveBodyFeature = context.Features.Get(); if (HttpMethods.IsPost(context.Request.Method) && context.Request.ContentLength...