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

LiteralType() public method

public LiteralType ( XmlQueryType value ) : QilLiteral
value XmlQueryType
return QilLiteral
        public QilLiteral LiteralType(XmlQueryType value) {
            QilLiteral n = new QilLiteral(QilNodeType.LiteralType, value);
            n.XmlType = this.typeCheck.CheckLiteralType(n);
            TraceNode(n);
            return n;
        }