AddParameter¶
Adds a new parameter to request body.
1 |
|
Adds a new parameter to request body.
1 |
|
Parameters¶
string name
Name of parameter
object value
Value of parameter
( "Cookie"
| "GetOrPost"
| "UrlSegment"
| "HttpHeader"
| "RequestBody"
| "QueryString"
| "QueryStringWithoutEncode"
) type
Type of parameter. Optional.
Remarks¶
Name and value arguments are required.
Type parameter is optional. If not specified default value is "GetOrPost".
Type parameter can be one of following;
GetOrPost
Cookie
HttpHeader
RequestBody
QueryString
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Name and value arguments are required.
Type parameter is optional. If not specified default value is "GetOrPost".
Type parameter can be one of following;
GetOrPost
Cookie
HttpHeader
RequestBody
QueryString
Example¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|