System.Xml.Xsl.Qil.QilFactory.Invoke C# (CSharp) Method

Invoke() public method

public Invoke ( QilNode function, QilNode arguments ) : QilInvoke
function QilNode
arguments QilNode
return QilInvoke
        public QilInvoke Invoke(QilNode function, QilNode arguments) {
            QilInvoke n = new QilInvoke(QilNodeType.Invoke, function, arguments);
            n.XmlType = this.typeCheck.CheckInvoke(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

Exemplo n.º 1
0
 public QilNode Invoke(QilFunction func, QilList args)
 {
     Debug.Assert(args.NodeType == QilNodeType.ActualParameterList);
     Debug.Assert(func.Arguments.Count == args.Count);
     return(_f.Invoke(func, args));
 }