当前位置: 首页>>代码示例>>C#>>正文


C# ElementNode.GetAttribute方法代码示例

本文整理汇总了C#中ElementNode.GetAttribute方法的典型用法代码示例。如果您正苦于以下问题:C# ElementNode.GetAttribute方法的具体用法?C# ElementNode.GetAttribute怎么用?C# ElementNode.GetAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ElementNode的用法示例。


在下文中一共展示了ElementNode.GetAttribute方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TryCreateSmartTag

        public IHtmlSmartTag TryCreateSmartTag(ITextView textView, ITextBuffer textBuffer, ElementNode element, AttributeNode attribute, int caretPosition, HtmlPositionType positionType)
        {
            AttributeNode attr = element.GetAttribute("src") ?? element.GetAttribute("href");

            if (attr == null)
                return null;

            Uri url = NormalizeUrl(attr);

            if (url == null || (!attr.Value.StartsWith("//", StringComparison.Ordinal) && !attr.Value.Contains("://")))
                return null;

            return new RemoteDownloaderSmartTag(textView, textBuffer, element, attr);
        }
开发者ID:Gordon-Beeming,项目名称:WebEssentials2013,代码行数:14,代码来源:RemoteDownloaderSmartTag.cs

示例2: IsEnabled

        private static bool IsEnabled(ElementNode element)
        {
            if (element.Name != "img")
                return false;

            return element.GetAttribute("src", true) != null;
        }
开发者ID:Nangal,项目名称:WebEssentials2013,代码行数:7,代码来源:OptimizeImageSmartTag.cs

示例3: TryCreateSmartTag

        public IHtmlSmartTag TryCreateSmartTag(ITextView textView, ITextBuffer textBuffer, ElementNode element, AttributeNode attribute, int caretPosition, HtmlPositionType positionType)
        {
            if (element.GetAttribute("ng-controller") != null)
            {
                return new HtmlAngularControllerSmartTag(textView, textBuffer, element);
            }

            return null;
        }
开发者ID:vikramgoudr,项目名称:WebEssentials2013,代码行数:9,代码来源:HtmlAngularControllerSmartTag.cs

示例4: TryCreateSmartTag

        public IHtmlSmartTag TryCreateSmartTag(ITextView textView, ITextBuffer textBuffer, ElementNode element, AttributeNode attribute, int caretPosition, HtmlPositionType positionType)
        {
            if (element.GetAttribute("class") == null)
            {
                return new $safeitemname$SmartTag(textView, textBuffer, element);
            }

            return null;
        }
开发者ID:GProulx,项目名称:side-waffle,代码行数:9,代码来源:AddClassSmartTag.cs

示例5: Visit

        public bool Visit(ElementNode element, object parameter)
        {
            if (_inputTypes.Contains(element.Name.ToLowerInvariant()))
            {
                var list = (List<string>)parameter;
                var id = element.GetAttribute("id");

                if (id != null && !list.Contains(id.Value))
                    list.Add(id.Value);
            }

            return true;
        }
开发者ID:rdtsai,项目名称:WebEssentials2013,代码行数:13,代码来源:HtmlLabelForAttributeCompletion.cs

示例6: Visit

        public bool Visit(ElementNode element, object parameter)
        {
            if (element.Name == "label")
            {
                var list = (HashSet<string>)parameter;
                var forAttr = element.GetAttribute("for");

                if (forAttr != null)
                    list.Add(forAttr.Value);
            }

            return true;
        }
开发者ID:GProulx,项目名称:WebEssentials2013,代码行数:13,代码来源:InputIdAttributeCompletion.cs

示例7: IsEnabled

        private static bool IsEnabled(ElementNode element)
        {
            if (element.Name != "img")
                return false;

            AttributeNode src = element.GetAttribute("src", true);

            if (src != null && src.Value.StartsWith("data:image/", StringComparison.Ordinal))
            {
                return true;
            }

            return false;
        }
开发者ID:Gordon-Beeming,项目名称:WebEssentials2013,代码行数:14,代码来源:Base64DecodeSmartTag.cs

示例8: DoReplace

 public override void DoReplace(ElementNode node, IList<Node> body)
 {
     body.Clear();
     Node newBody = node.GetAttribute("for").Value.GetPropertyValueNode();
     body.Add(newBody);
 }
开发者ID:RobertTheGrey,项目名称:OpenRasta.Codecs.Spark,代码行数:6,代码来源:TextAreaValueReplacement.cs

示例9: DoReplace

 public override void DoReplace(ElementNode node, IList<Node> body)
 {
     AttributeNode forAttribute = node.GetAttribute(ReplacementSpecification.OriginalAttributeName);
     AddAttribute(node, "name", new ExpressionNode(forAttribute.Value.GetPropertyNameSnippet()));
 }
开发者ID:RobertTheGrey,项目名称:OpenRasta.Codecs.Spark,代码行数:5,代码来源:InputNameReplacement.cs


注:本文中的ElementNode.GetAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。