1 write to _bodyOutput
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.cs (1)
307
_bodyOutput
= new OutputProducer(pipe);
16 references to _bodyOutput
Microsoft.AspNetCore.Server.IIS (16)
Core\IISHttpContext.cs (2)
466
_bodyOutput
.Complete();
553
await
_bodyOutput
.FlushAsync(default);
Core\IISHttpContext.FeatureCollection.cs (3)
244
_bodyOutput
.Complete();
257
_bodyOutput
.Complete();
265
_bodyOutput
.Complete();
Core\IISHttpContext.IO.cs (10)
74
await
_bodyOutput
.WriteAsync(memory, cancellationToken);
77
return !HasResponseStarted ? WriteFirstAsync() :
_bodyOutput
.WriteAsync(memory, cancellationToken);
90
await
_bodyOutput
.FlushAsync(cancellationToken);
93
return !HasResponseStarted ? FlushFirstAsync() :
_bodyOutput
.FlushAsync(cancellationToken);
163
var result = await
_bodyOutput
.Reader.ReadAsync();
169
if (
_bodyOutput
.Aborted)
206
_bodyOutput
.Reader.AdvanceTo(buffer.End);
222
_bodyOutput
.Reader.Complete(error);
251
_bodyOutput
.Complete();
290
_bodyOutput
.Abort();
Core\IISHttpContextOfT.cs (1)
100
_bodyOutput
.Complete();