HttpCookie.Domain 属性

定义

获取或设置将此 Cookie 与其关联的域。

public:
 property System::String ^ Domain { System::String ^ get(); void set(System::String ^ value); };
public string Domain { get; set; }
member this.Domain : string with get, set
Public Property Domain As String

属性值

String

要将此 Cookie 与其关联的域名。 默认值为当前域。

示例

下面的代码示例设置 Cookie 的域。

MyCookie.Domain = "Microsoft.com";

MyCookie.Domain = "Microsoft.com"
    

注解

设置属性将 Domain Cookie 的传输限制为从该域请求资源的客户端。

适用于