FormsAuthentication.CookiesSupported 属性

定义

获取一个值,该值指示应用程序是否已配置为支持无 Cookie Forms 身份验证。

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

属性值

如果应用程序已配置为支持无 Cookie 的 Forms 身份验证,则返回 false;否则返回 true

示例

下面的代码示例在 cookieless Web.config 文件中将 属性设置为 UseUri 。 此配置将导致 CookiesSupported 属性返回 false

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

注解

属性 CookiesSupported 根据浏览器的值 CookieMode 和功能返回值。

适用于

另请参阅