1 implementation of IXmlTextParser
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
13internal 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)
3556IXmlTextParser? xmlTextParser = reader as IXmlTextParser;
System\Data\DataTable.cs (2)
6751IXmlTextParser? textReader = reader as IXmlTextParser;
System.Private.DataContractSerialization (14)
System\Runtime\Serialization\XmlReaderDelegator.cs (6)
1049IXmlTextParser? xmlTextParser = reader as IXmlTextParser; 1059if (reader is IXmlTextParser xmlTextParser) 1073IXmlTextParser? xmlTextParser = reader as IXmlTextParser; 1083if (reader is IXmlTextParser xmlTextParser)
System\Runtime\Serialization\XmlSerializableReader.cs (8)
130bool IXmlTextParser.Normalized 134IXmlTextParser? xmlTextParser = InnerReader as IXmlTextParser; 139if (InnerReader is not IXmlTextParser xmlTextParser) 146WhitespaceHandling IXmlTextParser.WhitespaceHandling 150IXmlTextParser? xmlTextParser = InnerReader as IXmlTextParser; 155if (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))]