CheckContent() public method

public CheckContent ( QilUnary node ) : XmlQueryType
node QilUnary
return XmlQueryType
Exemplo n.º 1
0
        //-----------------------------------------------
        // XML navigation
        //-----------------------------------------------
        public QilUnary Content(QilNode child)
        {
            QilUnary n = new QilUnary(QilNodeType.Content, child);

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