4 instantiations of QilFactory
System.Data.SqlXml (4)
System\Xml\Xsl\QIL\QilExpression.cs (1)
41public QilExpression(QilNodeType nodeType, QilNode root) : this(nodeType, root, new QilFactory()) {
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
62this.f = new QilFactory();
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
95f = new XsltQilFactory(new QilFactory(), debug);
System\Xml\Xsl\Xslt\XslAst.cs (1)
512private static QilFactory f = new QilFactory();
39 references to QilFactory
System.Data.SqlXml (39)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (3)
380protected QilFactory fac; 387public XmlILStateAnalyzer(QilFactory fac) { 725public XmlILElementAnalyzer(QilFactory fac) : base(fac) {
System\Xml\Xsl\QIL\QilBinary.cs (1)
17/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilChoice.cs (1)
19/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilCloneVisitor.cs (3)
18private QilFactory fac; 26public QilCloneVisitor(QilFactory fac) : this(fac, new SubstitutionList()) { 29public QilCloneVisitor(QilFactory fac, SubstitutionList subs) {
System\Xml\Xsl\QIL\QilDataSource.cs (1)
18/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilExpression.cs (3)
23private QilFactory factory; 47public QilExpression(QilNodeType nodeType, QilNode root, QilFactory factory) : base(nodeType) { 109public QilFactory Factory {
System\Xml\Xsl\QIL\QilFactory.cs (1)
33public QilExpression QilExpression(QilNode root, QilFactory factory) {
System\Xml\Xsl\QIL\QilList.cs (2)
17/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>. 73public override QilNode ShallowClone(QilFactory f) {
System\Xml\Xsl\QIL\QilLiteral.cs (1)
16/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilLoop.cs (1)
19/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilName.cs (1)
16/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilNode.cs (3)
22/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>. 90public virtual QilNode DeepClone(QilFactory f) { 97public virtual QilNode ShallowClone(QilFactory f) {
System\Xml\Xsl\QIL\QilPatternFactory.cs (4)
25private QilFactory f; 27public QilPatternFactory(QilFactory f, bool debug) { 33public QilFactory BaseFactory { get { return f; } } 71public QilExpression QilExpression(QilNode root, QilFactory factory) {
System\Xml\Xsl\QIL\QilPatternVisitor.cs (1)
29public QilPatternVisitor(QilPatterns patterns, QilFactory f) : base(f) {
System\Xml\Xsl\QIL\QilReplaceVisitor.cs (2)
20protected QilFactory f; 22public QilReplaceVisitor(QilFactory f) {
System\Xml\Xsl\QIL\QilSortKey.cs (1)
16/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilStrConcat.cs (1)
16/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilTargetType.cs (1)
18/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilTernary.cs (1)
17/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilUnary.cs (1)
17/// Don't construct QIL nodes directly; instead, use the <see cref="QilFactory">QilFactory</see>.
System\Xml\Xsl\QIL\QilXmlReader.cs (2)
32private QilFactory f; 42foreach (MethodInfo mi in typeof(QilFactory).GetMethods(BindingFlags.Public | BindingFlags.Instance)) {
System\Xml\Xsl\XPath\XPathQilFactory.cs (1)
19public XPathQilFactory(QilFactory f, bool debug) : base(f, debug) {
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
30public ReferenceReplacer(QilFactory f) : base(f) {
System\Xml\Xsl\Xslt\XslAst.cs (1)
512private static QilFactory f = new QilFactory();
System\Xml\Xsl\Xslt\XsltQilFactory.cs (1)
21public XsltQilFactory(QilFactory f, bool debug) : base(f, debug) {}