Freigeben über


FormsAuthentication.CookiesSupported Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die Anwendung für die Formularauthentifizierung ohne Cookies konfiguriert ist.

public:
 static property bool CookiesSupported { bool get(); };
public static bool CookiesSupported { get; }
static member CookiesSupported : bool
Public Shared ReadOnly Property CookiesSupported As Boolean

Eigenschaftswert

false, wenn die Anwendung so konfiguriert wird, dass sie Formularauthentifizierung ohne Cookies unterstützt, andernfalls true.

Beispiele

Im folgenden Codebeispiel wird das cookieless Attribut auf UseUri in der Web.config-Datei festgelegt. Diese Konfiguration führt dazu, dass die CookiesSupported -Eigenschaft zurückgibt false.

<authentication mode="Forms">
  <forms loginUrl="member_login.aspx"
    cookieless="UseUri" />
</authentication>

Hinweise

Die CookiesSupported -Eigenschaft gibt einen Wert basierend auf dem CookieMode Wert und den Funktionen des Browsers zurück.

Gilt für:

Weitere Informationen