3 writes to ch
System.ServiceModel (3)
System\ServiceModel\Dispatcher\XPathLexer.cs (3)
485
this.
ch
= char.MinValue;
520
this.
ch
= this.xpath[this.currChar];
528
this.
ch
= char.MinValue;
13 references to ch
System.ServiceModel (13)
System\ServiceModel\Dispatcher\XPathLexer.cs (13)
588
if (XPathCharTypes.IsNCNameStart(this.
ch
))
593
else if (XPathCharTypes.IsDigit(this.
ch
))
601
switch (this.
ch
)
752
ThrowError(QueryCompileError.InvalidVariable, this.
ch
== char.MinValue ? string.Empty : CurrentSubstring());
798
if (XPathCharTypes.IsNCNameStart(this.
ch
))
805
else if (this.
ch
== '*')
813
ThrowError(QueryCompileError.InvalidNCName, this.
ch
== char.MinValue ? "" : CurrentSubstring());
922
for (; XPathCharTypes.IsDigit(this.
ch
); AdvanceChar());
923
if (this.
ch
== '.')
926
if (XPathCharTypes.IsDigit(this.
ch
))
930
for (; XPathCharTypes.IsDigit(this.
ch
); AdvanceChar());
949
while (this.
ch
!= c)
952
if (this.
ch
== char.MinValue)