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