基 础 函 数 参 考


InetClose

关闭 InetGet() 返回的句柄.

InetClose ( 句柄 )

参 数

句柄 由 InetGet() 返回的句柄.

返 回 值

返回 True, 句柄找到并关闭, 如果不是则返回 False.

备 注

InetGet() 句柄必须关闭, 不然残留资源不会释放.

下载过程中关闭句柄会导致取消下载.

相 关 函 数

InetGet

函 数 示 例


Local $hDownload = InetGet("http://www.autoitscript.com/autoit3/files/beta/update.dat", @TempDir & "\update.dat", 1, 1)
Do
    Sleep(250)
Until InetGetInfo($hDownload, 2) ; 检查完成的下载.
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload) ; 关闭句柄以释放资源.
MsgBox(0, "", "读取字节: " & $nBytes)

provider with jb51.net (unicode)