I configured TLS mutual configuration for Azure app as describred here using asp.net framework 4.7.2, but the problem that in global.asax application_start my HttpContext is not available i tried both : the solution in link :
NameValueCollection headers = base.Request.Headers;
and the static Httpcontext
HttpContext.Current.Request.Headers
both returns that HttpContext is not available. how can i call HttpContext on global.asax application_start or is there a workaround to do ? my application is hosted on azure.