AnonymousIdentificationSection.Domain 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 Cookie 網域。
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
屬性值
Cookie 網域名稱。 預設為空字串 ("")。
- 屬性
範例
下列程式碼範例示範如何存取 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 命名空間 (的網域之間共用匿名識別 Cookie,例如,以 「contoso.com」 結尾的所有網站) 。 必須符合下列需求,才能共用匿名識別 Cookie:
想要共用 Cookie 的網站需要有常見的解密和驗證金鑰。
所有網站的 Cookie 路徑和 Cookie 名稱等其他匿名識別組態屬性都必須相同。
如需詳細資訊,請參閱 類別 HttpCookie 。