WSHelper.WSQueryType
The WSQueryType defines a dynamic array of key-value
pairs that stores the query string of a URL.
Syntax
TYPE WSQueryType DYNAMIC ARRAY OF RECORD
name STRING,
value STRING
END RECORD
nameis the name of a query argument.valueis the value of a query argument.
Usage
The WSHelper.WSQueryType type defines a dynamic array of key-value pairs to
return the query string of a given URL.
For examples using this record, see WSHelper.SplitQueryString() and Examples using com.HttpServiceRequest methods.