共用方式為


AnonymousIdentificationSection.CookiePath 屬性

定義

取得或設定儲存 Cookie 的路徑。

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

屬性值

用於使用者匿名識別的 HTTP Cookie 路徑。 預設值是正斜線 (/),表示 Web 應用程式的根目錄。

屬性

範例

下列程式碼範例示範如何存取 CookiePath 屬性。

// Get CookiePath.
string cookiePath = 
    anonymousIdentificationSection.CookiePath;
Console.WriteLine("Cookie path: {0}", cookiePath);
' Get CookiePath.
Dim cookiePath As String = _
anonymousIdentificationSection.CookiePath
Console.WriteLine("Cookie path: {0}", cookiePath)

備註

屬性 CookiePath 會指出驗證 Cookie 所在的位置,並連同驗證 Cookie 本身一起傳輸。

適用於