Adds a header to the HTTP header.
&VariableBasedOnExtendedDataType.AddHeader(Name, Value)
Where:
Name
Name of the header, must be string.
Value
Value of the header, must be string.
Extended Data Types: HttpClient data type, HttpResponse data type
Generators: .NET, Java, Ruby (up to GeneXus X Evolution 3), Visual FoxPro (up to GeneXus X Evolution 3)
&httpresponse.AddHeader(!"User-Agent",!"GeneXus")
// &httpresponse is HttpResponse data type
The former line sets the “User-Agent” header with the “GeneXus” value
&HttpResponse.AddHeader(!'Content-Disposition',!'attachment; filename="WhatsApp Image 2020-01-10 at 12.45.59.jpeg"')
The former line is part of the code of probably a procedure with Call protocol property set to 'HTTP' that returns a file. The line sets the Content-Disposition header so that the file downloaded to the browser with the name "WhatsApp Image 2020-01-10 at 12.45.59.jpeg"
HttpClient data type
HttpResponse data type