I need to process loaded from ResponseStream on Async callbacks XML progressively.
Reply is have:
<root>
<node ...>
.....
</node>
<node />
...
</root>
schema, and i need to have ability process <node>‘s before they arrive complete.
Is there normal way to parse it using standard .NET?
“Represents a reader that provides fast, non-cached, forward-only access to XML data.”
http://msdn.microsoft.com/en-us/library/system.xml.xmltextreader.aspx
Edit:
This is a quick hack, but it does demonstrate that the reader is in fact lazy.