Пример #1
0
 public static bool IsAttribute(this IHTMLElement element, string attributeName, string pattern)
 {
     return(Regex.IsMatch(element.GetAttribute(attributeName), pattern, RegexOptions.IgnoreCase));
 }