18 references to IsTextChar
System.Private.Xml (18)
System\Xml\Core\XmlEncodedRawTextWriter.cs (3)
1224while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc))) 1344while (pDst < pDstEnd && (XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar)) 1860if (!XmlCharType.IsTextChar(chars[i]))
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (2)
1361while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc))) 1563while (pDst < pDstEnd && (XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar))
System\Xml\Core\XmlTextReaderImpl.cs (3)
5550while (XmlCharType.IsTextChar(c = chars[pos])) 6317while (XmlCharType.IsTextChar(tmpch = chars[pos]) && tmpch != '?') 6523while (XmlCharType.IsTextChar(tmpch = chars[pos]) && tmpch != stopChar)
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
3249while (XmlCharType.IsTextChar(c = chars[pos])) 4040while (XmlCharType.IsTextChar(tmpch = chars[pos]) && tmpch != '?') 4265while (XmlCharType.IsTextChar(tmpch = chars[pos]) && tmpch != stopChar)
System\Xml\Core\XmlUtf8RawTextWriter.cs (3)
1040while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch <= 0x7F) 1159while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F) 1722if (!XmlCharType.IsTextChar(chars[i]))
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (2)
1229while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch <= 0x7F) 1430while (pDst < pDstEnd && XmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F)
System\Xml\Schema\DtdParser.cs (1)
2856while (XmlCharType.IsTextChar(_chars[_curPos]) && _chars[_curPos] != ']')
System\Xml\Schema\DtdParserAsync.cs (1)
2270while (XmlCharType.IsTextChar(_chars[_curPos]) && _chars[_curPos] != ']')