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