20 references to ValueType
System.Data (20)
fx\src\data\System\Data\Filter\BinaryNode.cs (1)
112return new ConstNode(table, ValueType.Object, val, false);
fx\src\data\System\Data\Filter\ConstNode.cs (11)
20internal ConstNode(DataTable table, ValueType type, object constant) : this(table, type, constant, true) { 23internal ConstNode(DataTable table, ValueType type, object constant, bool fParseQuotes) : base(table) { 25case ValueType.Null: 29case ValueType.Numeric: 32case ValueType.Decimal: 35case ValueType.Float: 39case ValueType.Bool: 43case ValueType.Str: 53case ValueType.Date: 57case ValueType.Object: 63goto case ValueType.Object;
fx\src\data\System\Data\Filter\ExpressionParser.cs (5)
273node = new ConstNode(_table, ValueType.Numeric, str); 277node = new ConstNode(_table, ValueType.Decimal, str); 281node = new ConstNode(_table, ValueType.Float, str); 288node = new ConstNode(_table, ValueType.Str, str); 295node = new ConstNode(_table, ValueType.Date, str);
fx\src\data\System\Data\Filter\FunctionNode.cs (2)
90arguments[1] = new ConstNode(table, ValueType.Str, type.name); 224return new ConstNode(table, ValueType.Object, this.Eval(), false);
fx\src\data\System\Data\Filter\UnaryNode.cs (1)
167return new ConstNode(table, ValueType.Object, val, false);