1 write to _pipe
Microsoft.Extensions.DotNetDeltaApplier.Tests (1)
DefaultHotReloadClient.cs (1)
62_pipe = new NamedPipeServerStream(_namedPipeName, PipeDirection.InOut, 1, PipeTransmissionMode.Byte, options);
17 references to _pipe
Microsoft.Extensions.DotNetDeltaApplier.Tests (17)
DefaultHotReloadClient.cs (17)
41if (_pipe != null) 47_pipe.Dispose(); 75await _pipe.WaitForConnectionAsync(cancellationToken); 79var capabilities = (await ClientInitializationResponse.ReadAsync(_pipe, cancellationToken)).Capabilities; 109Debug.Assert(_pipe != null); 115var type = (ResponseType)await _pipe.ReadByteAsync(cancellationToken); 125var notification = await HotReloadExceptionCreatedNotification.ReadAsync(_pipe, cancellationToken); 146[MemberNotNull(nameof(_pipe))] 153Debug.Assert(_pipe != null); 274Debug.Assert(_pipe != null); 318await _pipe.WriteAsync((byte)request.Type, cancellationToken); 319await request.WriteAsync(_pipe, cancellationToken); 320await _pipe.FlushAsync(cancellationToken); 334Debug.Assert(_pipe != null); 336var (success, log) = await UpdateResponse.ReadAsync(_pipe, cancellationToken); 357await _pipe.WriteAsync((byte)RequestType.InitialUpdatesCompleted, cancellationToken); 358await _pipe.FlushAsync(cancellationToken);