|
|||||
function | HttpObjectSetHeader |
Related Syntax | Other Library Functions |
Library: HTTP
Include: omtcp.xin, omhttp.xin |
define function HttpObjectSetHeader modifiable stream HttpObject for value stream HeaderName to value stream HeaderValue append value switch AppendMode optional initial {true}
This function sets a named header value in an HTTP request or response object. It can be called from either a client or a server program.
Input arguments:
Example:
; HttpObjectSetHeader local HttpRequest my-Request local HttpResponse my-Response HttpObjectSetHeader my-Request for "User-Agent" to "omHTTP" HttpObjectSetHeader my-Response for "Accept" to "*/*"
---- |