我有以下代码用于为Http2.0客户端启用PushPromise。
public static IHtmlString StyleSheet(this HtmlHelper htmlHelper, string contentPath)
{
UrlHelper urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);
htmlHelper.ViewContext.RequestContext.HttpContext.Response.PushPromise(contentPath);
TagBuilder linkTagBuilder = new TagBuilder("link");
linkTagBuilder.Attributes.Add("rel", "stylesheet");
linkTagBuilder.Attributes.Add("href", urlHelper.Content(contentPath));
return new HtmlString(linkTagBuilder.ToString());
}
直到上周五,这一切都正常,之后我开始获得Access Denied Exception。
我们已经在Azure App服务上托管了我们的网站超过一年了!!
关于为什么在一年后失败的任何想法?