I am trying to read XML from stream reader and am also getting response XML. But when i try to read its nodes it is always returning null.
var request = (Htt
You should also be able to do:
... var node = xmlDocument["RateQuote"]; ...
The VB syntax for that is:
... Dim node as XmlNode = xmlDocument("RateQuote") ...