2 writes to text
System.Web.Extensions (2)
UI\WebControls\Dynamic.cs (2)
883token.text = "-" + token.text; 1991token.text = text.Substring(tokenPos, textPos - tokenPos);
22 references to text
System.Web.Extensions (22)
UI\WebControls\Dynamic.cs (22)
735CheckAndPromoteOperands(typeof(ILogicalSignatures), op.text, ref left, ref right, op.pos); 748CheckAndPromoteOperands(typeof(ILogicalSignatures), op.text, ref left, ref right, op.pos); 775throw IncompatibleOperandsError(op.text, left, right, op.pos); 789throw IncompatibleOperandsError(op.text, left, right, op.pos); 795op.text, ref left, ref right, op.pos); 835CheckAndPromoteOperands(typeof(IAddSignatures), op.text, ref left, ref right, op.pos); 839CheckAndPromoteOperands(typeof(ISubtractSignatures), op.text, ref left, ref right, op.pos); 858CheckAndPromoteOperands(typeof(IArithmeticSignatures), op.text, ref left, ref right, op.pos); 883token.text = "-" + token.text; 889CheckAndPromoteOperand(typeof(INegationSignatures), op.text, ref expr, op.pos); 893CheckAndPromoteOperand(typeof(INotSignatures), op.text, ref expr, op.pos); 937char quote = token.text[0]; 938string s = token.text.Substring(1, token.text.Length - 2); 958string text = token.text; 982string text = token.text; 1017if (keywords.TryGetValue(token.text, out value)) { 1025if (symbols.TryGetValue(token.text, out value) || 1026externals != null && externals.TryGetValue(token.text, out value)) { 1039throw ParseError(AtlasWeb.ExpressionParser_UnknownIdentifier, token.text); 2025return token.id == TokenId.Identifier && String.Equals(id, token.text, StringComparison.OrdinalIgnoreCase); 2030string id = token.text;