0

我正在构建一个MVC4助手,并想从HtmlHelper课堂上找出请求是否来自安全(https)连接(http)?

4

1 回答 1

0

像这样的东西,假设 helper 是类型HtmlHelper<T>HtmlHelper

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

或者也许是捷径

helper.ViewContext.HttpContext.Request.IsSecureConnection;
于 2013-01-30T10:11:40.273 回答