private HtmlNode CheckXpath(string xpath)
{
if(!string.IsNullOrEmpty(xpath))
{
if (html.DocumentNode.SelectNodes(xpath) != null)
{
return html.DocumentNode.SelectNodes(xpath)[0];
}
}
return null;
}