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

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

向集合中添加 cookie。

void System::Net::CookieContainer::Add(System::SharedPtr<Cookie> cookie)
ParameterType描述
cookieSystem::SharedPtr<Cookie>要添加的 cookie。

另见

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

向集合中添加 cookie。

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

另见

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

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

void System::Net::CookieContainer::Add(System::SharedPtr<CookieCollection> cookies)
ParameterType描述
CookieSystem::SharedPtr<CookieCollection>将从中复制 cookies 的集合。

另见

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

为指定的 URI 添加 cookie。

void System::Net::CookieContainer::Add(System::SharedPtr<Uri> uri, System::SharedPtr<Cookie> cookie)
ParameterType描述
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)
ParameterType描述
uriSystem::SharedPtr<Uri>Cookie 的 URI。
CookieSystem::SharedPtr<CookieCollection>必须从中复制 cookies 的 cookie 集合。

另见