Overview
Executes the request and returns the target server response.RestResponse myRestRequest.Execute()
Remarks
This method does not verify the response status.
Example
var client = $Rest.Create('http://targetserver'); var request = client.Request(); request.AddParameter('x', 1); var response = request.Execute();