25 instantiations of XmlTextReaderImpl
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3237_textXmlReader = new XmlTextReaderImpl(xmltext, xpc, settings);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (1)
1931reader = new XmlTextReaderImpl(input, bytes, byteCount, settings, null, string.Empty, inputContext, settings.CloseInput);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (3)
441XmlReader reader = new XmlTextReaderImpl(inputUri, this, inputContext, tmpResolver); 476XmlReader reader = new XmlTextReaderImpl(input, null, 0, this, baseUri, baseUriString, inputContext, _closeInput); 505XmlReader reader = new XmlTextReaderImpl(input, this, baseUriString, inputContext);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (14)
35_impl = new XmlTextReaderImpl(); 41_impl = new XmlTextReaderImpl(nt); 47_impl = new XmlTextReaderImpl(input); 53_impl = new XmlTextReaderImpl(url, input); 59_impl = new XmlTextReaderImpl(input, nt); 65_impl = new XmlTextReaderImpl(url, input, nt); 71_impl = new XmlTextReaderImpl(input); 77_impl = new XmlTextReaderImpl(url, input); 83_impl = new XmlTextReaderImpl(input, nt); 89_impl = new XmlTextReaderImpl(url, input, nt); 95_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 101_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 109_impl = new XmlTextReaderImpl(url, new NameTable()); 117_impl = new XmlTextReaderImpl(url, nt);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (3)
600XmlTextReaderImpl tr = new XmlTextReaderImpl("", XmlNodeType.Element, pc); 938XmlTextReaderImpl tr = new XmlTextReaderImpl(xmlFragment, contentNT, context); 985XmlTextReaderImpl tempreader = new XmlTextReaderImpl(strValue, (XmlParserContext)null);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (3)
92XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(string.Empty, textReader)); 109XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(string.Empty, stream)); 137XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(uri));
37 references to XmlTextReaderImpl
dotnet-svcutil-lib (37)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (5)
1720XmlTextReaderImpl tri = GetXmlTextReaderImpl(reader); 1726XmlTextReaderImpl tri = GetXmlTextReaderImpl(reader); 1730private static XmlTextReaderImpl GetXmlTextReaderImpl(XmlReader reader) 1732XmlTextReaderImpl tri = reader as XmlTextReaderImpl;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (2)
28private XmlTextReaderImpl _impl; 453internal XmlTextReaderImpl Impl
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
1585Debug.Assert(_outerReader is XmlTextReaderImpl);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (8)
177private XmlTextReaderImpl _reader; 180internal DtdParserProxy(XmlTextReaderImpl reader) 479XmlTextReaderImpl.StripSpaces(_chars, _valueStartPos, ref _valueLength); 483_value = XmlTextReaderImpl.StripSpaces(_value); 613XmlTextReaderImpl.BlockCopyChars(_chars, _valueStartPos + valueOffset, buffer, offset, copyCount); 650XmlTextReaderImpl.AdjustLineInfo(_chars, _valueStartPos, _valueStartPos + valueOffset, isNormalized, ref lineInfo); 654XmlTextReaderImpl.AdjustLineInfo(_value, 0, valueOffset, isNormalized, ref lineInfo); 799internal delegate void OnDefaultAttributeUseDelegate(IDtdDefaultAttributeInfo defaultAttribute, XmlTextReaderImpl coreReader);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (9)
89private XmlTextReaderImpl _coreReaderImpl; 133_coreReaderImpl = reader as XmlTextReaderImpl; 156_coreReaderImpl.OnDefaultAttributeUse = new XmlTextReaderImpl.OnDefaultAttributeUseDelegate(ValidateDefaultAttributeOnUse); 215_coreReaderImpl = reader as XmlTextReaderImpl; 246_coreReaderImpl.OnDefaultAttributeUse = new XmlTextReaderImpl.OnDefaultAttributeUseDelegate(ValidateDefaultAttributeOnUse); 870internal XmlTextReaderImpl ReaderImpl 1019XmlTextReaderImpl.DtdParserProxy proxy = new XmlTextReaderImpl.DtdParserProxy(_coreReaderImpl); 1193internal void ValidateDefaultAttributeOnUse(IDtdDefaultAttributeInfo defaultAttribute, XmlTextReaderImpl coreReader)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (7)
600XmlTextReaderImpl tr = new XmlTextReaderImpl("", XmlNodeType.Element, pc); 608XmlTextReaderImpl.DtdParserProxy proxy = new XmlTextReaderImpl.DtdParserProxy(tr); 938XmlTextReaderImpl tr = new XmlTextReaderImpl(xmlFragment, contentNT, context); 961XmlTextReaderImpl.DtdParserProxy proxy = new XmlTextReaderImpl.DtdParserProxy(tr); 985XmlTextReaderImpl tempreader = new XmlTextReaderImpl(strValue, (XmlParserContext)null);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (5)
92XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(string.Empty, textReader)); 109XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(string.Empty, stream)); 137XmlTextReaderImpl reader = SetupReader(new XmlTextReaderImpl(uri)); 465private XmlTextReaderImpl SetupReader(XmlTextReaderImpl reader)