Sdílet prostřednictvím


FormsAuthenticationConfiguration.Cookieless Vlastnost

Definice

Získá nebo nastaví hodnotu označující, zda má ověřování založené na formulářích používat soubory cookie.

public:
 property System::Web::HttpCookieMode Cookieless { System::Web::HttpCookieMode get(); void set(System::Web::HttpCookieMode value); };
[System.Configuration.ConfigurationProperty("cookieless", DefaultValue=System.Web.HttpCookieMode.UseDeviceProfile)]
public System.Web.HttpCookieMode Cookieless { get; set; }
[<System.Configuration.ConfigurationProperty("cookieless", DefaultValue=System.Web.HttpCookieMode.UseDeviceProfile)>]
member this.Cookieless : System.Web.HttpCookieMode with get, set
Public Property Cookieless As HttpCookieMode

Hodnota vlastnosti

Jedna z HttpCookieMode hodnot. Výchozí hodnota je UseDeviceProfile.

Atributy

Příklady

Následující příklad kódu ukazuje, jak získat přístup Cookieless k vlastnosti. Informace o tom, jak získat oddíl, najdete v příkladu kódu v FormsAuthenticationConfiguration tématu třídy.

// Get current Cookieless.
System.Web.HttpCookieMode currentCookieless =
    formsAuthentication.Cookieless;

// Set current Cookieless.
formsAuthentication.Cookieless =
    HttpCookieMode.AutoDetect;
' Get current Cookieless.
Dim currentCookieless _
As System.Web.HttpCookieMode =
formsAuthentication.Cookieless

' Set current Cookieless.
formsAuthentication.Cookieless = HttpCookieMode.AutoDetect

Poznámky

Vlastnost Cookieless definuje, jestli má ověřování na základě formulářů používat soubor cookie k výměně informací o uživateli.

Platí pro

Viz také