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

StrParseQName() public method

public StrParseQName ( QilNode left, QilNode right ) : QilBinary
left QilNode
right QilNode
return QilBinary
        public QilBinary StrParseQName(QilNode left, QilNode right) {
            QilBinary n = new QilBinary(QilNodeType.StrParseQName, left, right);
            n.XmlType = this.typeCheck.CheckStrParseQName(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

Exemplo n.º 1
0
 public QilNode StrParseQName(QilNode str, QilNode ns)
 {
     return(_f.StrParseQName(str, ns));
 }