I there, i have the following xml
<response>
<device id="22114" type="1" period="5"/>
<data time="1429815600" status="43" current="1366">
<energy>22929984</energy>
<power>314</power>
</data>
</response>
and the following code
dynamic test = Net.WebService(url).GetData();
Program.Notify("Test", test.Replace("<","<").ToString());
Pause(15);
Program.Notify("Test", test.response.ToString());
The first notify show me the xml (the replace is the only way i can find to see the output) in the second notify however i get an error, string does not contain a definition for `response'
Any help?
Other question is how can i get the attribute value? (for example device id value)?