We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30370c6 commit 7b47eaeCopy full SHA for 7b47eae
src/PSParallelPipeline/PSOutputStreams.cs
@@ -7,9 +7,9 @@ namespace PSParallelPipeline;
7
8
internal sealed class PSOutputStreams : IDisposable
9
{
10
- internal BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }
+ private BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }
11
12
- internal CancellationToken Token { get => _worker.Token; }
+ private CancellationToken Token { get => _worker.Token; }
13
14
internal PSDataCollection<PSObject> Success { get; } = [];
15
0 commit comments