函数参考


_WinHttpGetIEProxyConfigForCurrentUser

获取当前用户的 Internet Explorer 代理配置

#Include <WinHttp.au3>
_WinHttpGetIEProxyConfigForCurrentUser()

参数

None.

返回值

成功: 返回包含下方4个元素的数组:
$array[0] - 当前用户指定"自动检查设置"进行IE代理配置时为1.
$array[1] - 当前用户的IE代理配置为指定"使用自动代理配置"时包含的自动配置的URL.
$array[2] - 当前用户的IE代理配置为指定"使用代理服务器"时包含的代理URL.
$array[3] - 可选绕过代理服务器的列表.
失败: 返回 0 并设置 @error:
1 - DllCall 失败
2 - 内部错误.

注意/说明

None.

相关

_WinHttpDetectAutoProxyConfigUrl, _WinHttpGetDefaultProxyConfiguration, _WinHttpSetDefaultProxyConfiguration

详情参考

http://msdn.microsoft.com/en-us/library/aa384096(VS.85).aspx

示例/演示


#AutoIt3Wrapper_AU3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6

#include "WinHttp.au3"
#include <Array.au3>

Opt("MustDeclareVars", 1)

; 用于当前用户的 Internet Explorer 代理配置:
Global $aIEproxy = _WinHttpGetIEProxyConfigForCurrentUser()
_ArrayDisplay($aIEproxy, "Internet Explorer proxy configuration")