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