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)
1931
reader = new
XmlTextReaderImpl
(input, bytes, byteCount, settings, null, string.Empty, inputContext, settings.CloseInput);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (3)
441
XmlReader reader = new
XmlTextReaderImpl
(inputUri, this, inputContext, tmpResolver);
476
XmlReader reader = new
XmlTextReaderImpl
(input, null, 0, this, baseUri, baseUriString, inputContext, _closeInput);
505
XmlReader 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)
600
XmlTextReaderImpl tr = new
XmlTextReaderImpl
("", XmlNodeType.Element, pc);
938
XmlTextReaderImpl tr = new
XmlTextReaderImpl
(xmlFragment, contentNT, context);
985
XmlTextReaderImpl tempreader = new
XmlTextReaderImpl
(strValue, (XmlParserContext)null);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (3)
92
XmlTextReaderImpl reader = SetupReader(new
XmlTextReaderImpl
(string.Empty, textReader));
109
XmlTextReaderImpl reader = SetupReader(new
XmlTextReaderImpl
(string.Empty, stream));
137
XmlTextReaderImpl reader = SetupReader(new
XmlTextReaderImpl
(uri));
37 references to XmlTextReaderImpl
dotnet-svcutil-lib (37)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (5)
1720
XmlTextReaderImpl
tri = GetXmlTextReaderImpl(reader);
1726
XmlTextReaderImpl
tri = GetXmlTextReaderImpl(reader);
1730
private static
XmlTextReaderImpl
GetXmlTextReaderImpl(XmlReader reader)
1732
XmlTextReaderImpl
tri = reader as
XmlTextReaderImpl
;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (2)
28
private
XmlTextReaderImpl
_impl;
453
internal
XmlTextReaderImpl
Impl
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
1585
Debug.Assert(_outerReader is
XmlTextReaderImpl
);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (8)
177
private
XmlTextReaderImpl
_reader;
180
internal DtdParserProxy(
XmlTextReaderImpl
reader)
479
XmlTextReaderImpl
.StripSpaces(_chars, _valueStartPos, ref _valueLength);
483
_value =
XmlTextReaderImpl
.StripSpaces(_value);
613
XmlTextReaderImpl
.BlockCopyChars(_chars, _valueStartPos + valueOffset, buffer, offset, copyCount);
650
XmlTextReaderImpl
.AdjustLineInfo(_chars, _valueStartPos, _valueStartPos + valueOffset, isNormalized, ref lineInfo);
654
XmlTextReaderImpl
.AdjustLineInfo(_value, 0, valueOffset, isNormalized, ref lineInfo);
799
internal delegate void OnDefaultAttributeUseDelegate(IDtdDefaultAttributeInfo defaultAttribute,
XmlTextReaderImpl
coreReader);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (9)
89
private
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);
870
internal
XmlTextReaderImpl
ReaderImpl
1019
XmlTextReaderImpl
.DtdParserProxy proxy = new
XmlTextReaderImpl
.DtdParserProxy(_coreReaderImpl);
1193
internal void ValidateDefaultAttributeOnUse(IDtdDefaultAttributeInfo defaultAttribute,
XmlTextReaderImpl
coreReader)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (7)
600
XmlTextReaderImpl
tr = new XmlTextReaderImpl("", XmlNodeType.Element, pc);
608
XmlTextReaderImpl
.DtdParserProxy proxy = new
XmlTextReaderImpl
.DtdParserProxy(tr);
938
XmlTextReaderImpl
tr = new XmlTextReaderImpl(xmlFragment, contentNT, context);
961
XmlTextReaderImpl
.DtdParserProxy proxy = new
XmlTextReaderImpl
.DtdParserProxy(tr);
985
XmlTextReaderImpl
tempreader = new XmlTextReaderImpl(strValue, (XmlParserContext)null);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (5)
92
XmlTextReaderImpl
reader = SetupReader(new XmlTextReaderImpl(string.Empty, textReader));
109
XmlTextReaderImpl
reader = SetupReader(new XmlTextReaderImpl(string.Empty, stream));
137
XmlTextReaderImpl
reader = SetupReader(new XmlTextReaderImpl(uri));
465
private
XmlTextReaderImpl
SetupReader(
XmlTextReaderImpl
reader)