17 references to OutputStream
Aspire.Acquisition.Tests (1)
Scripts\Common\ScriptHostFixture.cs (1)
198
await ctx.Response.
OutputStream
.WriteAsync(content);
dotnet (3)
Commands\Test\MTP\IPC\HttpTestHostGateway.cs (3)
194
await response.
OutputStream
.WriteAsync(responseFrame, cancellationToken);
205
if (response.
OutputStream
.CanWrite)
329
await response.
OutputStream
.FlushAsync(cancellationToken);
dotnet-aot (3)
src\sdk\src\Cli\dotnet\Commands\Test\MTP\IPC\HttpTestHostGateway.cs (3)
194
await response.
OutputStream
.WriteAsync(responseFrame, cancellationToken);
205
if (response.
OutputStream
.CanWrite)
329
await response.
OutputStream
.FlushAsync(cancellationToken);
Infrastructure.Tests (5)
PowerShellScripts\DownloadNativeArchivesTests.cs (5)
587
ctx.Response.
OutputStream
.Write(bytes, 0, bytes.Length);
623
ctx.Response.
OutputStream
.Write(zipBytes, 0, prefixLength);
624
ctx.Response.
OutputStream
.Flush();
637
ctx.Response.
OutputStream
.Write(garbage, 0, garbage.Length);
645
ctx.Response.
OutputStream
.Write(bytes, 0, bytes.Length);
System.Net.HttpListener (5)
System\Net\Managed\HttpListenerResponse.Managed.cs (3)
127
OutputStream
.Write(responseEntity, 0, responseEntity.Length);
136
OutputStream
.BeginWrite(responseEntity, 0, responseEntity.Length, iar =>
141
thisRef.
OutputStream
.EndWrite(iar);
System\Net\Managed\ListenerAsyncResult.Managed.cs (1)
159
context.Response.
OutputStream
.Close();
System\Net\Managed\WebSockets\HttpWebSocket.Managed.cs (1)
55
HttpResponseStream responseStream = (response.
OutputStream
as HttpResponseStream)!;