2 instantiations of XmlEventCache
System.Private.Xml (2)
System\Xml\Core\XmlAutoDetectWriter.cs (1)
39_eventCache = new XmlEventCache(string.Empty, true);
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
1006output = _output = new XmlQueryOutput(this, new XmlEventCache(baseUri, true));
7 references to XmlEventCache
System.Private.Xml (7)
System\Xml\Core\XmlAutoDetectWriter.cs (1)
23private readonly XmlEventCache _eventCache; // Cache up events until first StartElement is encountered
System\Xml\Xsl\Runtime\RtfNavigator.cs (3)
197private XmlEventCache _events; 209public RtfTreeNavigator(XmlEventCache events, XmlNameTable nameTable) 427public XPathNavigator GetNavigator(XmlEventCache events, XmlNameTable nameTable)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
72internal XmlQueryOutput(XmlQueryRuntime runtime, XmlEventCache xwrt)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (2)
1014XmlEventCache events; 1016events = (XmlEventCache)_output.Writer!;