public HtmlNodeCollection CreateNodeCollection(string html, [CallerMemberName] string callerName = "") { HtmlDocument doc = CreateNodeDocument(html); return(doc.DocumentNode.SelectNodes(_stringParser.GetXpath(callerName))); }