Argentini.Halide.H3HttpPost.PostData C# (CSharp) Method

PostData() public method

Posts data to a specified url. Note that this assumes that you have already url encoded the post data.
public PostData ( String url, String postData, String contentType, Int32 timeout ) : String
url String the url to post to.
postData String The data to post.
contentType String Content type to use (e.g. "application/x-www-form-urlencoded")
timeout System.Int32 Number of milliseconds before the request times out.
return String
        public String PostData(String url, String postData, String contentType, Int32 timeout)
        {
            return PostData(url, postData, contentType, timeout, null);
        }

Same methods

H3HttpPost::PostData ( String url, String postData, String contentType, Int32 timeout, string>.Dictionary headerProps ) : String