2 writes to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
53
_nativeStream
= null;
263
_nativeStream
= new ResponseBody(RequestContext);
9 references to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (9)
RequestProcessing\Response.cs (9)
113
return
_nativeStream
;
117
internal bool BodyIsFinished =>
_nativeStream
?.IsDisposed ?? _responseState >= ResponseState.Closed;
221
_nativeStream
.Dispose();
258
[MemberNotNull(nameof(
_nativeStream
))]
261
if (
_nativeStream
== null)
703
_nativeStream
?.MarkDelegated();
708
_nativeStream
?.CancelLastWrite();
714
return
_nativeStream
.SendFileAsync(path, offset, count, cancel);
720
_nativeStream
.SwitchToOpaqueMode();