AnonymousIdentificationSection.Domain Property

Definition

Gets or sets the cookie domain.

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

Property Value

The name of the cookie domain. The default is an empty string ("").

Attributes

Examples

The following code example shows how to access the Domain property.

// 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)

Remarks

This attribute allows sharing of the anonymous identification cookie across domains that have a common DNS namespace (for example, all sites that end in "contoso.com"). The following requirements must be met in order for anonymous identification cookies to be shared:

  • Sites that want to share the cookie need to have common decryption and validation keys.

  • Other anonymous identification configuration attributes such as cookie path and cookie name must be the same for all the sites.

For more information, refer to the HttpCookie class.

Applies to

See also