本文整理匯總了C#中Spark.Parser.Markup.ElementNode.HasAttribute方法的典型用法代碼示例。如果您正苦於以下問題:C# ElementNode.HasAttribute方法的具體用法?C# ElementNode.HasAttribute怎麽用?C# ElementNode.HasAttribute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Spark.Parser.Markup.ElementNode
的用法示例。
在下文中一共展示了ElementNode.HasAttribute方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetApplicableReplacements
private static IEnumerable<IReplacement> GetApplicableReplacements(ElementNode node)
{
var result = new List<IReplacement>();
// rf this crap
if ((node.Name == "input") && (node.HasAttribute("type") && (node.HasAttribute("for"))))
{
if (node.Attributes.Where(x => (x.Name == "type") && (x.Value == "checkbox")).Any())
{
result.Add(new CheckBoxCheckedReplacement());
}
}
result.AddRange(UriReplacementSpecifications.GetMatching(node));
result.AddRange(FormReplacementSpecifications.GetMatching(node));
return result;
}
示例2: IsMatch
public bool IsMatch(ElementNode node)
{
return node.IsTag(elementName) && node.HasAttribute(originalAttributeName);
}