2 writes to _pipe
Microsoft.Extensions.DotNetDeltaApplier.Tests (2)
DefaultHotReloadClient.cs (2)
40
_pipe
= null;
54
_pipe
= new NamedPipeServerStream(_namedPipeName, PipeDirection.InOut, 1, PipeTransmissionMode.Byte, options);
13 references to _pipe
Microsoft.Extensions.DotNetDeltaApplier.Tests (13)
DefaultHotReloadClient.cs (13)
39
_pipe
?.Dispose();
67
await
_pipe
.WaitForConnectionAsync(cancellationToken);
71
var capabilities = (await ClientInitializationResponse.ReadAsync(
_pipe
, cancellationToken)).Capabilities;
97
[MemberNotNull(nameof(
_pipe
))]
104
if (
_pipe
== null)
220
Debug.Assert(
_pipe
!= null);
262
await
_pipe
.WriteAsync((byte)request.Type, cancellationToken);
263
await request.WriteAsync(
_pipe
, cancellationToken);
264
await
_pipe
.FlushAsync(cancellationToken);
271
Debug.Assert(
_pipe
!= null);
273
var (success, log) = await UpdateResponse.ReadAsync(
_pipe
, cancellationToken);
294
await
_pipe
.WriteAsync((byte)RequestType.InitialUpdatesCompleted, cancellationToken);
295
await
_pipe
.FlushAsync(cancellationToken);