1 write to _pipe
Microsoft.AspNetCore.TestHost (1)
ResponseBodyPipeWriter.cs (1)
19_pipe = pipe ?? throw new ArgumentNullException(nameof(pipe));
9 references to _pipe
Microsoft.AspNetCore.TestHost (9)
ResponseBodyPipeWriter.cs (9)
30return await _pipe.Writer.FlushAsync(cancellationToken); 47_pipe.Writer.Complete(new IOException(string.Empty, innerException)); 59_pipe.Writer.Complete(); 79public override void CancelPendingFlush() => _pipe.Writer.CancelPendingFlush(); 84_pipe.Writer.Advance(bytes); 90return _pipe.Writer.GetMemory(sizeHint); 96return _pipe.Writer.GetSpan(sizeHint); 99public override bool CanGetUnflushedBytes => _pipe.Writer.CanGetUnflushedBytes; 101public override long UnflushedBytes => _pipe.Writer.UnflushedBytes;