CheckLength() public method

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

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