System.Xml.Xsl.Qil.QilFactory.GlobalVariableList C# (CSharp) Méthode

GlobalVariableList() public méthode

public GlobalVariableList ( ) : QilList
Résultat QilList
        public QilList GlobalVariableList() {
            QilList n = new QilList(QilNodeType.GlobalVariableList);
            n.XmlType = this.typeCheck.CheckGlobalVariableList(n);
            TraceNode(n);
            return n;
        }
        

Same methods

QilFactory::GlobalVariableList ( IList values ) : QilList

Usage Example

        /// <summary>
        /// Construct QIL from a rooted graph of QilNodes with a specific factory.
        /// </summary>
        public QilExpression(QilNodeType nodeType, QilNode root, QilFactory factory) : base(nodeType) {
            this.factory = factory;
            this.isDebug = factory.False();

            XmlWriterSettings settings = new XmlWriterSettings();
            settings.ConformanceLevel = ConformanceLevel.Auto;
            this.defWSet = factory.LiteralObject(settings);

            this.wsRules = factory.LiteralObject(new List<WhitespaceRule>());
            this.funList = factory.FunctionList();
            this.gloVars = factory.GlobalVariableList();
            this.gloParams = factory.GlobalParameterList();
            this.rootNod = root;
        }
All Usage Examples Of System.Xml.Xsl.Qil.QilFactory::GlobalVariableList