System.Xml.Xsl.Qil.QilTypeChecker.CheckGlobalVariableList C# (CSharp) Méthode

CheckGlobalVariableList() public méthode

public CheckGlobalVariableList ( QilList node ) : XmlQueryType
node QilList
Résultat XmlQueryType
        public XmlQueryType CheckGlobalVariableList(QilList node) {
            foreach (QilNode child in node)
                CheckClassAndNodeType(child, typeof(QilIterator), QilNodeType.Let);
            return node.XmlType;
        }
        

Usage Example

Exemple #1
0
        public QilList GlobalVariableList()
        {
            QilList n = new QilList(QilNodeType.GlobalVariableList);

            n.XmlType = _typeCheck.CheckGlobalVariableList(n);
            TraceNode(n);
            return(n);
        }
QilTypeChecker