matlab.net.QueryParameter Class
Namespace: matlab.net
Parameter in query portion of uniform resource identifier (URI)
Description
Use the QueryParameter
class to create a URI query string of the
form:
name1=value1&name2=value2&name3=value3
where each name=value
segment is a QueryParameter
object, converted to a string using the string
method. The
string
method on a vector of QueryParameter
objects joins
the results using the &
character. The string
method
converts any values to strings and performs all necessary encoding of special characters in
the result.
Creation
Description
obj = matlab.net.QueryParameter
creates an empty query
parameter.
obj = matlab.net.QueryParameter(
creates a query parameter vector of
paramName
,paramValue
)paramName
,paramValue
pair arguments. You can
specify several argument pairs in any order as
paramName1,paramValue1,...,paramNameN,paramValueN
.
obj = matlab.net.QueryParameter(___,
specifies the format to be used for nonscalar values, and can include any of the input
arguments in previous syntaxes.Format
)
Input Arguments
Properties
Methods
Examples
Version History
Introduced in R2016b