UrlFromstruct()

Creates a URL key/value encoded string from the structure, with key1=value1&key2=value2. If the structure contains a rich object, it will be JSON encoded.

Usage

STRING = UrlFromstruct( struct, encoding )
Argument Summary
struct struct to which to create the URL key=value from
encoding encoding to use, defaults to that of the request [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

UrlFromstruct(
   struct=?, 
   encoding=?
);

Supports passing parameters as a structure using ArgumentCollection:

UrlFromstruct( ArgumentCollection={
   struct : ?, 
   encoding : ?
} );