System::Net::CookieContainer::Add 方法

CookieContainer::Add(System::SharedPtr<Cookie>) method

向集合中添加一个 Cookie。

void System::Net::CookieContainer::Add(System::SharedPtr<Cookie> cookie)
参数类型描述
CookieSystem::SharedPtr<Cookie>要添加的 Cookie。

另见

CookieContainer::Add(System::SharedPtr<Cookie>, bool) method

向集合中添加一个 Cookie。

void System::Net::CookieContainer::Add(System::SharedPtr<Cookie> cookie, bool throwOnError)
参数类型描述
CookieSystem::SharedPtr<Cookie>要添加的 Cookie。
throwOnErrorbool指示在发生错误时是否会抛出异常的值。

另见

CookieContainer::Add(System::SharedPtr<CookieCollection>) method

将 Cookie 从指定的集合复制到当前集合。

void System::Net::CookieContainer::Add(System::SharedPtr<CookieCollection> cookies)
参数类型描述
CookiesSystem::SharedPtr<CookieCollection>将从中复制 Cookie 的集合。

另见

CookieContainer::Add(System::SharedPtr<Uri>, System::SharedPtr<Cookie>) method

为指定的 URI 添加一个 Cookie。

void System::Net::CookieContainer::Add(System::SharedPtr<Uri> uri, System::SharedPtr<Cookie> cookie)
参数类型描述
uriSystem::SharedPtr<Uri>Cookie 的 URI。
CookieSystem::SharedPtr<Cookie>要添加的 Cookie。

另见

CookieContainer::Add(System::SharedPtr<Uri>, System::SharedPtr<CookieCollection>) method

将指定集合中针对指定 URI 的 Cookie 复制到当前集合。

void System::Net::CookieContainer::Add(System::SharedPtr<Uri> uri, System::SharedPtr<CookieCollection> cookies)
参数类型描述
uriSystem::SharedPtr<Uri>Cookie 的 URI。
CookiesSystem::SharedPtr<CookieCollection>必须从中复制 Cookie 的 Cookie 集合。

另见