Exemple #1
0
        public static string Request(string url, string data = null, ContentType contentType = ContentType.Json, byte[] cert = null, string certPassword = null, NameValueCollection headers = null, CookieCollection cookies = null)
        {
            string returnText = RequestUtility.HttpPost(url, data, contentType, cert, certPassword, headers, cookies);

            return(returnText);
        }