示例#1
0
 internal ElementFinder(HtmlNode html, ElementSearchKind searchKind, string tagName, string query, StringComparison comparisonType = StringComparison.CurrentCulture)
 {
     this.html           = html;
     this.searchKind     = searchKind;
     this.tagName        = tagName;
     this.query          = query;
     this.comparisonType = comparisonType;
 }
示例#2
0
 private By(string query, ElementSearchKind searchKind, StringComparison comparisonType)
 {
     Query          = query;
     SearchKind     = searchKind;
     ComparisonType = comparisonType;
 }