10 references to ReadAsStreamAsync
Aspire.Hosting (3)
Dcp\DcpKubernetesClient.cs (3)
82Body = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false) 104var content = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false); 146var responseContent = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
370var errorContentStream = await response.Content.ReadAsStreamAsync(Context.RequestAborted);
Microsoft.AspNetCore.SpaServices.Extensions (1)
Proxying\SpaProxy.cs (1)
186using (var responseStream = await responseMessage.Content.ReadAsStreamAsync(cancellationToken))
Microsoft.DotNet.Internal.SymbolHelper (2)
SymbolPromotionHelper.cs (1)
217Stream result = await statusResponse.Content.ReadAsStreamAsync(ct);
SymbolUploadHelperFactory.cs (1)
160using (Stream zipStream = await response.Content.ReadAsStreamAsync(token).ConfigureAwait(false))
Microsoft.Extensions.Http.Diagnostics (2)
Logging\Internal\HttpRequestBodyReader.cs (1)
80var streamToReadFrom = await request.Content!.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
Logging\Internal\HttpResponseBodyReader.cs (1)
94Stream streamToReadFrom = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
System.Net.Http.Json (1)
System\Net\Http\Json\HttpContentJsonExtensions.netcoreapp.cs (1)
15return content.ReadAsStreamAsync(cancellationToken);