14 references to XPathCharTypes
System.ServiceModel (14)
System\ServiceModel\Dispatcher\QueryFunctions.cs (1)
1260if (XPathCharTypes.IsWhitespace(c))
System\ServiceModel\Dispatcher\XPathLexer.cs (13)
588if (XPathCharTypes.IsNCNameStart(this.ch)) 593else if (XPathCharTypes.IsDigit(this.ch)) 629if (XPathCharTypes.IsDigit(PeekChar())) 781for (; XPathCharTypes.IsWhitespace(PeekChar()); AdvanceChar()); 787for (; XPathCharTypes.IsNCName(PeekChar()); AdvanceChar()); 798if (XPathCharTypes.IsNCNameStart(this.ch)) 801for (; XPathCharTypes.IsNCName(PeekChar()); AdvanceChar()); 884if (PeekChar() == ':' && XPathCharTypes.IsNCNameStart(PeekChar(2))) 899if (XPathCharTypes.IsNCNameStart(PeekChar())) 904for (; XPathCharTypes.IsNCName(PeekChar()); AdvanceChar()); 922for (; XPathCharTypes.IsDigit(this.ch); AdvanceChar()); 926if (XPathCharTypes.IsDigit(this.ch)) 930for (; XPathCharTypes.IsDigit(this.ch); AdvanceChar());