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