Method HttpMessage() :getParameters() Foundation
Gets multiple HTTP parameter values.
:getParameters( [<cName>] ) --> aValues | NIL
:getParameters() returns an array with parameter information. If a parameter name is assigned <cName>, the array contains one element with a character string for each parameter value. If no values are defined, :getParameters() returns an empty array. If no parameter named <cName> exits, the method returns NIL.
If no parameter name is specified in <cName>, :getParameters() returns the values of all parameters defined. In this case, return is an array containing one element per HTTP parameter. Each element contains a sub-array of the form {<cName>,{<cValue1>,..,<cValueN>}}, where <cName> is the name of the respective parameter, and {<cValue1>,..<cValueN>} is an with the parameter values. For parameters without a value, this array is empty. If no parameters are defined for the message, the method returns an empty array.
The method :getParameters() gets the values of all HTTP parameters with a given name. If no parameter is specified, the method can also be used to determine get the values of all HTTP parameters which are defined.
HTTP parameters are transferred as part of the query string. The methods :addParameter(), :delParameter(), :getParameter(), :getParameters() and their respective :set..() counterparts allow direct and easy manipulation of this part of the HTTP query string. Use the method :getQueryString() for obtaining a reference to the complete string.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.