Aracılığıyla paylaş


HttpCookiesSection.HttpOnlyCookies Özellik

Tanım

Tarayıcı HttpOnly tanımlama bilgisi için desteğin etkinleştirilip etkinleştirilmediğini belirten bir değer alır veya ayarlar.

Bu API, ürün altyapısını destekler ve doğrudan kodunuzdan kullanıma yönelik değildir.

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

Özellik Değeri

true tanımlama bilgisi için HttpOnly destek etkinleştirildiyse; aksi takdirde , false. Varsayılan değer: false.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin HttpOnlyCookies nasıl kullanılacağını gösterir.


// 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

Açıklamalar

httpCookies öğesi tanımlama bilgilerinin kullanımını HttpOnly destekler. HttpOnly tanımlama bilgileri (özniteliğine HttpOnly sahip tanımlama bilgileri), siteler arası betik oluşturma riskini azaltmaya yardımcı olmak için Internet Explorer 6'da kullanıma sunulmuştur. özniteliği, HttpOnly istemci tarafı betiği aracılığıyla tanımlama bilgilerine erişilmesini engeller. Tanımlama HttpOnly bilgisinde yer alan tüm bilgilerin bir korsana veya kötü amaçlı bir Web sitesine açıklanma olasılığı daha düşüktür. Daha fazla bilgi için MSDN'de (msdn.microsoft.com) "HttpOnly" araması yapın.

Şunlara uygulanır

Ayrıca bkz.