Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

Overview

Executes the request and returns the result as object.

object myRestRequest.ExecuteJson()

Remarks

Unlike RestRequest.Execute method this method verifes the server status code is returned as OK ( HTTP 200 ). If not exception is thrown.

Example

var client = $Rest.Create('http://targetserver');
var request = client.Request();

request.AddParameter('x', 1);

var result = request.ExecuteJson();
  • No labels