Exemplo n.º 1
0
        public RequestEntity CreatePostRequest(string url, string data, string contentType = "application/json")
        {
            HttpContent httpContent = new StringContent(data);

            httpContent.Headers.ContentType = new MediaTypeHeaderValue(contentType);
            var request = new RequestEntity(url);

            request.Method = RequestMethod.POST;
            request.SetSendData(data);
            return(request);
        }