11 references to fWhitespace
System.Xml (11)
System\Xml\Base64Decoder.cs (2)
163if ( ( xmlCharType.charProperties[ch] & XmlCharType.fWhitespace ) != 0 ) { // if ( xmlCharType.IsWhiteSpace(ch) ) { 196if ( !( ( xmlCharType.charProperties[*pChar++] & XmlCharType.fWhitespace ) != 0 ) ) { // if ( !( xmlCharType.IsWhiteSpace( chars[charPos++] ) ) ) {
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3107if (pb[pos + 1] != 0 || (xmlCharType.charProperties[pb[pos]] & XmlCharType.fWhitespace) == 0)
System\Xml\BinHexDecoder.cs (1)
191else if ( ( xmlCharType.charProperties[ch] & XmlCharType.fWhitespace ) != 0 ) { // else if ( xmlCharType.IsWhiteSpace( ch ) ) {
System\Xml\Core\XmlTextReaderImpl.cs (2)
4006isWs = ( ( xmlCharType.charProperties[ch] & XmlCharType.fWhitespace ) != 0 ); 4272while ( ( ( xmlCharType.charProperties[tmpch0 = chars[pos]] & XmlCharType.fWhitespace ) != 0 ) ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
1841isWs = ((xmlCharType.charProperties[ch] & XmlCharType.fWhitespace) != 0); 2147while (((xmlCharType.charProperties[tmpch0 = chars[pos]] & XmlCharType.fWhitespace) != 0)) {
System\Xml\XmlCharType.cs (2)
499return ( charProperties[ch] & fWhitespace ) != 0; 684if ( ( charProperties[str[i]] & fWhitespace ) == 0 ) {
System\Xml\XmlConvert.cs (1)
593return (xmlCharType.charProperties[ch] & XmlCharType.fWhitespace) != 0;