34 references to IsAttributeValueChar
System.Private.Xml (34)
System\Xml\Core\HtmlEncodedRawTextWriter.cs (2)
559while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc))) 647while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch < 0x80)
System\Xml\Core\HtmlUtf8RawTextWriter.cs (2)
536while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F) 624while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch < 0x80)
System\Xml\Core\XmlEncodedRawTextWriter.cs (4)
905while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc))) 1029while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc))) 1495while (pDst < pDstEnd && (XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']')) 1637Debug.Assert(!XmlCharType.IsAttributeValueChar((char)ch));
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (3)
741while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc))) 945while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc))) 1753while (pDst < pDstEnd && (XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']'))
System\Xml\Core\XmlTextEncoder.cs (3)
130while (i < endPos && XmlCharType.IsAttributeValueChar(ch = array[i])) 258while (i < len && XmlCharType.IsAttributeValueChar(ch = text[i])) 371while (i < len && XmlCharType.IsAttributeValueChar(ch = text[i]))
System\Xml\Core\XmlTextReaderImpl.cs (7)
3772while (XmlCharType.IsAttributeValueChar(chars[pos])) 4876while (XmlCharType.IsAttributeValueChar(tmpch3 = chars[pos])) 5108while (XmlCharType.IsAttributeValueChar(chars[pos])) 6875while (XmlCharType.IsAttributeValueChar(ch = chars[pos]) && chars[pos] != stopChar && ch != '-' && ch != '?') 8279while (XmlCharType.IsAttributeValueChar(c = chars[pos]) && c != '/') 8286while (XmlCharType.IsAttributeValueChar(chars[pos])) 8583while (XmlCharType.IsAttributeValueChar(chars[pos]))
System\Xml\Core\XmlTextReaderImplAsync.cs (4)
1354while (XmlCharType.IsAttributeValueChar(chars[pos])) 2519while (XmlCharType.IsAttributeValueChar(tmpch3 = chars[pos])) 2618while (XmlCharType.IsAttributeValueChar(chars[pos])) 4618while (XmlCharType.IsAttributeValueChar(ch = chars[pos]) && ch != stopChar && ch != '-' && ch != '?')
System\Xml\Core\XmlUtf8RawTextWriter.cs (4)
724while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F) 847while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F) 1309while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']' && ch <= 0x7F) 1464Debug.Assert(!XmlCharType.IsAttributeValueChar((char)ch));
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (3)
612while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F) 815while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F) 1619while (pDst < pDstEnd && XmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']' && ch <= 0x7F)
System\Xml\Schema\DtdParser.cs (1)
2408while (XmlCharType.IsAttributeValueChar(_chars[_curPos]) && _chars[_curPos] != '%')
System\Xml\Schema\DtdParserAsync.cs (1)
1854while (XmlCharType.IsAttributeValueChar(_chars[_curPos]) && _chars[_curPos] != '%')