次の方法で共有


AnonymousIdentificationSection.CookiePath プロパティ

定義

クッキーが格納されている場所のパスを取得または設定します。

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

プロパティ値

ユーザーの匿名 ID に使用する HTTP クッキーのパス。 既定値はスラッシュ (/) です。これは 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 自体と共に送信されます。

適用対象