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