You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only try to get the application context if the request property is
found, otherwise fallback to `HttpContext.Current` as a last ditch
attempt at getting a context which could also return `null`.
if (!request.Properties.TryGetValue("MS_HttpContext", out value))
return null;
Always returns null because there is no "MS_HttpContext" property available.
The text was updated successfully, but these errors were encountered: