System.Net.HttpClientComponent.TNetHTTPClient.Trace
Delphi
function Trace(const AURL: string; const AResponseContent: TStream = nil;
const AHeaders: TNetHeaders = nil): IHTTPResponse;
C++
System::Net::Httpclient::_di_IHTTPResponse __fastcall Trace(const System::UnicodeString AURL, System::Classes::TStream* const AResponseContent = (System::Classes::TStream*)(0x0), const System::Net::Urlclient::TNetHeaders AHeaders = System::DynamicArray<System::Net::Urlclient::TNameValuePair>());
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Net.HTTPClientComponent.pas System.Net.HTTPClientComponent.hpp |
System.Net.HttpClientComponent | TNetHTTPClient |
Description
Sends an HTTP request to the specified URL using the TRACE
HTTP request method, waits for the server to send a response, and returns the HTTP response of the server.
If you want to receive the response data as your HTTP client downloads it from the target server, instead of waiting for your HTTP client to download the whole data, use the AResponseContent
parameter to specify a stream to receive the downloaded data. Alternatively, you can wait for your HTTP client to download the whole response data, and obtain the response data as a stream from the ContentStream property of the response object that Get returns.
Regardless of whether you receive the data as it comes or wait for the whole data to be available, you can handle the OnReceiveData event to track the progress of the download of the response data.
Use AHeaders
to include custom HTTP request headers in your HTTP request.
Trace raises an ENetHTTPRequestException if the HTTP request reaches the maximum number of redirects.
See Also
- System.Net.HttpClientComponent.TNetHTTPClient.Delete
- System.Net.HttpClientComponent.TNetHTTPClient.Get
- System.Net.HttpClientComponent.TNetHTTPClient.Head
- System.Net.HttpClientComponent.TNetHTTPClient.Merge
- System.Net.HttpClientComponent.TNetHTTPClient.Options
- System.Net.HttpClientComponent.TNetHTTPClient.Patch
- System.Net.HttpClientComponent.TNetHTTPClient.Post
- System.Net.HttpClientComponent.TNetHTTPClient.Put