AnonymousIdentificationSection.Domain プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クッキー ドメインを取得または設定します。
public:
property System::String ^ Domain { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("domain")]
public string Domain { get; set; }
[<System.Configuration.ConfigurationProperty("domain")>]
member this.Domain : string with get, set
Public Property Domain As String
プロパティ値
クッキー ドメインの名前。 既定値は、空の文字列 ("") です。
- 属性
例
Domain プロパティへのアクセス方法を次のコード例に示します。
// Get Domain.
string domain =
anonymousIdentificationSection.Domain;
Console.WriteLine("Anonymous identification domain: {0}",
domain);
' Get Domain.
Dim domain As String = _
anonymousIdentificationSection.Domain
Console.WriteLine( _
"Anonymous identification domain: {0}", domain)
注釈
この属性を使用すると、共通の DNS 名前空間を持つドメイン (たとえば、"contoso.com" で終わるすべてのサイト) 間で匿名 ID Cookie を共有できます。 匿名 ID Cookie を共有するには、次の要件を満たす必要があります。
Cookie を共有するサイトには、一般的な復号化キーと検証キーが必要です。
Cookie パスや Cookie 名などの他の匿名 ID 構成属性は、すべてのサイトで同じである必要があります。
詳細については、クラスを HttpCookie 参照してください。