共用方式為


HttpCookie.Domain 屬性

定義

取得 HttpCookie 有效網域。

public:
 property Platform::String ^ Domain { Platform::String ^ get(); };
winrt::hstring Domain();
public string Domain { get; }
var string = httpCookie.domain;
Public ReadOnly Property Domain As String

屬性值

String

Platform::String

winrt::hstring

HttpCookie 有效網域。

備註

Domain 屬性會指定要傳送 Cookie 的主機。

具有 Domain 屬性 .contoso.com 的 Cookie 會傳送至 contoso.com 網域,而所有子域 (www.contoso.cominfo.contoso.com,例如) 。

具有 Domain 屬性info.contoso.com的 Cookie 不會傳送至 或 www.contoso.com,但會傳送至 contoso.cominfo.contoso.com 和 所有子域,uk.info.contoso.com (和 us.info.contoso.com,例如) 。

Domain 屬性的預設值是接收此 Cookie 的主機名。

適用於