Skip to content

Execute

Executes the request and returns the target server response.

1
myRestRequest.Execute():RestResponse

Remarks

This method does not verify the response status.

Example

1
2
3
4
5
6
var client = $Rest.Create('http://targetserver');
var request = client.Request();

request.AddParameter('x', 1);

var response = request.Execute();

See Also