I want to know what call xmldocument internally uses to load the XML, does it make httpwebsrequest or anything else.
I read about it here, but there is no enough info about the internals
http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.load.aspx
XmlDocument doc = new XmlDocument();
doc.Load("http://someotherserver/test.xml");
Can anyone please tell me about this.
I think this is the code that does it.
It’s in the XmlDownloadManager class which is internal