1 implementation of IXmlTextParser
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
13
internal sealed class XmlSerializableReader : XmlReader, IXmlLineInfo,
IXmlTextParser
// IXmlTextParser (Normalized, WhitespaceHandling) was added. Is it ever used?
21 references to IXmlTextParser
netstandard (1)
netstandard.cs (1)
2385
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.
IXmlTextParser
))]
System.Data.Common (4)
System\Data\DataSet.cs (2)
3556
IXmlTextParser
? xmlTextParser = reader as
IXmlTextParser
;
System\Data\DataTable.cs (2)
6751
IXmlTextParser
? textReader = reader as
IXmlTextParser
;
System.Private.DataContractSerialization (14)
System\Runtime\Serialization\XmlReaderDelegator.cs (6)
1049
IXmlTextParser
? xmlTextParser = reader as
IXmlTextParser
;
1059
if (reader is
IXmlTextParser
xmlTextParser)
1073
IXmlTextParser
? xmlTextParser = reader as
IXmlTextParser
;
1083
if (reader is
IXmlTextParser
xmlTextParser)
System\Runtime\Serialization\XmlSerializableReader.cs (8)
130
bool
IXmlTextParser
.Normalized
134
IXmlTextParser
? xmlTextParser = InnerReader as
IXmlTextParser
;
139
if (InnerReader is not
IXmlTextParser
xmlTextParser)
146
WhitespaceHandling
IXmlTextParser
.WhitespaceHandling
150
IXmlTextParser
? xmlTextParser = InnerReader as
IXmlTextParser
;
155
if (InnerReader is not
IXmlTextParser
xmlTextParser)
System.Xml (1)
System.Xml.cs (1)
109
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.
IXmlTextParser
))]
System.Xml.XmlSerializer (1)
artifacts\obj\System.Xml.XmlSerializer\Debug\net10.0\System.Xml.XmlSerializer.Forwards.cs (1)
8
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.
IXmlTextParser
))]