Difference between revisions of "GetHTTPPage"
From SCAR Divi Manual
(Created page with "==Definition== <func>function GetHTTPPage(const iHttp: Integer; const URL: AnsiString): AnsiString;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This functi...") |
|||
| Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
| − | <func>function | + | <func>function FreeHTTPClient(const iHttp: Integer): Boolean;</func> |
==Availability== | ==Availability== | ||
| Line 6: | Line 6: | ||
==Description== | ==Description== | ||
| − | This function | + | This function closes an open HTTP connection specified by '''iHttp'''. |
==Example== | ==Example== | ||
| Line 23: | Line 23: | ||
==See Also== | ==See Also== | ||
| − | |||
| − | |||
| − | |||
*[[FreeHTTPClient]] | *[[FreeHTTPClient]] | ||
[[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.