2 writes to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
53
_nativeStream
= null;
245
_nativeStream
= new ResponseBody(RequestContext);
9 references to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (9)
RequestProcessing\Response.cs (9)
101
return
_nativeStream
;
105
internal bool BodyIsFinished =>
_nativeStream
?.IsDisposed ?? _responseState >= ResponseState.Closed;
209
_nativeStream
.Dispose();
240
[MemberNotNull(nameof(
_nativeStream
))]
243
if (
_nativeStream
== null)
685
_nativeStream
?.MarkDelegated();
690
_nativeStream
?.CancelLastWrite();
696
return
_nativeStream
.SendFileAsync(path, offset, count, cancel);
702
_nativeStream
.SwitchToOpaqueMode();