3 writes to HttpContext
Microsoft.AspNetCore.Hosting (3)
Internal\HostingApplication.cs (3)
82hostContext.HttpContext = httpContext; 93hostContext.HttpContext = httpContext; 121context.HttpContext = null;
11 references to HttpContext
Microsoft.AspNetCore.Hosting (11)
Internal\HostingApplication.cs (3)
78var defaultHttpContext = (DefaultHttpContext?)hostContext.HttpContext; 103return _application(context.HttpContext!); 109var httpContext = context.HttpContext!;
Internal\HostingApplicationDiagnostics.cs (2)
287var startLog = new HostingRequestStartingLog(context.HttpContext!); 323state: new HostingRequestUnhandledLog(context.HttpContext!),
Internal\HostingRequestFinishedLog.cs (6)
28Debug.Assert(_context.HttpContext != null); 30var request = _context.HttpContext.Request; 31var response = _context.HttpContext.Response; 62Debug.Assert(_context.HttpContext != null); 64var request = _context.HttpContext.Request; 65var response = _context.HttpContext.Response;