I was just creating a simple internal feedback (RSS) reader (using XML) for intranet; I started by using ListView and populated it with XmlTextReader & XmlDocument.
But this reader is not useful unless I introduce a feature for auto refreshing my reader as soon as the source xml file is updated. One way I could think is:
Fetch the complete file, then compare number of prev/new ChildNodes; if new > prev then load/refresh the Winform. But hundreds of client forms sending these un-important requests will make a joke of the network server's response-time!
I feel I should use some logic to compare Date & Time of creation/update of the XML file. But I've never used such function till today... what do you say, any better idea?