1 write to _bodyInputPipe
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.cs (1)
493
_bodyInputPipe
= new Pipe(new PipeOptions(_memoryPool, readerScheduler: PipeScheduler.ThreadPool, minimumSegmentSize: MinAllocBufferSize));
8 references to _bodyInputPipe
Microsoft.AspNetCore.Server.IIS (8)
Core\IISHttpContext.IO.cs (7)
30
var result = await
_bodyInputPipe
!.Reader.ReadAsync(cancellationToken);
48
_bodyInputPipe
.Reader.AdvanceTo(readableBuffer.End, readableBuffer.End);
60
return
_bodyInputPipe
!.Reader.CopyToAsync(destination, cancellationToken);
103
var memory =
_bodyInputPipe
!.Writer.GetMemory();
117
_bodyInputPipe
.Writer.Advance(read);
125
var result = await
_bodyInputPipe
.Writer.FlushAsync();
151
_bodyInputPipe
!.Writer.Complete(error);
Core\IISHttpContextOfT.cs (1)
101
_bodyInputPipe
?.Reader.Complete();