/
TccHTTPResponse.ContentText

TccHTTPResponse.ContentText

Parameter

: AnsiString;

Beschreibung

Die Nur-Lesen-Eigenschaft ContentText stellt das Inhaltsergebnis eines HTTP Aufrufs zur Verfügung. Beispielsweise ein XML.

Beispiel

if HTTP.Response.ContentType = 'text/xml' then
begin
  FastXML := TccFastXML.Create;
  try
   FastXML.XML := HTTP.Response.ContentText;
  finally
    FastXML.Free;
  end;
end;

Related content

TccFastXML.XML
TccFastXML.XML
More like this
TccFastXML.XML
TccFastXML.XML
More like this
TccHTTPRequest.Header
TccHTTPRequest.Header
More like this
TccHTTPRequest.Header
TccHTTPRequest.Header
More like this
TccHTTP.Post
More like this
TccHTTP.Post
More like this