9 references to Comment
System.Data.SqlXml (9)
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (4)
3027else if ((object) typItem == (object) TypeFactory.Comment) kinds |= XmlNodeKindFlags.Comment; 3049case XmlNodeKindFlags.Comment: kindsRuntime = XPathNodeType.Comment; break; 3076if ((kinds & XmlNodeKindFlags.Comment) != 0) kindsUnion |= (1 << (int) XPathNodeType.Comment); 4240case XmlNodeKindFlags.Comment: return XPathNodeType.Comment;
System\Xml\Xsl\XmlNodeKindFlags.cs (1)
60Content = Element | Comment | PI | Text,
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
503case XmlTypeCode.Comment: this.nodeKinds = XmlNodeKindFlags.Comment; break;
System\Xml\Xsl\XPath\XPathBuilder.cs (1)
328/*Comment */ XmlNodeKindFlags.Comment,
System\Xml\Xsl\Xslt\MatcherBuilder.cs (1)
316case XmlNodeKindFlags.Comment : commentPatterns .Add(pattern); break;
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
1567case XmlNodeKindFlags.Comment : return f.IsType(testNode, T.Comment);