コード例 #1
0
ファイル: AspNetParseTree.cs プロジェクト: nofuture-git/31g
        public override void ExitHtmlAttributeValue(HTMLParser.HtmlAttributeValueContext ctx)
        {
            var attrValue = ctx.ATTVALUE_VALUE();
            if (attrValue == null)
            {
                return;
            }

            var attrValueText = attrValue.GetText();
            FilteredPut(ctx, attrValueText);
        }