8 references to fCharData
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3539if ((xmlCharType.charProperties[ch] & XmlCharType.fCharData) == 0)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextEncoder.cs (1)
432((_xmlCharType.charProperties[ch = text[i]] & XmlCharType.fCharData) != 0 // ( xmlCharType.IsCharData( ( ch = text[i] ) )
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (3)
447SetProperties(s_CharData, fCharData); 560return (charProperties[ch] & fCharData) != 0; 686if ((charProperties[str[i]] & fCharData) == 0)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (3)
636return (s_xmlCharType.charProperties[ch] & XmlCharType.fCharData) != 0; 1634while (i < len && (s_xmlCharType.charProperties[data[i]] & XmlCharType.fCharData) != 0) 1676while (i < endPos && (s_xmlCharType.charProperties[data[i]] & XmlCharType.fCharData) != 0)