HttpRequest.IsSecureConnection 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,指示 HTTP 连接是否使用安全套接字(即 HTTPS)。
public:
property bool IsSecureConnection { bool get(); };
public bool IsSecureConnection { get; }
member this.IsSecureConnection : bool
Public ReadOnly Property IsSecureConnection As Boolean
属性值
如果连接为 SSL 连接,则为 true
;否则为 false
。
示例
下面的代码示例确定 属性 IsSecureConnection 是否设置为 false。 如果为 ,则 SuppressContent 属性设置为 true 以阻止发送响应。
// Check whether the request is sent
// over HTTPS. If not, do not send
// content to the client.
if (!Request.IsSecureConnection)
{
Response.SuppressContent = true;
}
' Check whether the request is sent
' over HTTPS. If not, do not return
' content to the client.
If (Request.IsSecureConnection = False) Then
Response.SuppressContent = True
End If