I have an xml on this url. I need to read this xml. I can not store this file and read the data because this xml refreshes after perticular interval.
How can I read this file in c#?
I have an xml on this url. I need to read this xml. I can not store this file and read the data because this xml refreshes after perticular interval.
How can I read this file in c#?
I can not store this file and read the data because this xml refreshes
That is incorrect. You do want to read the file as it's presented at a given moment in time. If it's updated the second after that, you need to read it again.
Anyway see Read xml from URL to read it from URL, How to load XML from URL on XmlDocument() and so on: the XML APIs offer options to load XML from an URL.