Date: 14.12.2019
Photos: https://www.facebook.com/pg/SuhailCloud04/photos/?tab=album&album_id=591261758308147


string soapResult = string.Empty;
try
{
using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult))
{
using (StreamReader rd = new StreamReader(webResponse.GetResponseStream()))
{
soapResult = rd.ReadToEnd();
}
}
}
catch (WebException wex)
{
soapResult = new StreamReader(wex.Response.GetResponseStream())
.ReadToEnd();
}
return soapResult;