3 writes to HttpContext
Microsoft.AspNetCore.Hosting (3)
Internal\HostingApplication.cs (3)
75
hostContext.
HttpContext
= httpContext;
86
hostContext.
HttpContext
= httpContext;
114
context.
HttpContext
= null;
11 references to HttpContext
Microsoft.AspNetCore.Hosting (11)
Internal\HostingApplication.cs (3)
71
var defaultHttpContext = (DefaultHttpContext?)hostContext.
HttpContext
;
96
return _application(context.
HttpContext
!);
102
var httpContext = context.
HttpContext
!;
Internal\HostingApplicationDiagnostics.cs (2)
272
var startLog = new HostingRequestStartingLog(context.
HttpContext
!);
308
state: new HostingRequestUnhandledLog(context.
HttpContext
!),
Internal\HostingRequestFinishedLog.cs (6)
28
Debug.Assert(_context.
HttpContext
!= null);
30
var request = _context.
HttpContext
.Request;
31
var response = _context.
HttpContext
.Response;
62
Debug.Assert(_context.
HttpContext
!= null);
64
var request = _context.
HttpContext
.Request;
65
var response = _context.
HttpContext
.Response;