Exemplo n.º 1
0
        public ResponseType DoOperation(string endpoint, RequestType requestBody)
        {
            RequestModel request = this.BuildRequestModel(endpoint, requestBody);
            Uri          uri     = this.RequestBuilder.BuildGetRequest(request);

            string result = HttpProxy.CallGet(uri).Result;

            return(JObject.Parse(result)["data"].ToObject <ResponseType>());
        }