1 implementation of IsEntityEolNormalized
System.Private.Xml (1)
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
222bool IDtdParserAdapter.IsEntityEolNormalized
4 references to IsEntityEolNormalized
System.Private.Xml (4)
System\Xml\Schema\DtdParser.cs (2)
2455_stringBuilder.Append(_readerAdapter.IsEntityEolNormalized ? "\u0020\u0020" : "\u0020"); // CDATA normalization of 0xD 0xA 2459_stringBuilder.Append(_readerAdapter.IsEntityEolNormalized ? "\u000D\u000A" : "\u000A"); // EOL normalization of 0xD 0xA
System\Xml\Schema\DtdParserAsync.cs (2)
1901_stringBuilder.Append(_readerAdapter.IsEntityEolNormalized ? "\u0020\u0020" : "\u0020"); // CDATA normalization of 0xD 0xA 1905_stringBuilder.Append(_readerAdapter.IsEntityEolNormalized ? "\u000D\u000A" : "\u000A"); // EOL normalization of 0xD 0xA