コード例 #1
0
        public string CreatePrepareAndVerifyRowNodeString(string html, [CallerMemberName] string callerName = "")
        {
            HtmlNode row = GetDocumentAndSelectSingleNode(html, callerName);

            if (row != null)
            {
                if (_stringParser.IsTableRowCorrect(row.OuterHtml))
                {
                    return(row.InnerText);
                }
            }

            return(null);
        }