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