1 write to _bodyOutput
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.cs (1)
314
_bodyOutput
= new OutputProducer(pipe);
16 references to _bodyOutput
Microsoft.AspNetCore.Server.IIS (16)
Core\IISHttpContext.cs (2)
475
_bodyOutput
.Complete();
562
await
_bodyOutput
.FlushAsync(default);
Core\IISHttpContext.FeatureCollection.cs (3)
245
_bodyOutput
.Complete();
258
_bodyOutput
.Complete();
266
_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();