AnonymousIdentificationSection.CookiePath 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定儲存 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 本身一起傳輸。