Difference between revisions of "QAS getParameters"
(→Examples) |
Cg huyphong (talk | contribs) (→Return type) |
||
Line 13: | Line 13: | ||
A dictionary | A dictionary | ||
− | * The parameter name will be the key in the | + | * The parameter name will be the key in the keypairs of dictionary. |
− | * The value of parameter will be the value in the | + | * The value of parameter will be the value in the value pairs of dictionary |
=== <span style="color:#DF8621;">'''See also'''</span> === | === <span style="color:#DF8621;">'''See also'''</span> === |
Revision as of 11:00, 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
Dictionary parameters = QAS_getParameters(); // Must be used in a specific QAS context
print(parameters.ToString()); // Result: {"test":1,"signup":454,"point":100}