共用方式為


RoleManagerSection.CookiePath 屬性

定義

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

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

屬性值

存放角色名稱所使用的 Cookie 路徑。 預設值為 "/"。

屬性

範例

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

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

備註

您可以在 ASP.NET 應用程式的 Web.config 檔案中設定 cookiePath 屬性,以指定應用程式快取角色名稱的 Cookie 路徑。 屬性 CookiePath 會從Web.config檔案傳回屬性的值 cookiePath 。 路徑區分大小寫。

適用於