User475983607 posted
How to access methods is clear, according to this principle, but how to access an array, I don't know, can anyone help?
You have to understand the community does not have the WSDL or the service documentation. We have no idea what array you are asking about.
If CancleRx returns an collection then the first item in the array is results[0]. Use a standard foreach if you need to loop over the array.
foreach(var item in results)
{
//Do something with item
}
If the above does not answer your question, then contact the service owner for assistance. The service owners will be able to explain how the service works.