3 writes to HttpContext
Microsoft.AspNetCore.Hosting (3)
Internal\HostingApplication.cs (3)
68
hostContext.
HttpContext
= httpContext;
79
hostContext.
HttpContext
= httpContext;
107
context.
HttpContext
= null;
11 references to HttpContext
Microsoft.AspNetCore.Hosting (11)
Internal\HostingApplication.cs (3)
64
var defaultHttpContext = (DefaultHttpContext?)hostContext.
HttpContext
;
89
return _application(context.
HttpContext
!);
95
var httpContext = context.
HttpContext
!;
Internal\HostingApplicationDiagnostics.cs (2)
255
var startLog = new HostingRequestStartingLog(context.
HttpContext
!);
291
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;