HttpCookiesSection.HttpOnlyCookies 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
브라우저의 HttpOnly
쿠키에 대한 지원 활성화 여부를 나타내는 값을 가져오거나 설정합니다.
이 API는 제품 인프라를 지원하며 코드에서 직접 사용되지 않습니다.
public:
property bool HttpOnlyCookies { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("httpOnlyCookies", DefaultValue=false)]
public bool HttpOnlyCookies { get; set; }
[<System.Configuration.ConfigurationProperty("httpOnlyCookies", DefaultValue=false)>]
member this.HttpOnlyCookies : bool with get, set
Public Property HttpOnlyCookies As Boolean
속성 값
true
쿠키에 대한 지원이 활성화되면 HttpOnly
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
- 특성
예제
다음 코드 예제에서는 HttpOnlyCookies 속성을 사용하는 방법을 보여 줍니다.
// Get the current HttpOnlyCookies.
Boolean httpOnlyCookiesValue =
httpCookiesSection.HttpOnlyCookies;
// Set the HttpOnlyCookies.
httpCookiesSection.HttpOnlyCookies =
false;
' Get the current HttpOnlyCookies.
Dim httpOnlyCookiesValue As Boolean = _
httpCookiesSection.HttpOnlyCookies
' Set the HttpOnlyCookies.
httpCookiesSection.HttpOnlyCookies = _
False
설명
합니다 httpCookies
요소 사용을 지원 HttpOnly
쿠키입니다.
HttpOnly
쿠키 (사용 하 여 쿠키를 HttpOnly
특성) 사이트 간 스크립팅의 위험을 완화 하는 데 Internet Explorer 6에서 도입 되었습니다.
HttpOnly
특성 쿠키를 클라이언트 쪽 스크립트를 통해 액세스 하지 못하게 방지 합니다. 에 포함 된 모든 정보는 HttpOnly
쿠키는 해커가 악성 웹 사이트에 공개 될 가능성이 적습니다. 자세한 내용은 MSDN (msdn.microsoft.com) "HttpOnly."에 대 한 검색
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET