6 instantiations of AnonymousPipeServerStream
aspire (2)
Processes\IsolatedProcess.Windows.cs (2)
68stdoutPipe = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable); 69stderrPipe = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable);
Aspire.Hosting.Browsers (2)
BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23var appToBrowser = new AnonymousPipeServerStream(PipeDirection.Out, HandleInheritability.Inheritable); 24var browserToApp = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable);
Aspire.Hosting.Browsers.Tests (2)
src\Aspire.Hosting.Browsers\BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23var appToBrowser = new AnonymousPipeServerStream(PipeDirection.Out, HandleInheritability.Inheritable); 24var browserToApp = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable);
10 references to AnonymousPipeServerStream
aspire (4)
Processes\IsolatedProcess.Windows.cs (4)
54AnonymousPipeServerStream? stdoutPipe = null; 55AnonymousPipeServerStream? stderrPipe = null; 135var capturedStdoutPipe = stdoutPipe; 136var capturedStderrPipe = stderrPipe;
Aspire.Hosting.Browsers (2)
BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23var appToBrowser = new AnonymousPipeServerStream(PipeDirection.Out, HandleInheritability.Inheritable); 24var browserToApp = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable);
Aspire.Hosting.Browsers.Tests (2)
src\Aspire.Hosting.Browsers\BrowserLogsPipeBrowserProcessLauncher.Windows.cs (2)
23var appToBrowser = new AnonymousPipeServerStream(PipeDirection.Out, HandleInheritability.Inheritable); 24var browserToApp = new AnonymousPipeServerStream(PipeDirection.In, HandleInheritability.Inheritable);
netstandard (1)
netstandard.cs (1)
951[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.Pipes.AnonymousPipeServerStream))]
System.Core (1)
System.Core.cs (1)
106[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.Pipes.AnonymousPipeServerStream))]