HtmlHelper是连接安全的

时间:2013-01-30 10:05:58

标签: asp.net-mvc-4

我正在构建一个MVC4帮助程序,并希望从HtmlHelper类中找到来自安全(https)连接的请求是否来自http)?

1 个答案:

答案 0 :(得分:0)

类似这样的事情,假设帮助者的类型为HtmlHelper<T>HtmlHelper

helper.ViewContext.RequestContext.HttpContext.Request.IsSecureConnection;

或者可能是快捷方式

helper.ViewContext.HttpContext.Request.IsSecureConnection;