1 implementation of IsEntityEolNormalized
System.Xml (1)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
225bool IDtdParserAdapter.IsEntityEolNormalized {
4 references to IsEntityEolNormalized
System.Xml (4)
System\Xml\Schema\DtdParser.cs (2)
2368stringBuilder.Append( readerAdapter.IsEntityEolNormalized ? "\u0020\u0020" : "\u0020" ); // CDATA normalization of 0xD 0xA 2371stringBuilder.Append( readerAdapter.IsEntityEolNormalized ? "\u000D\u000A" : "\u000A" ); // EOL normalization of 0xD 0xA
System\Xml\Schema\DtdParserAsync.cs (2)
1825stringBuilder.Append( readerAdapter.IsEntityEolNormalized ? "\u0020\u0020" : "\u0020" ); // CDATA normalization of 0xD 0xA 1828stringBuilder.Append( readerAdapter.IsEntityEolNormalized ? "\u000D\u000A" : "\u000A" ); // EOL normalization of 0xD 0xA