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

RawTextCtor() public method

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

Usage Example

Exemplo n.º 1
0
 public QilNode RawTextCtor(QilNode content)
 {
     return(_f.RawTextCtor(content));
 }