1 write to TypeFilters
System.Data.SqlXml (1)
System\Xml\Xsl\Runtime\XmlNavigatorFilter.cs (1)
137TypeFilters = new XmlNavigatorFilter[(int) XPathNodeType.Comment + 1];
6 references to TypeFilters
System.Data.SqlXml (6)
System\Xml\Xsl\Runtime\XmlNavigatorFilter.cs (6)
138TypeFilters[(int) XPathNodeType.Element] = new XmlNavTypeFilter(XPathNodeType.Element); 139TypeFilters[(int) XPathNodeType.Text] = new XmlNavTypeFilter(XPathNodeType.Text); 140TypeFilters[(int) XPathNodeType.ProcessingInstruction] = new XmlNavTypeFilter(XPathNodeType.ProcessingInstruction); 141TypeFilters[(int) XPathNodeType.Comment] = new XmlNavTypeFilter(XPathNodeType.Comment); 148Debug.Assert(TypeFilters[(int) nodeType] != null); 149return TypeFilters[(int) nodeType];