Description
Gets all of the response headers' information.
Applies to
HTTPClient and RestClient objects
Syntax
objectname.GetResponseHeaders ( )
Argument |
Description |
---|---|
objectname |
The name of the HTTPClient or RestClient object for which you want to get all of the response headers |
Return value
String.
Returns the information of all of the response headers.
Examples
This example gets information of all headers:
String ls_AllHeaders HttpClient lnv_HttpClient lnv_HttpClient = Create HttpClient ls_AllHeaders = lnv_HttpClient.GetResponseHeaders()
See also