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(); 67await _pipe.WaitForConnectionAsync(cancellationToken); 71var capabilities = (await ClientInitializationResponse.ReadAsync(_pipe, cancellationToken)).Capabilities; 97[MemberNotNull(nameof(_pipe))] 104if (_pipe == null) 220Debug.Assert(_pipe != null); 262await _pipe.WriteAsync((byte)request.Type, cancellationToken); 263await request.WriteAsync(_pipe, cancellationToken); 264await _pipe.FlushAsync(cancellationToken); 271Debug.Assert(_pipe != null); 273var (success, log) = await UpdateResponse.ReadAsync(_pipe, cancellationToken); 294await _pipe.WriteAsync((byte)RequestType.InitialUpdatesCompleted, cancellationToken); 295await _pipe.FlushAsync(cancellationToken);