3 writes to HttpContext
Microsoft.AspNetCore.Hosting (3)
Internal\HostingApplication.cs (3)
82
hostContext.
HttpContext
= httpContext;
93
hostContext.
HttpContext
= httpContext;
121
context.
HttpContext
= null;
11 references to HttpContext
Microsoft.AspNetCore.Hosting (11)
Internal\HostingApplication.cs (3)
78
var defaultHttpContext = (DefaultHttpContext?)hostContext.
HttpContext
;
103
return _application(context.
HttpContext
!);
109
var httpContext = context.
HttpContext
!;
Internal\HostingApplicationDiagnostics.cs (2)
287
var startLog = new HostingRequestStartingLog(context.
HttpContext
!);
323
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;