Availability
This routine is available starting with katl-commons 4.1.0.
Syntax
httpCreateHeader(key, value)
Description
Creates a HttpHeader object.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
key | string | Yes | The key for the http header. |
value | string | Yes | The value for the http header. |
Return type
HttpHeader
Example
HttpRequest request; HttpHeader header = httpCreateHeader("Content-Type", "application/json"); request.headers += header;
See also