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)
30
return await
_pipe
.Writer.FlushAsync(cancellationToken);
47
_pipe
.Writer.Complete(new IOException(string.Empty, innerException));
59
_pipe
.Writer.Complete();
79
public override void CancelPendingFlush() =>
_pipe
.Writer.CancelPendingFlush();
84
_pipe
.Writer.Advance(bytes);
90
return
_pipe
.Writer.GetMemory(sizeHint);
96
return
_pipe
.Writer.GetSpan(sizeHint);
99
public override bool CanGetUnflushedBytes =>
_pipe
.Writer.CanGetUnflushedBytes;
101
public override long UnflushedBytes =>
_pipe
.Writer.UnflushedBytes;