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

StrLength() public method

public StrLength ( QilNode child ) : QilUnary
child QilNode
return QilUnary
        public QilUnary StrLength(QilNode child) {
            QilUnary n = new QilUnary(QilNodeType.StrLength, child);
            n.XmlType = this.typeCheck.CheckStrLength(n);
            TraceNode(n);
            return n;
        }
        

Usage Example

Exemplo n.º 1
0
 //-----------------------------------------------
 // string operators
 //-----------------------------------------------
 public QilNode StrLength(QilNode str)
 {
     return(_f.StrLength(str));
 }