LoadFromHttp (xmldoc)
De Wiki1000
procedure LoadFromHttp(http:THttpClient);
Cette procédure charge le document du contenu d'une requête http.
http | Requête http |
Exemple:
procedure foo(doc:TxmlDocument; iURL:string); var http:THttpClient; begin http := ThttpClient.Create(nil); http.URL := iURL; try http.Execute; doc.LoadFromHttp(http); except ShowMessage(http.ErrorText); end; end;
Voir aussi: