asp.net core 3.1 Synchronous operations are disallowed.Call FlushAsync or set AllowSynchronousIO to true instead

2355 단어
Action에서 해결 방법:
var syncIOFeature = HttpContext.Features.Get();
if (syncIOFeature != null)
{
    syncIOFeature.AllowSynchronousIO = true;
}

이렇게 할 수도 있다.
   public void ConfigureServices(IServiceCollection services)
        {
            // If using Kestrel:
            services.Configure(options =>
            {
                options.AllowSynchronousIO = true;
            });

            // If using IIS:
            services.Configure(options =>
            {
                options.AllowSynchronousIO = true;
            });
//..................
}

이렇게 할 수도 있다.
           Request.EnableBuffering();
            using (var reader = new StreamReader(Request.Body, encoding: Encoding.UTF8))
            {
                var body = reader.ReadToEndAsync();
                // Do some processing with body…
                // Reset the request body stream position so the next middleware can read it
                Request.Body.Position = 0;
            }

좋은 웹페이지 즐겨찾기