[
Lists Home |
Date Index |
Thread Index
]
> I don't think .NET's XML DOM API has any method
> analogous to Oracle's .valueOf(<XPathExpression>)
The .NET DOM (System.Xml.XmlDocument) doesn't have anything like it but
there's a new class, System.Xml.XPath.XPathNavigator, that gets returned
when you call CreateNavigator on an XmlDocument. The XPathNavigator class
has an Evaluate method that can return a number, boolean, string, or
node-set.
Jason.
|