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