Exemple #1
0
 private string DoHttpPost(string sUrl, Dictionary <string, string> objHeaders, string sPayload)
 {
     try
     {
         string sReponse;
         HTTPHelper.HttpWebResponsePOST(null, sUrl, objHeaders, sPayload, HTTPHelper.HTTPContentType.JSON, out sReponse);
         return(sReponse);
     }
     catch (Exception Err)
     {
         throw Err;
     }
 }