Httpcontext получает null внутри функции await
Ниже приведен пример использования async await.
когда нам выполнить любой код внутри ждут свойство HttpContext становится нулем
Что я уже пробовал:
//Here is the sample of Async Function in which i cant get Httpcontext public async Task<string> Get(int id) { var x = HttpContext.Current; if (x == null) { // not thrown throw new ArgumentException("HttpContext.Current is null"); } await Task.Run(() => { GetRealId(); }); return "value"; } //HttpContext Getting null here.. public void GetRealId() { var r = HttpContext.Current; }