1 instantiation of QilSortKey
System.Data.SqlXml (1)
System\Xml\Xsl\QIL\QilFactory.cs (1)
636QilSortKey n = new QilSortKey(QilNodeType.SortKey, key, collation);
14 references to QilSortKey
System.Data.SqlXml (14)
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (1)
2480protected override QilNode VisitSortKey(QilSortKey local0) {
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (2)
2128foreach (QilSortKey ndKey in ndSort.Body) 2159private void VisitSortKey(QilSortKey ndKey, LocalBuilder locKeys) {
System\Xml\Xsl\QIL\QilFactory.cs (2)
635public QilSortKey SortKey(QilNode key, QilNode collation) { 636QilSortKey n = new QilSortKey(QilNodeType.SortKey, key, collation);
System\Xml\Xsl\QIL\QilPatternFactory.cs (2)
133public QilList SortKeyList(QilSortKey key) { 515public QilSortKey SortKey(QilNode key, QilNode collation) {
System\Xml\Xsl\QIL\QilPatternVisitor.cs (1)
210protected override QilNode VisitSortKey(QilSortKey n) { return NoReplace(n); }
System\Xml\Xsl\QIL\QilTypeChecker.cs (3)
107case QilNodeType.SortKey: return CheckSortKey((QilSortKey)n); 211CheckClassAndNodeType(child, typeof(QilSortKey), QilNodeType.SortKey); 576public XmlQueryType CheckSortKey(QilSortKey node) {
System\Xml\Xsl\QIL\QilVisitor.cs (2)
179case QilNodeType.SortKey: return VisitSortKey((QilSortKey)n); 355protected virtual QilNode VisitSortKey(QilSortKey n) { return VisitChildren(n); }
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
1505QilSortKey result = f.SortKey(select, collation);