1 write to text
System.Data.Services (1)
System\Data\Services\Parsing\ExpressionLexer.cs (1)
69
this.
text
= expression;
11 references to text
System.Data.Services (11)
System\Data\Services\Parsing\ExpressionLexer.cs (11)
70
this.textLen = this.
text
.Length;
89
get { return this.
text
; }
139
if (hasNext && Char.IsDigit(this.
text
[this.textPos + 1]))
152
else if (hasNext && this.
text
[tokenPos + 1] == XmlConstants.XmlInfinityLiteral[0])
156
string currentIdentifier = this.
text
.Substring(tokenPos + 1, this.textPos - tokenPos - 1);
204
throw ParseError(Strings.RequestQueryParser_UnterminatedStringLiteral(this.textPos, this.
text
));
240
this.token.Text = this.
text
.Substring(tokenPos, this.textPos - tokenPos);
451
throw ParseError(Strings.RequestQueryParser_UnterminatedLiteral(this.textPos, this.
text
));
456
this.token.Text = this.
text
.Substring(tokenPos, this.textPos - tokenPos);
467
this.ch = this.textPos < this.textLen ? this.
text
[this.textPos] : '\0';
567
this.ch = this.textPos < this.textLen ? this.
text
[this.textPos] : '\0';