Hi there.
I have written an application which returns an XmlDocument which has several nodes. What I am looking to do is display the InnerText value of one of these specific nodes but I cannot get this to work at all.
I have tried Googling this but none of the results so far have worked, so any help would be most appreciated please?
In my code, I create an XmlDocument and assign it to a returned result from a method which makes a call to an external process:
e.g.
Hence I am looking to find out how to parse the InnerText value which will only occur for one of the nodes, so this node is uniquely named.
Ultimately I want to test this InnerText value within an If-Condition and take action accordingly but any help will be so much appreciated.
Thank you.
Mark
I have written an application which returns an XmlDocument which has several nodes. What I am looking to do is display the InnerText value of one of these specific nodes but I cannot get this to work at all.
I have tried Googling this but none of the results so far have worked, so any help would be most appreciated please?
In my code, I create an XmlDocument and assign it to a returned result from a method which makes a call to an external process:
e.g.
Code:
XmlDocument xmlDoc = SomeExternalWebService("123"); txtXMLString.Text = anInnterText_value_returned_xml;
Ultimately I want to test this InnerText value within an If-Condition and take action accordingly but any help will be so much appreciated.
Thank you.
Mark
Comment