You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
659 B
C#
21 lines
659 B
C#
using System.IO;
|
|
using EntrustSettle.Common.Http;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Http.Features;
|
|
|
|
namespace EntrustSettle.Extensions.Middlewares;
|
|
|
|
public static class FluentResponseBodyMiddleware
|
|
{
|
|
public static IApplicationBuilder UseResponseBodyRead(this IApplicationBuilder app)
|
|
{
|
|
return app.Use(async (context, next) =>
|
|
{
|
|
await using var swapStream = new FluentHttpResponseStream(context!.Features!.Get<IHttpResponseBodyFeature>()!,
|
|
context!.Features!.Get<IHttpBodyControlFeature>()!);
|
|
context.Response.Body = swapStream;
|
|
await next(context);
|
|
context.Response.Body.Seek(0, SeekOrigin.Begin);
|
|
});
|
|
}
|
|
} |