6 references to AnonymousPipeServerStream
aspire (2)
Processes\IsolatedProcess.Windows.cs (2)
68
stdoutPipe = new
AnonymousPipeServerStream
(PipeDirection.In, HandleInheritability.Inheritable);
69
stderrPipe = new
AnonymousPipeServerStream
(PipeDirection.In, HandleInheritability.Inheritable);
Aspire.Hosting.Browsers (2)
BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23
var appToBrowser = new
AnonymousPipeServerStream
(PipeDirection.Out, HandleInheritability.Inheritable);
24
var browserToApp = new
AnonymousPipeServerStream
(PipeDirection.In, HandleInheritability.Inheritable);
Aspire.Hosting.Browsers.Tests (2)
src\Aspire.Hosting.Browsers\BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23
var appToBrowser = new
AnonymousPipeServerStream
(PipeDirection.Out, HandleInheritability.Inheritable);
24
var browserToApp = new
AnonymousPipeServerStream
(PipeDirection.In, HandleInheritability.Inheritable);