It is possible to convert XPathNavigator to HtmlNode? Here is the code:

public string ContentByName(string name)
{
    if (name == null)
        throw new ArgumentNullException("name");

    XPathExpression expr = _CreateXPathExpression(String.Format("//meta[@name[Extensions:CaseInsensitiveComparison('{0}')]]", name));
    XPathNodeIterator it = _headNav.Select(expr);
    if (!it.MoveNext())
        return null;

    XPathNavigator node = it.Current;

    // How should I transform XPathNavigator node to HtmlNode here?

}
link|improve this question

63% accept rate
feedback

1 Answer

up vote 1 down vote accepted

'it.Current' in your example returns an instance of HtmlNodeNavigator which has a CurrentNode property which in turn returns the HtmlNode.

For example

HtmlNodeNavigator nodeNavigator = it.Current as HtmlNodeNavigator;
HtmlNode node = nodeNavigator.CurrentNode;
link|improve this answer
Thanks, Chris! I'm clear about that. – kseen Feb 7 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.