CheckStrLength() public method

public CheckStrLength ( QilUnary node ) : XmlQueryType
node QilUnary
return XmlQueryType
Exemplo n.º 1
0
        //-----------------------------------------------
        // string operators
        //-----------------------------------------------
        public QilUnary StrLength(QilNode child)
        {
            QilUnary n = new QilUnary(QilNodeType.StrLength, child);

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