7 references to fCharData
System.Xml (7)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3120
if ((xmlCharType.charProperties[ch] & XmlCharType.
fCharData
) == 0)
System\Xml\Core\XmlTextEncoder.cs (1)
358
( ( xmlCharType.charProperties[ch = text[i]] & XmlCharType.
fCharData
) != 0 // ( xmlCharType.IsCharData( ( ch = text[i] ) )
System\Xml\XmlCharType.cs (2)
573
return ( charProperties[ch] &
fCharData
) != 0;
698
if ( ( charProperties[str[i]] &
fCharData
) == 0 ) {
System\Xml\XmlConvert.cs (3)
575
return (xmlCharType.charProperties[ch] & XmlCharType.
fCharData
) != 0;
1475
while ( i < len && ( xmlCharType.charProperties[data[i]] & XmlCharType.
fCharData
) != 0 ) {
1516
while ( i < endPos && ( xmlCharType.charProperties[data[i]] & XmlCharType.
fCharData
) != 0 ) {