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