Difference between revisions of "GetHTTPPage"
From SCAR Divi Manual
(→See Also) |
|||
Line 23: | Line 23: | ||
==See Also== | ==See Also== | ||
− | *[[ | + | *[[InitializeHTTPClient]] |
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Internet Functions]] | [[Category:Internet Functions]] |
Revision as of 10:10, 26 June 2011
Definition
<func>function FreeHTTPClient(const iHttp: Integer): Boolean;</func>
Availability
SCAR Divi 3.00 > Current
Description
This function closes an open HTTP connection specified by iHttp.
Example
var i: Integer; begin i := InitializeHTTPClient(True, True); try WriteLn(GetHTTPPage(i, 'http://www.google.com/')); finally FreeHTTPClient(i); end; end.