设置默认 WinHttp 代理配置.
#Include <WinHttp.au3>
_WinHttpSetDefaultProxyConfiguration($iAccessType [, $sProxy = "" [, $sProxyBypass = ""])
$iAccessType | 整数.访问类型. |
$sProxy | [可选参数] 字符串. 代理服务器列表. |
$sProxyBypass | [可选参数] 字符串. 代理排除列表. |
成功: | 返回 1. |
失败: | 返回 0 并设置 @error: |
1 - DllCall 失败 |
#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include "WinHttp.au3"
Opt("MustDeclareVars", 1)
; 设置不使用代理:
_WinHttpSetDefaultProxyConfiguration($WINHTTP_ACCESS_TYPE_NO_PROXY)
; ... 这里是剩余代码...