CheckLiteralInt64() public method

public CheckLiteralInt64 ( QilLiteral node ) : XmlQueryType
node QilLiteral
return XmlQueryType
Exemplo n.º 1
0
        public QilLiteral LiteralInt64(long value)
        {
            QilLiteral n = new QilLiteral(QilNodeType.LiteralInt64, value);

            n.XmlType = _typeCheck.CheckLiteralInt64(n);
            TraceNode(n);
            return(n);
        }