Execute (http)
<source lang='delphi'>procedure Execute;</source>
Cette méthode exécute la requête http.
Pas de paramètre. |
Exemple: <source lang='delphi'> var http:THttpClient; begin
http := ThttpClient.Create(nil); http.URL := 'http://www.google.fr'; try http.Execute; ShowMessage(http.ResponseStr); except ShowMessage(http.ErrorText); end;
end; </source>
Voir aussi:
{{#if:Requêtes HTTP (tech)|
{{#if:Requêtes HTTP (tech)|— Requêtes HTTP (tech) |}} — Développement DSM —
|
{{#if:|— [[{{{1}}}]] |}} — Développement DSM —
}}