다음을 통해 공유


HttpRequest.IsSecureConnection 속성

정의

HTTP 연결에서 보안 소켓, 즉 HTTPS를 사용하는지 여부를 나타내는 값을 가져옵니다.

public:
 property bool IsSecureConnection { bool get(); };
public bool IsSecureConnection { get; }
member this.IsSecureConnection : bool
Public ReadOnly Property IsSecureConnection As Boolean

속성 값

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

적용 대상