8 references to LoadIntoBufferAsync
Microsoft.AspNetCore.ResponseCompression.Tests (2)
ResponseCompressionMiddlewareTest.cs (2)
659await response.Content.LoadIntoBufferAsync(); 704await response.Content.LoadIntoBufferAsync();
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (4)
Listener\ResponseBodyTests.cs (2)
204await Assert.ThrowsAsync<HttpRequestException>(() => response.Content.LoadIntoBufferAsync()); 226await Assert.ThrowsAsync<HttpRequestException>(() => response.Content.LoadIntoBufferAsync());
ResponseSendFileTests.cs (2)
616var bufferTask = response.Content.LoadIntoBufferAsync(); 665var bufferTask = response.Content.LoadIntoBufferAsync();
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
LoggingHandler.cs (1)
37await response.Content.LoadIntoBufferAsync();
System.Net.Http (1)
System\Net\Http\HttpContent.cs (1)
559return WaitAndReturnAsync(LoadIntoBufferAsync(), this, s => (Stream)s._bufferedContent!);