|
|||||
function | HttpRequestSetSearchItem |
Related Syntax | Other Library Functions |
Library: HTTP
Include: omtcp.xin, omhttp.xin |
define function HttpRequestSetSearchItem modifiable stream Request for value stream SearchName to value stream SearchValue
This function sets search item name-and-value pairs in an HTTP request object. It is usually used together with HttpRequestGetSearchItems
. It can appear in either a client or a server program, and is used to customize the information that will be returned from the server to the client.
Input arguments:
Example:
; HttpRequestSetSearchItem local HttpRequest my-Request HttpRequestSetSearchItem my-Request for "username" to "anonymous"
---- |