| HttpRequestGetSearchItems Full Description |   | 
| Syntax   define function HttpRequestGetSearchItems
              read-only   stream   Request
     into     modifiable  stream   SearchItems
Purpose This function returns the names and values of all search items defined for an HTTP request object as keyed items in a stream shelf. This function is usually used on the server side, to analyze the search items coming in from a request and to customize response information according to the search items specified in the request. Input argument: 
 Output argument: 
 Example:
 ; HttpRequestGetSearchItems local HttpRequest my-Request local stream all-Search variable HttpRequestGetSearchItems my-Request into all-Search output "No User!%n" when all-Search hasnt key "username" |