1 write to _namedPipeServerStream
dotnet (1)
Commands\Test\MTP\IPC\NamedPipeServer.cs (1)
34
_namedPipeServerStream
= new NamedPipeServerStream(
6 references to _namedPipeServerStream
dotnet (6)
Commands\Test\MTP\IPC\NamedPipeServer.cs (6)
52
await
_namedPipeServerStream
.WaitForConnectionAsync(cancellationToken);
91
? await
_namedPipeServerStream
.ReadAtLeastAsync(_readBuffer, minimumBytes: sizeof(int), throwOnEndOfStream: false, cancellationToken)
92
: await
_namedPipeServerStream
.ReadAsync(_readBuffer, cancellationToken);
197
await
_namedPipeServerStream
.WriteAsync(_messageBuffer.GetBuffer().AsMemory(0, (int)_messageBuffer.Position), cancellationToken);
198
await
_namedPipeServerStream
.FlushAsync(cancellationToken);
250
_namedPipeServerStream
.Dispose();