InetGet()から返されるハンドルを閉じます。
InetClose ( handle )
パラメータ
handle | 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, "", "Bytes read: " & $nBytes)