共用方式為


RoleManagerSection.CookieName 屬性

定義

取得或設定用於快取存放角色名稱的 Cookie 名稱。

public:
 property System::String ^ CookieName { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))]
[System.Configuration.ConfigurationProperty("cookieName", DefaultValue=".ASPXROLES")]
[System.Configuration.StringValidator(MinLength=1)]
public string CookieName { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))>]
[<System.Configuration.ConfigurationProperty("cookieName", DefaultValue=".ASPXROLES")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.CookieName : string with get, set
Public Property CookieName As String

屬性值

快取存放角色名稱所使用的 Cookie 名稱。 預設值為 ".ASPXROLES"。

屬性

範例

下列程式碼範例示範如何使用 CookieName 屬性。 此程式碼範例是提供給 類別之較大範例的 RoleManagerSection 一部分。

// Display CookieName property.
Console.WriteLine("CookieName: {0}", configSection.CookieName);
' Display CookieName property.
Console.WriteLine("CookieName: {0}", configSection.CookieName)

備註

屬性 CookieName 會傳回用來快取角色名稱的 Cookie 名稱。 您可以為應用程式指定快取角色的 Cookie 名稱,方法是在 ASP.NET 應用程式的 Web.config 檔案中設定 cookieName 屬性。 當您想要唯一識別應用程式的 Cookie,或跨多個應用程式共用 Cookie 時,這會很有用。

適用於