1
I need the value of <version>
is returned to a variable in a WPF application. The XML file is on the server and contains:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<Application>
<Version>1.2.3.5</Version>
<ZipFile>Atu_SGT_1.2.3.5.zip</ZipFile>
</Application>
My question is how to query this XML to verify the value of <version>1.2.3.5</version>
.
Are you using any language to make this query? Do you have any code ready? Please specify a little more your question so we can help.
– humungs
Ok. The application is in WPF. The xml file is on the server. My question is how I can query this xml to check the <version>1.2.3.5</version>. Thank you
– Paulo Romeiro
Ok. The application is a WPF in C#. The xml file is on the server. My question is how I can query this xml to check the <version>1.2.3.5</version>. I think of a method that would do this and it is called in the application’s Window_loaded. Thanks for helping .
– Paulo Romeiro