Roles.CookieRequireSSL 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出角色名稱 Cookie 是否需要 SSL 才能傳回至伺服器。
public:
static property bool CookieRequireSSL { bool get(); };
public static bool CookieRequireSSL { get; }
static member CookieRequireSSL : bool
Public Shared ReadOnly Property CookieRequireSSL As Boolean
屬性值
如果將角色名稱 Cookie 傳回至伺服器時需要 SSL,則為 true
,否則為 false
。 預設為 false
。
範例
下列範例顯示 ASP.NET 應用程式 Web.config 檔案區段中 的 roleManager 元素 system.web
。 它會指定應用程式使用 SqlRoleProvider 實體,並將設定 cookieRequireSSL
為 true
。
<roleManager defaultProvider="SqlProvider"
enabled="true"
cacheRolesInCookie="true"
cookieName=".ASPROLES"
cookieTimeout="30"
cookiePath="/MyApplication"
cookieRequireSSL="true"
cookieSlidingExpiration="true"
cookieProtection="Encrypted" >
<providers>
<add
name="SqlProvider"
type="System.Web.Security.SqlRoleProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</roleManager>
備註
您可以指定是否需要 SSL (安全套接字層) ,才能將角色名稱 Cookie 傳回應用程式中的伺服器,方法是在 ASP.NET 應用程式的 Web.config 檔案中設定 cookieRequireSSL
屬性。 如需詳細資訊,請參閱Secure。