2 writes to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
52
_nativeStream
= null;
247
_nativeStream
= new ResponseBody(RequestContext);
9 references to _nativeStream
Microsoft.AspNetCore.Server.HttpSys (9)
RequestProcessing\Response.cs (9)
100
return
_nativeStream
;
104
internal bool BodyIsFinished =>
_nativeStream
?.IsDisposed ?? _responseState >= ResponseState.Closed;
211
_nativeStream
.Dispose();
242
[MemberNotNull(nameof(
_nativeStream
))]
245
if (
_nativeStream
== null)
687
_nativeStream
?.MarkDelegated();
692
_nativeStream
?.CancelLastWrite();
698
return
_nativeStream
.SendFileAsync(path, offset, count, cancel);
704
_nativeStream
.SwitchToOpaqueMode();