I call a third-party service and they send the response as Xml. However, since I use WebClient to call the service, I get an array of bytes.
var client = new WebClient(); var result = client.UploadValues(post_url, data);
result is an array of bytes. How to convert it to XML to read the response provided by a third-party service?
source share