Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

QAS getParameters: Difference between revisions

From Catglobe Wiki
Line 27: Line 27:
print(parameters.ToString());                // Result:    {"test":1,"signup":454,"point":100}
print(parameters.ToString());                // Result:    {"test":1,"signup":454,"point":100}
</source>
</source>
=== <span style="color:#DF8621;">'''Availability'''</span>  ===
Version 5.8.1

Revision as of 10:02, 29 December 2011

QAS_getParameters

This function will get all parameters that passed into a specific QAS. This function must be used in a specific QAS context.

Syntax

QAS_getParameters()

Arguments

none

Return type

A dictionary

  • The parameter name will be the key in the keypairs of dictionary.
  • The value of parameter will be the value in the value pairs of dictionary

See also

  • getParameter()

Examples

//Link of the qas : http://cg.catglobe.com/Login.aspx?r=1a997688-4a8f-43c2-bfaf-cdf3b0226678&test=1&signup=454&point=100
Dictionary parameters = QAS_getParameters();  // Must be used in a specific QAS context
print(parameters.ToString());                 // Result:     {"test":1,"signup":454,"point":100}

Availability

Version 5.8.1