2 writes to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
53
_nativeStream
= null;
248
_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;
212
_nativeStream
.Dispose();
243
[MemberNotNull(nameof(
_nativeStream
))]
246
if (
_nativeStream
== null)
688
_nativeStream
?.MarkDelegated();
693
_nativeStream
?.CancelLastWrite();
699
return
_nativeStream
.SendFileAsync(path, offset, count, cancel);
705
_nativeStream
.SwitchToOpaqueMode();