P
Praveen
using 'XPathNodeIterator' for selecting nodes.
is it possible to do bitand operation or similar functionality in xpath
XmlDocument XmlDoc = new XmlDocument();
XmlDoc.LoadXml(xmlstring);
string strXpth="//ROOT/C[@A=0]"//this works
can I do bitad operation or similar here .. something like
string strXpth="//ROOT/C[@A=0 and BITAND(@B,14)>0]"
XPathNavigator XpNav = XmlData.CreateNavigator();
XPathExpression xPathExp = XpNav .Compile(strXpth)// can this strXpth can
have bitand operation
XPathNodeIterator XpNdI = XpNav.Select(xPathExp);
thnks in advance,
Praveen
is it possible to do bitand operation or similar functionality in xpath
XmlDocument XmlDoc = new XmlDocument();
XmlDoc.LoadXml(xmlstring);
string strXpth="//ROOT/C[@A=0]"//this works
can I do bitad operation or similar here .. something like
string strXpth="//ROOT/C[@A=0 and BITAND(@B,14)>0]"
XPathNavigator XpNav = XmlData.CreateNavigator();
XPathExpression xPathExp = XpNav .Compile(strXpth)// can this strXpth can
have bitand operation
XPathNodeIterator XpNdI = XpNav.Select(xPathExp);
thnks in advance,
Praveen