本文整理汇总了C++中CInternet::SetProxy方法的典型用法代码示例。如果您正苦于以下问题:C++ CInternet::SetProxy方法的具体用法?C++ CInternet::SetProxy怎么用?C++ CInternet::SetProxy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CInternet
的用法示例。
在下文中一共展示了CInternet::SetProxy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetProxyW
// Set a proxy or multiple proxies:
// String Format= "http=http://Proxy1.com:8000 https=https://Proxy2.com:443"
// You can specify separate proxies for HTTP, HTTPS, FTP
// u16_Proxy = "" --> Use Internet Explorer default settings
void SetProxyW(const CStrW& sw_Proxy)
{
mi_Internet.SetProxy(sw_Proxy);
}
示例2: SetProxyW
// Set a proxy or multiple proxies:
// String Format= "http=http://Proxy1.com:8000 https=https://Proxy2.com:443"
// You can specify separate proxies for HTTP, HTTPS, FTP
// u16_Proxy = "" --> Use Internet Explorer default settings
// The proxy user and proxy password are normally stored by Internet Explorer but this does not work always.
// If Wininet.dll returns error 407 repeatedly try setting User and Password here
void SetProxyW(const CStrW& sw_Server, const CStrW& sw_User=L"", const CStrW& sw_Pass=L"")
{
mi_Internet.SetProxy(sw_Server, sw_User, sw_Pass);
}