3 writes to HttpContext
Microsoft.AspNetCore.Hosting (3)
Internal\HostingApplication.cs (3)
75hostContext.HttpContext = httpContext; 86hostContext.HttpContext = httpContext; 114context.HttpContext = null;
11 references to HttpContext
Microsoft.AspNetCore.Hosting (11)
Internal\HostingApplication.cs (3)
71var defaultHttpContext = (DefaultHttpContext?)hostContext.HttpContext; 96return _application(context.HttpContext!); 102var httpContext = context.HttpContext!;
Internal\HostingApplicationDiagnostics.cs (2)
272var startLog = new HostingRequestStartingLog(context.HttpContext!); 308state: 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;