1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Data.SqlXml</name>
</assembly>
<members>
<member name="F:System.Xml.Xsl.Runtime.XmlQueryItemSequence.Empty">
<summary>Returns a properly initialized, empty <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" />.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.Empty">
<summary>Gets an empty <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> that is properly initialized.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Empty">
<summary>Creates a new instance of <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" />.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.AncestorDocOrderIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter,System.Boolean)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.AncestorDocOrderIterator" />.</summary>
<param name="context">The node from which you start traversing ancestors.</param>
<param name="filter">Enables you to filter nodes based on the name. </param>
<param name="orSelf">
<see langword="true" /> if you want the <paramref name="context" /> node to be returned as a part of the iteration, instead of being filtered out.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.AncestorDocOrderIterator.MoveNext">
<summary>Positions the iterator on the next ancestor node in document order.</summary>
<returns>
<see langword="true" /> if the iterator was set to the next ancestor node in document order; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.AncestorIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter,System.Boolean)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.AncestorIterator" />.</summary>
<param name="context">The node from which you start traversing ancestors.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name. For more information, see <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" />. </param>
<param name="orSelf">
<see langword="true" /> if you want the <paramref name="context" /> node to be returned as a part of the iteration and not filtered out.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.AncestorIterator.MoveNext">
<summary>Positions the iterator on the next ancestor node. </summary>
<returns>
<see langword="true" /> if the next ancestor node exists; otherwise, <see langword="false" />. </returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.AttributeContentIterator.Create(System.Xml.XPath.XPathNavigator)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.AttributeContentIterator" />.</summary>
<param name="context">The node from which you start traversing attribute and child content nodes.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.AttributeContentIterator.MoveNext">
<summary>Positions the iterator on the next attribute or child content node. </summary>
<returns>
<see langword="true" /> if the next attribute or child content node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.AttributeIterator.Create(System.Xml.XPath.XPathNavigator)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.AttributeIterator" />.</summary>
<param name="context">The node from which you start traversing the attribute nodes.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.AttributeIterator.MoveNext">
<summary>Positions the iterator on the next attribute node. </summary>
<returns>
<see langword="true" /> if the next attribute node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.ContentIterator.Create(System.Xml.XPath.XPathNavigator)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.ContentIterator" />.</summary>
<param name="context">The node from which you start traversing the child content nodes.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.ContentIterator.MoveNext">
<summary>Positions the iterator on the next child content node. </summary>
<returns>
<see langword="true" /> if the next child content node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.ContentMergeIterator.Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.ContentMergeIterator" />. Merges multiple sets of content nodes in document order and removes duplicates.</summary>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.ContentMergeIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Positions the iterator on the next content or sibling node. </summary>
<param name="input">The input nodes. </param>
<returns>Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes" /> if there are no more content or sibling nodes. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode" /> if the next input node must be fetched first. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode" /> if the <see cref="P:System.Xml.Xsl.Runtime.ContentMergeIterator.Current" /> property was set to the next node while iterating through the nodes.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.DecimalAggregator.Average(System.Decimal)">
<summary>Averages <see langword="Decimal" /> values. </summary>
<param name="value">The <see langword="Decimal" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DecimalAggregator.Create">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.DecimalAggregator" />. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.DecimalAggregator.Maximum(System.Decimal)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is greater than the existing result. </summary>
<param name="value">The <see langword="Decimal" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DecimalAggregator.Minimum(System.Decimal)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is less than the existing result. </summary>
<param name="value">The <see langword="Decimal" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DecimalAggregator.Sum(System.Decimal)">
<summary>Adds a <see langword="Decimal" /> value to the existing result. </summary>
<param name="value">The <see langword="Decimal" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DescendantIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter,System.Boolean)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.DescendantIterator" />.</summary>
<param name="input">
<see cref="T:System.Xml.XPath.XPathNavigator" /> that identifies the node from which you start traversing descendants.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name. For more information, see <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" />.</param>
<param name="orSelf">
<see cref="T:System.Boolean" /> that indicates whether the current node is returned as part of the iteration or filtered out.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DescendantIterator.MoveNext">
<summary>Positions the iterator on the next descendant node.</summary>
<returns>
<see langword="true" /> if the next descendant node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.DescendantMergeIterator.Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter,System.Boolean)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.DescendantMergeIterator" />. Merges multiple sets of descendant nodes in document order and removes duplicates.</summary>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class that enables you to filter nodes based on the name. For more information, see <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" />. </param>
<param name="orSelf">
<see cref="T:System.Boolean" /> that indicates whether the current node is returned as part of the iteration or filtered out.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DescendantMergeIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Position this iterator to the next descendant node. </summary>
<param name="input">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object that identifies the input node.</param>
<returns>Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes" /> if there are no more descendant nodes. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode" /> if the next input node needs to be fetched first. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode" /> if while iterating through the nodes the <see cref="P:System.Xml.Xsl.Runtime.DescendantMergeIterator.Current" /> property was set to the next node.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.DifferenceIterator.Create(System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.DifferenceIterator" /> class.</summary>
<param name="runtime">The <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DifferenceIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Positions this iterator to the next node in the union.</summary>
<param name="nestedNavigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object that identifies the current node.</param>
<returns>The <see cref="T:System.Xml.Xsl.Runtime.SetIteratorResult" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.DodSequenceMerge.AddSequence(System.Collections.Generic.IList{System.Xml.XPath.XPathNavigator})">
<summary>Adds a new sequence to the list of sequences to merge.</summary>
<param name="sequence">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DodSequenceMerge.Create(System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Initializes this instance of <see cref="T:System.Xml.Xsl.Runtime.DodSequenceMerge" /> .</summary>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class, which provides methods and properties to support the XSLT processor.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DodSequenceMerge.MergeSequences">
<summary>Returns the fully-merged sequence.</summary>
<returns>The fully-merged sequence.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.DoubleAggregator.Average(System.Double)">
<summary>Returns the average of a sequence of <see langword="double" /> values.</summary>
<param name="value">A value of type <see langword="double" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DoubleAggregator.Create">
<summary>Initializes a sequence of <see langword="double" /> values.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.DoubleAggregator.Maximum(System.Double)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is greater than the existing result. </summary>
<param name="value">A value of type <see langword="double" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DoubleAggregator.Minimum(System.Double)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is less than the existing result. </summary>
<param name="value">A value of type <see langword="double" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.DoubleAggregator.Sum(System.Double)">
<summary>Adds a <see langword="Double" /> value to the existing result..</summary>
<param name="value">A value of type <see langword="double" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.ElementContentIterator.Create(System.Xml.XPath.XPathNavigator,System.String,System.String)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.ElementContentIterator" />.</summary>
<param name="context">The node from which you start traversing child elements.</param>
<param name="localName">The local name.</param>
<param name="ns">The namespace.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.ElementContentIterator.MoveNext">
<summary>Positions the iterator on the next child element with a matching name.</summary>
<returns>
<see langword="true" /> if the iterator was set to the next child element with the matching name; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.FollowingSiblingIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.FollowingSiblingIterator" />.</summary>
<param name="context">The node from which you start traversing the child content nodes.</param>
<param name="filter">Enables you to filter nodes based on the name. </param>
</member>
<member name="M:System.Xml.Xsl.Runtime.FollowingSiblingIterator.MoveNext">
<summary>Positions the iterator on the next sibling content node. </summary>
<returns>
<see langword="true" /> if the next sibling content node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator.Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator" />.</summary>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Position this iterator to the next content or sibling node. </summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<returns>Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes" /> if there are no more content or sibling nodes. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode" /> if the next input node needs to be fetched first. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode" /> if, while iterating through the nodes, the <see cref="P:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator.Current" /> property was set to the next node.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.IdIterator.Create(System.Xml.XPath.XPathNavigator,System.String)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.IdIterator" />.</summary>
<param name="context">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains context.</param>
<param name="value">String to contain the value of the iterator.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.IdIterator.MoveNext">
<summary>Positions the iterator on the next ID element. </summary>
<returns>
<see langword="true" /> if the next node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int32Aggregator.Average(System.Int32)">
<summary>Finds the average of a sequence of Int32 values.</summary>
<param name="value">A value of type <see langword="Int32" /> that identifies a group of items to average, such as a column in a table.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int32Aggregator.Create">
<summary>Initializes a sequence of <see langword="Int32" /> values.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int32Aggregator.Maximum(System.Int32)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is greater than the existing result.</summary>
<param name="value">A value of type <see langword="Int32" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int32Aggregator.Minimum(System.Int32)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is less than the existing result.</summary>
<param name="value">A value of type <see langword="Int32" /></param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int32Aggregator.Sum(System.Int32)">
<summary>Adds an <see langword="Int32" /> value to the existing result.</summary>
<param name="value">A value of type <see langword="Int32" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int64Aggregator.Average(System.Int64)">
<summary>Finds an average of a sequence of <see langword="Int64" /> values.</summary>
<param name="value">A value of type <see langword="Int64" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int64Aggregator.Create">
<summary>Initializes a sequence of <see langword="Int64" /> values.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int64Aggregator.Maximum(System.Int64)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is greater than the existing result. </summary>
<param name="value">A value of type <see langword="Int64" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int64Aggregator.Minimum(System.Int64)">
<summary>Assigns the <paramref name="value" /> parameter to the existing result if the <paramref name="value" /> parameter is less than the existing result. </summary>
<param name="value">A value of type <see langword="Int64" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.Int64Aggregator.Sum(System.Int64)">
<summary>Adds an <see langword="Int64" /> value to the existing result.</summary>
<param name="value">A value of type <see langword="Int64" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.IntersectIterator.Create(System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.IntersectIterator" /> class.</summary>
<param name="runtime">The <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.IntersectIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Positions the iterator to the next node in the union.</summary>
<param name="nestedNavigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<returns>The <see cref="T:System.Xml.Xsl.Runtime.SetIteratorResult" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.NamespaceIterator.Create(System.Xml.XPath.XPathNavigator)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.NamespaceIterator" />.</summary>
<param name="context">
<see cref="T:System.Xml.XPath.XPathNavigator" /> that identifies the <see cref="T:System.Xml.Xsl.XsltContext" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.NamespaceIterator.MoveNext">
<summary>Positions the iterator on the next namespace node. </summary>
<returns>
<see langword="true" /> if the next namespace node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.NodeKindContentIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.XPath.XPathNodeType)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.NodeKindContentIterator" />.</summary>
<param name="context">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<param name="nodeType">
<see cref="T:System.Xml.XPath.XPathNodeType" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.NodeKindContentIterator.MoveNext">
<summary>Positions the iterator on the next child content node with a matching node kind. </summary>
<returns>
<see langword="true" /> if the next child content node with a matching node kind exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.NodeRangeIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter,System.Xml.XPath.XPathNavigator)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.NodeRangeIterator" />. </summary>
<param name="start">Node at which iteration begins.</param>
<param name="filter">Test expression that determines whether a node is to be filtered out.</param>
<param name="end">Node at which iteration ends.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.NodeRangeIterator.MoveNext">
<summary>Positions the iterator on the next node. </summary>
<returns>
<see langword="true" /> if the next node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.ParentIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.ParentIterator" />.</summary>
<param name="context">The node from which you start traversing the nodes.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.ParentIterator.MoveNext">
<summary>Positions the iterator on the next matching parent node. </summary>
<returns>
<see langword="true" /> if the next matching parent node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.PrecedingIterator" />. The <see cref="T:System.Xml.Xsl.Runtime.PrecedingIterator" /> does not contain duplicates.</summary>
<param name="context">The node from which you start traversing the nodes.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingIterator.MoveNext">
<summary>Positions the iterator on the next preceding node in reverse document order. </summary>
<returns>
<see langword="true" /> if the next preceding node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator" />.</summary>
<param name="context">The node from which you start traversing the nodes.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name. For more information, see <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator.MoveNext">
<summary>Positions the iterator on the next preceding sibling node. </summary>
<returns>
<see langword="true" /> if the next preceding sibling node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingSiblingIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.PrecedingSiblingIterator" />.</summary>
<param name="context">The node from which you start traversing the nodes.</param>
<param name="filter">Enables you to filter nodes based on the name. </param>
</member>
<member name="M:System.Xml.Xsl.Runtime.PrecedingSiblingIterator.MoveNext">
<summary>Positions the iterator on the next preceding sibling node in the reverse document order. </summary>
<returns>
<see langword="true" /> if the next preceding sibling node exists; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.StringConcat.Clear">
<summary>Clears the result string.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.StringConcat.Concat(System.String)">
<summary>Concatenates a new string to the result.</summary>
<param name="value">A <see langword="string" /> value to be concatenated to the result.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.StringConcat.GetResult">
<summary>Gets the result string.</summary>
<returns>A <see langword="string" /> value that contains the result.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.UnionIterator.Create(System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.UnionIterator" /> class.</summary>
<param name="runtime">The <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.UnionIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Positions this iterator to the next node in the union.</summary>
<param name="nestedNavigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<returns>The <see cref="T:System.Xml.Xsl.Runtime.SetIteratorResult" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlCollation.Equals(System.Object)">
<summary>Returns <see langword="true" /> if this XML extension function has the same values as another XML extension function.</summary>
<param name="obj">
<see cref="T:System.Object" /> with which to determine equality..</param>
<returns>Returns <see langword="true" /> if this XML extension function has the same values as another XML extension function, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlCollation.GetHashCode">
<summary>Returns the object's hash code.</summary>
<returns>Returns the object's hash code.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILIndex.Add(System.String,System.Xml.XPath.XPathNavigator)">
<summary>Adds a node that is indexed by the specified key value.</summary>
<param name="key">The specified key.</param>
<param name="navigator">An instance of <see cref="T:System.Xml.XPath.XPathNavigator" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILIndex.Lookup(System.String)">
<summary>Looks up a sequence of nodes that are indexed by the specified key value.</summary>
<param name="key">The specified key.</param>
<returns>A sequence of nodes that are indexed by the specified key value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.BooleanToAtomicValue(System.Boolean,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a Boolean value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">The <see langword="Boolean" /> value to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Boolean" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.BytesToAtomicValue(System.Byte[],System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts an array of bytes to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">An array of <see langword="Byte" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Byte" /> array.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.DateTimeToAtomicValue(System.DateTime,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a <see langword="DateTime" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="DateTime" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="DateTime" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.DecimalToAtomicValue(System.Decimal,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a decimal value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="Decimal" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Decimal" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.DoubleToAtomicValue(System.Double,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a <see langword="Double" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="Double" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Double" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.Int32ToAtomicValue(System.Int32,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts an <see langword="Int32" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="Int32 " />to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Int32" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.Int64ToAtomicValue(System.Int64,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts an <see langword="Int64" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="Int64" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Int64" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.ItemsToNavigators(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts a list or sequence of <see cref="T:System.Xml.XPath.XPathItem" /> objects to a sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> objects or values.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A generic list of type <see cref="T:System.Xml.XPath.XPathNavigator" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.NavigatorsToItems(System.Collections.Generic.IList{System.Xml.XPath.XPathNavigator})">
<summary>Converts a sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> objects or values to a list or sequence of <see cref="T:System.Xml.XPath.XPathItem" /> objects.</summary>
<param name="listNavigators">A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</param>
<returns>A generic list of type <see cref="T:System.Xml.XPath.XPathItem" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.SingleToAtomicValue(System.Single,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a <see langword="Single" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="Single" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="Single" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.StringToAtomicValue(System.String,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a string value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see langword="String" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="String" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.TimeSpanToAtomicValue(System.TimeSpan,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts a <see cref="T:System.TimeSpan" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">A value of type <see cref="T:System.TimeSpan" /> to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="TimeSpan" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlILStorageConverter.XmlQualifiedNameToAtomicValue(System.Xml.XmlQualifiedName,System.Int32,System.Xml.Xsl.Runtime.XmlQueryRuntime)">
<summary>Converts an <see cref="T:System.Xml.XmlQualifiedName" /> value to an <see cref="T:System.Xml.Schema.XmlAtomicValue" />.</summary>
<param name="value">An instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class to convert.</param>
<param name="index">A value of type <see langword="Int32" /> that provides the index of the item to convert.</param>
<param name="runtime">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> class.</param>
<returns>The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object for the <see langword="XmlQualifiedName" /> value.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.#ctor">
<summary>Provides a flexible filtering abstraction over <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.IsFiltered(System.Xml.XPath.XPathNavigator)">
<summary>Return <see langword="true" /> if the navigator's current node matches the filter condition.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the current node matches the condition, otherwise returns <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToContent(System.Xml.XPath.XPathNavigator)">
<summary>Repositions the navigator to the first matching content node or attribute and skips over filtered nodes. If there are no matching nodes, the navigator does not move and the method returns false.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the navigator is repositioned on a child element with a matching name, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToFollowing(System.Xml.XPath.XPathNavigator,System.Xml.XPath.XPathNavigator)">
<summary>Repositions the navigator to the following matching content node or attribute and skips over filtered nodes. If there are no matching nodes, the navigator does not move and the method returns false.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class that identifies the beginning of the range over which navigation can move.</param>
<param name="navigatorEnd">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class that identifies the end of the range over which navigation can move.</param>
<returns>
<see langword="true" /> if the navigator is repositioned on the next element with a matching name, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToFollowingSibling(System.Xml.XPath.XPathNavigator)">
<summary>Repositions the navigator to the sibling matching content node or descendent and skips over filtered nodes. If there are no matching nodes, the navigator does not move and the method returns false.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the navigator is repositioned on the next element sibling with a matching name, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToNextContent(System.Xml.XPath.XPathNavigator)">
<summary>Repositions the navigator to the next matching content node or attribute and skips over filtered nodes. If there are no matching nodes, the navigator does not move and the method returns false.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the navigator is repositioned on the next element child with a matching name, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToPreviousSibling(System.Xml.XPath.XPathNavigator)">
<summary>Repositions the navigator to the previous matching sibling node and skips over filtered nodes. If there are no matching nodes, the navigator does not move and the method returns false.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the navigator is repositioned on the previous element sibling with a matching name, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.GetDataSource(System.String,System.String)">
<summary>Gets the data source specified by the <paramref name="uriRelative" /> and <paramref name="uriBase" /> from the T:System.Xml.XmlResolver that the user provided.</summary>
<param name="uriRelative">A value of type <see langword="string" />.</param>
<param name="uriBase">A value of type <see langword="string" />.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.GetLateBoundObject(System.String)">
<summary>Returns the extension object that is mapped to the specified namespace, or null if no object is mapped.</summary>
<param name="namespaceUri">A value of type <see langword="string" />.</param>
<returns>An extension object.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.GetParameter(System.String,System.String)">
<summary>Gets a named parameter from the external argument list.</summary>
<param name="localName">A value of type <see langword="string" />.</param>
<param name="namespaceUri">A value of type <see langword="string" />.</param>
<returns>
<see langword="null" /> if no argument list was provided, or if there is no parameter by that name; otherwise, a named parameter from the external argument list.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.InvokeXsltLateBoundFunction(System.String,System.String,System.Collections.Generic.IList{System.Xml.XPath.XPathItem}[])">
<summary>Gets a late-bound extension object from the external argument list.</summary>
<param name="name">A value of type <see langword="string" />.</param>
<param name="namespaceUri">A value of type <see langword="string" />.</param>
<param name="args">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>Returns a generic list of type <see cref="T:System.Xml.XPath.XPathItem" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.LateBoundFunctionExists(System.String,System.String)">
<summary>Returns true if the late-bound object identified by <paramref name="namespaceUri" /> contains a method that matches <paramref name="name" />.</summary>
<param name="name">A value of type <see langword="string" />.</param>
<param name="namespaceUri">A value of type <see langword="string" />.</param>
<returns>
<see langword="true" /> if the late bound object matches name; otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryContext.OnXsltMessageEncountered(System.String)">
<summary>Raises an <see cref="E:System.Xml.Xsl.XsltArgumentList.XsltMessageEncountered" /> event.</summary>
<param name="message">A value of type <see langword="string" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class. </summary>
<param name="capacity">A value of type <see langword="Int32" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.#ctor(System.Xml.XPath.XPathItem)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class. </summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.AddClone(System.Xml.XPath.XPathItem)">
<summary>Adds an item to the sequence. If the item is a navigator, this method clones it before adding it to the sequence.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence)">
<summary>Clears and reuses an <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> object if it is available. If the <paramref name="seq" /> parameter is null, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" />.</summary>
<param name="seq">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryItemSequence.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence,System.Xml.XPath.XPathItem)">
<summary>Clears and reuses an <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> object if it is available. If the <paramref name="seq" /> parameter is null, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" />. This method then adds a new item to reused or new sequence.</summary>
<param name="seq">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class.</param>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.#ctor(System.Collections.Generic.IList{System.Xml.XPath.XPathNavigator})">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class. </summary>
<param name="list">A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class. </summary>
<param name="capacity">A value of type <see langword="Int32" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.#ctor(System.Xml.XPath.XPathNavigator)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class. </summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.#ctor(System.Xml.XPath.XPathNavigator[],System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class. </summary>
<param name="array">An array of instances of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<param name="size">A value of type <see langword="int" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.AddClone(System.Xml.XPath.XPathNavigator)">
<summary>Clone the navigator and then adds a node to the sequence.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence)">
<summary>Clears and reuses the specified <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> if it is available. If the <paramref name="seq" /> parameter is <see langword="null" />, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" />.</summary>
<param name="seq">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence,System.Xml.XPath.XPathNavigator)">
<summary>Clears and reuses the specified <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> if it is available. If the <paramref name="seq" /> parameter is <see langword="null" />, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> and adds <paramref name="navigator" /> to the sequence.</summary>
<param name="seq">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class.</param>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.DocOrderDistinct(System.Collections.Generic.IComparer{System.Xml.XPath.XPathNavigator})">
<summary>Returns a sequence that contains all the distinct nodes in this cache, sorted in document order.</summary>
<param name="comparer">A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</param>
<returns>A sequence of <see cref="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence" /> class instances.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#Add(System.Xml.XPath.XPathItem)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
<param name="value">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#Clear">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#Contains(System.Xml.XPath.XPathItem)">
<summary>Returns true if the specified value is in the sequence.</summary>
<param name="value">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>
<see langword="true" /> if the value is in the sequence; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#CopyTo(System.Xml.XPath.XPathItem[],System.Int32)">
<summary>Copies the contents of this sequence to the specified array, starting at the specified index in the target array.</summary>
<param name="array">An array of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<param name="index">A value of type <see langword="int" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#Remove(System.Xml.XPath.XPathItem)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
<param name="value">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>
<see langword="true" /> if the item is removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#IEnumerable{System#Xml#XPath#XPathItem}#GetEnumerator">
<summary>Returns the <see cref="T:System.Collections.Generic.IEnumerator`1" /> of <see cref="T:System.Xml.XPath.XPathItem" /> implementation.</summary>
<returns>The IEnumerator<XPathItem> implementation.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#IList{System#Xml#XPath#XPathItem}#IndexOf(System.Xml.XPath.XPathItem)">
<summary>Returns the index of the specified value in the sequence.</summary>
<param name="value">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>The index of the specified value in the sequence.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#IList{System#Xml#XPath#XPathItem}#Insert(System.Int32,System.Xml.XPath.XPathItem)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
<param name="index">A value of type <see langword="int" />.</param>
<param name="value">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#IList{System#Xml#XPath#XPathItem}#RemoveAt(System.Int32)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="index">A value of type <see langword="int" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.Close">
<summary>This method is implemented as empty and does nothing.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.EndCopy(System.Xml.XPath.XPathNavigator)">
<summary>Ends the shallow copy of the navigator's current node. This method should only be called for element and document nodes.</summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.EndTree">
<summary>Writes the end of the tree.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.Flush">
<summary>This method is implemented as empty and does nothing.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.LookupPrefix(System.String)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="ns">String that contains namespace name.</param>
<returns>A string that contains the prefix.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.StartCopy(System.Xml.XPath.XPathNavigator)">
<summary>Begins the shallow copy of the navigator's current node to output. </summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<returns>
<see langword="true" /> if <see langword="EndCopy" /> should be called to complete the copy operation; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.StartElementContentUnchecked">
<summary>Called after an element's attributes have been enumerated, but before any children have been enumerated. Well-formedness is assumed, so no additional checks are performed.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.StartTree(System.Xml.XPath.XPathNodeType)">
<summary>Starts the construction of a new tree.</summary>
<param name="rootType">
<see cref="T:System.Xml.XPath.XPathNodeType" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteBase64(System.Byte[],System.Int32,System.Int32)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="buffer">
<see cref="T:System.Byte" /> buffer object that contains data to write.</param>
<param name="index">
<see cref="T:System.Int32" /> that contains start index.</param>
<param name="count">
<see cref="T:System.Int32" /> that contains count bytes.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteCData(System.String)">
<summary> Empty implementation that does nothing.</summary>
<param name="text">String that contains data to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteCharEntity(System.Char)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="ch">
<see cref="T:System.Char" /> that contains a character to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteChars(System.Char[],System.Int32,System.Int32)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="buffer">
<see cref="T:System.Char" /> array of buffer that contains data to write.</param>
<param name="index">
<see cref="T:System.Int32" /> that contains start index.</param>
<param name="count">
<see cref="T:System.Int32" /> that contains count of characters to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteComment(System.String)">
<summary>Writes the comment. The method does not verify well-formedness. Other methods called by this one do the necessary checks.</summary>
<param name="text">String that contains the comment to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteCommentString(System.String)">
<summary>Cache the comment's string.</summary>
<param name="text">String that contains the comment to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteDocType(System.String,System.String,System.String,System.String)">
<summary>Throws <see cref="T:System.NotSupportedException" />. Should never be called.</summary>
<param name="name">String that contains document name.</param>
<param name="pubid">String that contains publication id.</param>
<param name="sysid">String that contains system id.</param>
<param name="subset">String that contains subset name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndAttribute">
<summary>Checks the attribute for well-formedness and writes the end of the attribute.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndAttributeUnchecked">
<summary>Writes the end of the attribute. There is an assumption of well-formedness, so no additional checks are performed.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndComment">
<summary>Checks the comment for well-formedness and writes the end of the comment.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndDocument">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndElement">
<summary>Checks the element for well-formedness and writes the end of the element.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndElementUnchecked(System.String)">
<summary>Writes the end of the element with local name. Well-formedness is assumed, so no additional checks are performed.</summary>
<param name="localName">String that contains local name of element.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndElementUnchecked(System.String,System.String,System.String)">
<summary>Writes the end of the element with prefix, local name, and namespace. No checks are performed.</summary>
<param name="prefix">String that contains element prefix.</param>
<param name="localName">String that contains local name of element.</param>
<param name="ns">String that contains namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndNamespace">
<summary>Checks the namespace for well-formedness and writes the namespace.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndProcessingInstruction">
<summary>Checks the processing instruction for well-formedness and writes the processing instruction.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEndRoot">
<summary>Writes the end of the root of the tree and resets the state.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteEntityRef(System.String)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="name">String that contains name of entity.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteFullEndElement">
<summary>Checks the element for well-formedness before writing the end of the element.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteItem(System.Xml.XPath.XPathItem)">
<summary>Write an item to output. If currently constructing an Xml tree, then the item is always copied. At the top-level, the item's identity is preserved unless it is an atomic value.</summary>
<param name="item">
<see cref="T:System.Xml.XPath.XPathItem" /> object to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteNamespaceDeclaration(System.String,System.String)">
<summary>Checks the namespace declaration for well-formedness and writes the namespace declaration.</summary>
<param name="prefix">String that contains namespace prefix.</param>
<param name="ns">String that contains namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteNamespaceDeclarationUnchecked(System.String,System.String)">
<summary>Adds a new namespace declaration - xmlns:prefix="ns" - to the set of in-scope declarations. This method does not perform any additional checks.</summary>
<param name="prefix">String that contains namespace prefix.</param>
<param name="ns">String that contains namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteNamespaceString(System.String)">
<summary>Caches the namespace's text.</summary>
<param name="text">String that contains fully qualified namespace.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteProcessingInstruction(System.String,System.String)">
<summary>Writes the processing instruction. No checks for well-formedness are done by this method; the called methods do checks if needed.</summary>
<param name="target">String that contains target of instruction.</param>
<param name="text">String that contains text of instruction.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteProcessingInstructionString(System.String)">
<summary>Caches the processing instruction's text.</summary>
<param name="text">String that contains instruction.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteRaw(System.Char[],System.Int32,System.Int32)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="buffer">
<see cref="T:System.Char" /> buffer array to be written.</param>
<param name="index">
<see cref="T:System.Int32" /> that contains start index.</param>
<param name="count">
<see cref="T:System.Int32" /> that contains count characters to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteRaw(System.String)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="data">String that contains raw data.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteRawUnchecked(System.String)">
<summary>Writes a text block without escaping special characters.</summary>
<param name="text">String that contains text to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttribute(System.String,System.String,System.String)">
<summary>Checks the attribute for well-formedness before writing the start of the attribute.</summary>
<param name="prefix">String that contains prefix of attribute.</param>
<param name="localName">String that contains local name of attribute.</param>
<param name="ns">String that contains namespace of attribute.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeComputed(System.String,System.Int32)">
<summary>Writes an attribute with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="tagName">String that contains tag name.</param>
<param name="prefixMappingsIndex">
<see cref="T:System.Int32" /> that contains prefix mapping index.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeComputed(System.String,System.String)">
<summary>Writes an attribute with a name that is computed from a "prefix:localName" tag name and a set of prefix mappings.</summary>
<param name="tagName">String that contains tag name of attribute.</param>
<param name="ns">String that contains namespace of attribute.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeComputed(System.Xml.XmlQualifiedName)">
<summary>Writes an attribute with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="name">String that contains name of attribute.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeComputed(System.Xml.XPath.XPathNavigator)">
<summary>Writes an attribute with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeLocalName(System.String)">
<summary>Writes the start of the attribute with an empty prefix, namespace, and null schema type.</summary>
<param name="localName">String that contains local name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeUnchecked(System.String)">
<summary>Writes the start of the attribute with local name.</summary>
<param name="localName">String that contains the local name of the attribute.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartAttributeUnchecked(System.String,System.String,System.String)">
<summary>Writes the start of the attribute with prefix, local name and ns without checks for well-formedness.</summary>
<param name="prefix">String that contains the prefix of the namespace.</param>
<param name="localName">String that contains the local name of the attribute.</param>
<param name="ns">String that contains the namespace.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartComment">
<summary>Checks the start of the comment for well-formedness and writes the start of the comment.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartDocument">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartDocument(System.Boolean)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="standalone">Boolean that indicates whether to write the XML declaration with the version number that appears at the beginning of the document.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElement(System.String,System.String,System.String)">
<summary>Writes start element after checks that ensure well-formedness.</summary>
<param name="prefix">String that contains the namespace prefix.</param>
<param name="localName">String that contains the local name of the element.</param>
<param name="ns">String that contains the namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementComputed(System.String,System.Int32)">
<summary>Writes an element with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="tagName">String that contains the tag name.</param>
<param name="prefixMappingsIndex">
<see cref="T:System.Int32" /> that contains the index.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementComputed(System.String,System.String)">
<summary>Writes an element with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="tagName">String that contains the tag name.</param>
<param name="ns">String that contains the namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementComputed(System.Xml.XmlQualifiedName)">
<summary>Writes an element with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="name">
<see cref="T:System.Xml.XmlQualifiedName" /> that contains the name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementComputed(System.Xml.XPath.XPathNavigator)">
<summary>Writes an element with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementLocalName(System.String)">
<summary>Writes the local name with an empty prefix and namespace.</summary>
<param name="localName">String that contains the local name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementUnchecked(System.String)">
<summary>Writes the start of an element. There is an assumption of well-formedness, so no additional checks are performed.</summary>
<param name="localName">String that contains the local name of the start element.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartElementUnchecked(System.String,System.String,System.String)">
<summary>Writes an element with a name that is computed from a prefix:localName tag name and a set of prefix mappings.</summary>
<param name="prefix">String that contains the namespace prefix.</param>
<param name="localName">String that contains the local name of the start element.</param>
<param name="ns">String that contains the namespace name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartNamespace(System.String)">
<summary>Checks for well-formedness and writes the start of the namespace.</summary>
<param name="prefix">String that contains the namespace prefix.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartProcessingInstruction(System.String)">
<summary>Checks the comment for well-formedness and writes the start of the processing instruction.</summary>
<param name="target">String that contains the name of the target of the processing instruction.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStartRoot">
<summary>Checks the root of the tree for well-formedness and writes the root of the tree.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteString(System.String)">
<summary>Checks the string for well-formedness and writes text.</summary>
<param name="text">String that contains text to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteStringUnchecked(System.String)">
<summary>Writes text. Well-formedness is assumed, so no checks are performed.</summary>
<param name="text">String that contains text to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteSurrogateCharEntity(System.Char,System.Char)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="lowChar">
<see cref="T:System.Char" /> of the low character.</param>
<param name="highChar">
<see cref="T:System.Char" /> of the high character.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteWhitespace(System.String)">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<param name="ws">String that contains the whitespace to write.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryOutput.XsltCopyOf(System.Xml.XPath.XPathNavigator)">
<summary>Copies a node by value to output according to the following Xslt rules: identity is never preserved, if the item is an Rtf, preserve serialization hints when copying, and if the item is a root node, copy the children of the root.</summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.AddNewIndex(System.Xml.XPath.XPathNavigator,System.Int32,System.Xml.Xsl.Runtime.XmlILIndex)">
<summary>Adds a newly built index over the specified context document to the existing collection of indexes.</summary>
<param name="context">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<param name="indexId">A value of type <see langword="int" />.</param>
<param name="index">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlILIndex" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ChangeTypeXsltArgument(System.Int32,System.Object,System.Type)">
<summary>Converts a value from the CLR type of the <paramref name="value" /> parameter to CLR <paramref name="destinationType" /> by using V1 XSLT rules. Converts any result tree fragment values to nodes.</summary>
<param name="indexType">A value of type <see langword="Int32" />.</param>
<param name="value">A value of type <see langword="object" />.</param>
<param name="destinationType">A value of type <see langword="Type" />.</param>
<returns>A value of type <see langword="object" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ChangeTypeXsltResult(System.Int32,System.Object)">
<summary>Converts from the CLR type of the <paramref name="value" /> parameter to the default CLR type by which intermediate language generation represents the XML type, based on the conversion rules of the XML type.</summary>
<param name="indexType">A value of type <see langword="int" />.</param>
<param name="value">A value of type <see langword="object" />.</param>
<returns>A value of type <see langword="object" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ComparePosition(System.Xml.XPath.XPathNavigator,System.Xml.XPath.XPathNavigator)">
<summary>Compares the relative positions of two navigators.</summary>
<param name="navigatorThis">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<param name="navigatorThat">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>-1 if <paramref name="navigatorThis" /> is before <paramref name="navigatorThat" />; 1 if <paramref name="navigatorThis" /> is after <paramref name="navigatorThat" />; 0 if both navigators are positioned at the same node.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.CreateCollation(System.String)">
<summary>Creates a collation from a string.</summary>
<param name="collation">A value of type <see langword="string" />.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.DebugGetGlobalNames">
<summary>Returns an array containing the names of all the global variables and parameters used in this query.</summary>
<returns>An array of <see langword="string" /> values.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.DebugGetGlobalValue(System.String)">
<summary>Gets the value of a global value that has the specified name.</summary>
<param name="name">A value of type <see langword="string" />.</param>
<returns>A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances, or <see langword="null" /> if there is no global value that has the specified name.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.DebugGetXsltValue(System.Collections.IList)">
<summary>Converts a sequence to its appropriate XSLT type.</summary>
<param name="seq">An instance of the <see cref="T:System.Collections.IList" /> class.</param>
<returns>A value of type <see langword="object" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.DebugSetGlobalValue(System.String,System.Object)">
<summary>Sets the value of a global value that has the specified name.</summary>
<param name="name">A value of type <see langword="string" />.</param>
<param name="value">A value of type <see langword="object" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.DocOrderDistinct(System.Collections.Generic.IList{System.Xml.XPath.XPathNavigator})">
<summary>Gets distinct sorted nodes from the specified sequence. </summary>
<param name="seq">A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</param>
<returns>An <see cref="T:System.Collections.IList" /> of <see cref="T:System.Xml.XPath.XPathNavigator" /> objects.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.EarlyBoundFunctionExists(System.String,System.String)">
<summary>Determines whether the specified early-bound object contains a method with the specified name.</summary>
<param name="name">The method name to look for.</param>
<param name="namespaceUri">Identifies the early-bound object.</param>
<returns>
<see langword="true" /> if the early-bound object identified by <paramref name="namespaceUri" /> contains a method that matches <paramref name="name" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.EndRtfConstruction(System.Xml.Xsl.Runtime.XmlQueryOutput@)">
<summary>Finishes constructing an RTF.</summary>
<param name="output">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.EndSequenceConstruction(System.Xml.Xsl.Runtime.XmlQueryOutput@)">
<summary>Finishes constructing a nested sequence of items.</summary>
<param name="output">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> class.</param>
<returns>A sequence of instances of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.FindIndex(System.Xml.XPath.XPathNavigator,System.Int32,System.Xml.Xsl.Runtime.XmlILIndex@)">
<summary>Returns the index with the specified ID if it has already been created over the specified document, and returns <see langword="true" />. Otherwise, creates a new, empty index and returns <see langword="false" />.</summary>
<param name="context">The context document.</param>
<param name="indexId">The index ID to look for.</param>
<param name="index">The returned index.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlILIndex" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GenerateId(System.Xml.XPath.XPathNavigator)">
<summary>Generate a unique string identifier for the specified node.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetAtomizedName(System.Int32)">
<summary>Gets the atomized name at the specified index in the array of names.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetCollation(System.Int32)">
<summary>Gets a collation that was statically created.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetEarlyBoundObject(System.Int32)">
<summary>Gets the specifiied early-bound extension object. If this object does not yet exist, creates an instance using the corresponding <see cref="T:System.Reflection.ConstructorInfo" />.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>A value of type <see langword="object" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetGlobalValue(System.Int32)">
<summary>Returns the value that is bound to the specified global variable. If the value has not yet been computed, computes it and stores it in the global variable.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>The value that is bound to the specified global variable. </returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetNameFilter(System.Int32)">
<summary>Gets the name filter at the specified index in the array of filters.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.GetTypeFilter(System.Xml.XPath.XPathNodeType)">
<summary>Gets a filter that filters nodes of the specified type.</summary>
<param name="nodeType">An instance of the <see cref="T:System.Xml.XPath.XPathNodeType" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.IsGlobalComputed(System.Int32)">
<summary>Returns true if the specified global value has already been computed.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>
<see langword="true" /> if the value has been computed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.IsQNameEqual(System.Xml.XPath.XPathNavigator,System.Int32,System.Int32)">
<summary>Determines whether the <see cref="P:System.Xml.XPath.XPathNavigator.LocalName" /> and <see cref="P:System.Xml.XPath.XPathNavigator.NamespaceURI" /> properties of the specified <see cref="T:System.Xml.XPath.XPathNavigator" /> are equal to the names specified in the parameters.</summary>
<param name="navigator">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<param name="indexLocalName">A value of type <see langword="int" />.</param>
<param name="indexNamespaceUri">A value of type <see langword="int" />.</param>
<returns>
<see langword="true" /> if the names are equal; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.IsQNameEqual(System.Xml.XPath.XPathNavigator,System.Xml.XPath.XPathNavigator)">
<summary>Compares the <see cref="P:System.Xml.XPath.XPathNavigator.LocalName" /> and <see cref="P:System.Xml.XPath.XPathNavigator.NamespaceURI" /> properties of two <see cref="T:System.Xml.XPath.XPathNavigator" /> instances to check if they are equal.</summary>
<param name="n1">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<param name="n2">An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</param>
<returns>
<see langword="true" /> if the names are equal; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.MatchesXmlType(System.Collections.Generic.IList{System.Xml.XPath.XPathItem},System.Int32)">
<summary>Returns <see langword="true" /> if the type of every item in the specified sequence matches the XML type that the specified index identifies.</summary>
<param name="seq">An <see cref="T:System.Collections.Generic.IList`1" /> of <see cref="T:System.Xml.XPath.XPathItem" />objects.</param>
<param name="indexType">The index.</param>
<returns>
<see langword="true" /> if the type of <paramref name="seq" /> is a subtype of the <paramref name="indexType" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.MatchesXmlType(System.Collections.Generic.IList{System.Xml.XPath.XPathItem},System.Xml.Schema.XmlTypeCode)">
<summary>Determines whether the type of the specified sequence is a subtype of the specified singleton type.</summary>
<param name="seq">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<param name="code">A singleton type.</param>
<returns>
<see langword="true" /> if the type of <paramref name="seq" /> is a subtype the type specified by <paramref name="code" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.MatchesXmlType(System.Xml.XPath.XPathItem,System.Int32)">
<summary>Returns <see langword="true" /> if the type of the specified <see cref="T:System.Xml.XPath.XPathItem" /> object matches the specified XML type.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<param name="indexType">The index in the array of XML types..</param>
<returns>
<see langword="true" /> if the type of the specified <see cref="T:System.Xml.XPath.XPathItem" /> matches the specified XML type; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.MatchesXmlType(System.Xml.XPath.XPathItem,System.Xml.Schema.XmlTypeCode)">
<summary>Returns <see langword="true" /> if the type of the <see cref="T:System.Xml.XPath.XPathItem" /> object is a subtype of a type identified by the specified <see cref="T:System.Xml.Schema.XmlTypeCode" />.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<param name="code">An instance of the <see cref="T:System.Xml.Schema.XmlTypeCode" /> class.</param>
<returns>Returns <see langword="true" /> if the type of the <see cref="T:System.Xml.XPath.XPathItem" /> object is a subtype of a type identified by the specified <see cref="T:System.Xml.Schema.XmlTypeCode" />, otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.OnCurrentNodeChanged(System.Xml.XPath.XPathNavigator)">
<summary>Used for debugging in Visual Studio. Called after the current node has changed.</summary>
<param name="currentNode">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object that identifies the node.</param>
<returns>An integer that indicates the status of the change. Used for internal testing only.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ParseTagName(System.String,System.Int32)">
<summary>Parses the specified tag name and resolves the resulting prefix. If the prefix cannot be resolved, an error is thrown. </summary>
<param name="tagName">The tag name.</param>
<param name="indexPrefixMappings">The index. </param>
<returns>An instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ParseTagName(System.String,System.String)">
<summary>Parses the specified tag name. Returns an <see cref="T:System.Xml.XmlQualifiedName" /> that consists of the parsed local name and the specified namespace.</summary>
<param name="tagName">The tag name.</param>
<param name="ns">The namespace.</param>
<returns>An instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.SendMessage(System.String)">
<summary>Reports query execution information to the event handler.</summary>
<param name="message">A value of type <see langword="string" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.SetGlobalValue(System.Int32,System.Object)">
<summary>Returns the value that is bound to the specified global variable or parameter.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<param name="value">A value of type <see langword="object" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.StartRtfConstruction(System.String,System.Xml.Xsl.Runtime.XmlQueryOutput@)">
<summary>Starts constructing an RTF and returns a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> object that will be used to construct this RTF.</summary>
<param name="baseUri">A value of type <see langword="string" />.</param>
<param name="output">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.StartSequenceConstruction(System.Xml.Xsl.Runtime.XmlQueryOutput@)">
<summary>Starts constructing a nested sequence of items. Returns a new <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> that will be used to construct this new sequence.</summary>
<param name="output">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.TextRtfConstruction(System.String,System.String)">
<summary>Constructs a new <see cref="T:System.Xml.XPath.XPathNavigator" /> from the specified text.</summary>
<param name="text">A value of type <see langword="string" />.</param>
<param name="baseUri">A value of type <see langword="string" />.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQueryRuntime.ThrowException(System.String)">
<summary>Throws an XML exception that has the specified message text.</summary>
<param name="text">A value of type <see langword="string" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.#ctor(`0)">
<summary>Constructs a singleton <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> that has <paramref name="value" /> as its only element.</summary>
<param name="value">The only value in this <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.#ctor(`0[],System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class. </summary>
<param name="array">An array of <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> instances.</param>
<param name="size">The size of the array.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.#ctor(System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class. </summary>
<param name="capacity">The size of this collection.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Add(`0)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
<param name="value">An object to add to the collection.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Clear">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Contains(`0)">
<summary>Returns <see langword="true" /> if the specified value is in the sequence.</summary>
<param name="value">The value to find in the <see cref="T:System.Collections.Generic.ICollection`1" />. </param>
<returns>
<see langword="true" /> if the specified value is in the sequence; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.CopyTo(`0[],System.Int32)">
<summary>Copies the contents of this sequence to the specified array, starting at the specified index in the array.</summary>
<param name="array">The array to copy the content of the <see cref="T:System.Collections.Generic.ICollection`1" /> to. </param>
<param name="index">A value of type <see langword="int" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence{`0})">
<summary>Clears and reuses the specified <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> if it is available. If the <paramref name="seq" /> parameter is <see langword="null" />, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" />.</summary>
<param name="seq">An <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> instance to be reused.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence{`0},`0)">
<summary>Clears and reuses the specified <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> it is available. If the <paramref name="seq" /> parameter is <see langword="null" />, creates a new <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> and adds <paramref name="item" /> to the collection.</summary>
<param name="seq">An <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> instance to be reused.</param>
<param name="item">An item to add. </param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.GetEnumerator">
<summary>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.</summary>
<returns>An instance of the <see cref="T:System.Collections.Generic.IEnumerator`1" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.IndexOf(`0)">
<summary>Returns the index of the specified value in the sequence.</summary>
<param name="value">The value for which to get the index.</param>
<returns>The index.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.OnItemsChanged">
<summary>Called when one or more items in the cache have been added or removed. This method can also be called from the <see cref="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.SortByKeys(System.Array)" /> method.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.SortByKeys(System.Array)">
<summary>Sort the items in the cache using the keys contained in the specified array.</summary>
<param name="keys">A value of type <see langword="array" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#ICollection{T}#Add(`0)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="value">The sequence value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#ICollection{T}#Clear">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
<summary>Removes the specified item from the collection</summary>
<param name="value">The item to be removed.</param>
<returns>Returns <see langword="true" /> if the item was removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="index">The sequence index.</param>
<param name="value">The sequence value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="index">The sequence index.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
<summary>Copies the contents of this sequence to the specified array, starting at the specified index in the target array.</summary>
<param name="array">The specified array.</param>
<param name="index">The specified index.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns the <see cref="T:System.Collections.IEnumerator" />.</summary>
<returns>Returns the <see cref="T:System.Collections.IEnumerator" /> of the query sequence collection.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Add(System.Object)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="value">The sequence value.</param>
<returns>The index of the item added.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Clear">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Contains(System.Object)">
<summary>Returns <see langword="true" /> if the specified value is in the sequence.</summary>
<param name="value">The specified value.</param>
<returns>
<see langword="true" /> if the specified value is in the sequence; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#IndexOf(System.Object)">
<summary>Returns the index of the specified value in the sequence.</summary>
<param name="value">The specified value.</param>
<returns>The index of the specified value in the sequence.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="index">The specified index.</param>
<param name="value">The specified value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Remove(System.Object)">
<summary>Not implemented. Throws the <see cref="T:System.NotSupportedException" /> exception. </summary>
<param name="value">The specified value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#RemoveAt(System.Int32)">
<summary>Throws the <see cref="T:System.NotSupportedException" /> exception.</summary>
<param name="index">The specified index.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddDateTimeSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.DateTime)">
<summary>Creates a new <see cref="T:System.DateTime" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A <see langword="DateTime" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddDecimalSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.Decimal)">
<summary>Creates a new <see cref="T:System.Decimal" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A <see langword="decimal" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddDoubleSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.Double)">
<summary>Creates a new <see cref="T:System.Double" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A <see langword="double" /> value.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddEmptySortKey(System.Xml.Xsl.Runtime.XmlCollation)">
<summary>Creates a new empty sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddIntegerSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.Int64)">
<summary>Creates a new <see cref="T:System.Int64" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A value of type <see langword="Int64" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddIntSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.Int32)">
<summary>Creates a new <see cref="T:System.Int32" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A value of type <see langword="Int32" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.AddStringSortKey(System.Xml.Xsl.Runtime.XmlCollation,System.String)">
<summary>Creates a new <see cref="T:System.String" /> sort key and appends it to the current run of sort keys.</summary>
<param name="collation">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlCollation" /> class.</param>
<param name="value">A value of type <see langword="string" />.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.Create">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator" />.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.FinishSortKeys">
<summary>Finishes creating the current run of sort keys and begins a new run.</summary>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathFollowingIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XPathFollowingIterator" />. The <see cref="T:System.Xml.Xsl.Runtime.XPathFollowingIterator" /> does not contain duplicates.</summary>
<param name="input">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<param name="filter">
<see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathFollowingIterator.MoveNext">
<summary>Positions the iterator to the next following node.</summary>
<returns>
<see langword="true" /> if the iterator was set to the next following node; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator.Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator" />.</summary>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Moves the iterator to the next following node. </summary>
<param name="input">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<returns>Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes" /> if there are no more following nodes. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode" /> if the next input node must be fetched first. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode" /> if the <see cref="P:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator.Current" /> property was set to the next node while iterating through the nodes.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator" />.</summary>
<param name="input">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object.</param>
<param name="filter">
<see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> object.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator.MoveNext">
<summary>Positions the iterator on the next preceding node.</summary>
<returns>
<see langword="true" /> if the iterator was set to the next preceding node; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingIterator.Create(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XPathPrecedingIterator" />.</summary>
<param name="context">The node from which you start traversing ancestors.</param>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name. For more information, see <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" />. </param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingIterator.MoveNext">
<summary>Positions the iterator on the next preceding node in reverse document order.</summary>
<returns>
<see langword="true" /> if the iterator was set to the next preceding node; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator.Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter)">
<summary>Initializes the <see cref="T:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator" />.</summary>
<param name="filter">An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter" /> class, which enables you to filter nodes based on the name.</param>
</member>
<member name="M:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator.MoveNext(System.Xml.XPath.XPathNavigator)">
<summary>Positions this iterator to the next preceding node in document order. </summary>
<param name="input">The input node. </param>
<returns>Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes" /> if there are no more preceding nodes. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode" /> if the next input node must be fetched first. Returns <see cref="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode" /> if the <see cref="P:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator.Current" /> property was set to the next node while iterating through the nodes.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.EnsureNodeSet(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Ensures that the specified sequence of objects is not a result tree fragment and that it can be converted to a node set.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToBoolean(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts a specified value to Boolean.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A value of type <see langword="bool" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToBoolean(System.Xml.XPath.XPathItem)">
<summary>Converts the specified value to Boolean.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>A value of type <see langword="bool" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDateTime(System.String)">
<summary>Converts a specified value to a <see langword="DateTime" /> value.</summary>
<param name="value">A <see langword="string" /> value.</param>
<returns>A value of type <see langword="DateTime" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDecimal(System.Double)">
<summary>Converts a specified value to <see langword="decimal" />.</summary>
<param name="value">A value of type <see langword="double" />.</param>
<returns>A value of type <see langword="decimal" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts a specified value to <see langword="double" />.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.Decimal)">
<summary>Converts the specified value to <see langword="double" />.</summary>
<param name="value">A value of type <see langword="decimal" />.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.Int32)">
<summary>Converts the specified value to <see langword="double" />.</summary>
<param name="value">A value of type <see langword="int" />.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.Int64)">
<summary>Converts the specified value to <see langword="double" />.</summary>
<param name="value">A value of type <see langword="Int64" />.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.String)">
<summary>Converts a specified value to <see langword="double" />.</summary>
<param name="value">A value of type <see langword="string" />.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToDouble(System.Xml.XPath.XPathItem)">
<summary>Converts a specified value to <see langword="double" />.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>A value of type <see langword="double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToInt(System.Double)">
<summary>Converts the specified value to <see langword="int" />.</summary>
<param name="value">A value of type <see langword="double" />.</param>
<returns>A value of type <see langword="int" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToLong(System.Double)">
<summary>Converts the specified value to <see langword="long" />.</summary>
<param name="value">A value of type <see langword="double" />.</param>
<returns>A value of type <see langword="long" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToNode(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts a specified value to a node.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToNode(System.Xml.XPath.XPathItem)">
<summary>Converts the specified value to a node.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToNodeSet(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts the items to a sequence of nodes.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A sequence of <see cref="T:System.Xml.XPath.XPathNavigator" /> instances.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToNodeSet(System.Xml.XPath.XPathItem)">
<summary>Converts the specified value to a node.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToString(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Converts the items to a string.</summary>
<param name="listItems">A sequence of <see cref="T:System.Xml.XPath.XPathItem" /> instances.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToString(System.DateTime)">
<summary>Converts the specified value to a string.</summary>
<param name="value">A value of type <see langword="DateTime" />.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToString(System.Double)">
<summary>Converts the specified value to a string.</summary>
<param name="value">A value of type <see langword="double" />.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltConvert.ToString(System.Xml.XPath.XPathItem)">
<summary>Converts the specified value to a string.</summary>
<param name="item">An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</param>
<returns>A value of type <see langword="string" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.BaseUri(System.Xml.XPath.XPathNavigator)">
<summary>Returns the value of the base URI of the node of the node passed in by the <paramref name="navigator" /> parameter. Implements <see langword="baseUri" /> XPath function according to the W3C specification.</summary>
<param name="navigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> instance that contains the node to be identified by URI.</param>
<returns>The base URI as <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Contains(System.String,System.String)">
<summary>Implements <see langword="contains" /> XPath function according to the W3C specification.</summary>
<param name="s1">The string in which to locate <paramref name="s2" />.</param>
<param name="s2">The string to locate in s1. </param>
<returns>
<see langword="true" /> if the first argument string contains the second argument string; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.EXslObjectType(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Implements exsl:object-type.</summary>
<param name="value">The <see cref="T:System.Xml.XPath.XPathItem" /> of which to determine type.</param>
<returns>Object type as <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Lang(System.String,System.Xml.XPath.XPathNavigator)">
<summary>Implements the <see langword="lang" /> function according to the W3C XPath specification.</summary>
<param name="value">The specified string.</param>
<param name="context">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains context.</param>
<returns>
<see cref="T:System.Boolean" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSFormatDateTime(System.String,System.String,System.String,System.Boolean)">
<summary>Implements the <see langword="ms:format-date" /> and <see langword="ms-format-time" />Microsoft XPath extension functions.</summary>
<param name="dateTime">String that contains date/time data.</param>
<param name="format">String that contains format.</param>
<param name="lang">String that contains language.</param>
<param name="isDate">Boolean value that indicates whether date/time contains a date.</param>
<returns>String that contains formatted date and time.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSLocalName(System.String)">
<summary>Implements the <see langword="ms:local-name" />Microsoft XPath extension function. </summary>
<param name="name">The name.</param>
<returns>Name as <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSNamespaceUri(System.String,System.Xml.XPath.XPathNavigator)">
<summary>Implements the <see langword="ms:namespace-uri" />Microsoft XPath extension function. </summary>
<param name="name">The name.</param>
<param name="currentNode">The <see cref="T:System.Xml.XPath.XPathNavigator" /> instance.</param>
<returns>Namespace URI as <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSNumber(System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Implements <see langword="ms:number" />Microsoft XPath extension function.</summary>
<param name="value">
<see cref="T:System.Collections.Generic.List`1" /> of <see cref="T:System.Xml.XPath.XPathItem" />.</param>
<returns>
<see cref="T:System.Double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSStringCompare(System.String,System.String,System.String,System.String)">
<summary>Implements <see langword="ms:string-compare" />Microsoft XPath extension function. </summary>
<param name="s1">The first string to compare.</param>
<param name="s2">The second string to compare.</param>
<param name="lang">The language. Optional</param>
<param name="options">Specifies whether the comparison is case-sensitive.</param>
<returns>If <paramref name="s1" /> < <paramref name="s2" /> the method returns -1. If <paramref name="s1" /> == <paramref name="s2" /> the method returns 0. If <paramref name="s1" /> > <paramref name="s2" /> the method returns 1.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.MSUtc(System.String)">
<summary>Implements the <see langword="ms:utc" />Microsoft XPath extension function.</summary>
<param name="dateTime">String that contains date/time data.</param>
<returns>A string that contains date/time information. If a string cannot be interpreted as a valid XSD date/time-related format, it returns an empty string.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.NormalizeSpace(System.String)">
<summary>Removes leading and trailing spaces from the specified string and returns the result. Implements <see langword="normalize-space" /> function from the W3C XPath standard.</summary>
<param name="value">The specified string.</param>
<returns>A normalized string. </returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.OuterXml(System.Xml.XPath.XPathNavigator)">
<summary>Gets the markup representing the opening and closing tags of the node and all child nodes of the node identified by the <see cref="T:System.Xml.XPath.XPathNavigator" /> argument.</summary>
<param name="navigator">
<see cref="T:System.Xml.XPath.XPathNavigator" /> that identifies the node.</param>
<returns>A string that contains the opening and closing tags of the node and all child nodes of the node that is identified by the <paramref name="navigator" /> parameter.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Round(System.Double)">
<summary>Rounds value by using XPath rounding rules. Rounds towards positive infinity. Values between -0.5 and -0.0 are rounded to -0.0 (negative zero).</summary>
<param name="value">
<see cref="T:System.Double" /> number to round.</param>
<returns>The rounded number as <see cref="T:System.Double" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.StartsWith(System.String,System.String)">
<summary>Implements <see langword="starts-with" /> XPath function according to the W3C specification. </summary>
<param name="s1">A string, the beginning of which is compared to <paramref name="s2" />.</param>
<param name="s2">The string to compare to the beginning of <paramref name="s1" />. </param>
<returns>
<see langword="true" /> if the first argument string starts with the second argument string; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Substring(System.String,System.Double)">
<summary>Implements <see langword="substring" /> XPath function according to the W3C specification.</summary>
<param name="value">The string from which to retrieve the substring.</param>
<param name="startIndex">The starting character position of a substring in <paramref name="s" />.</param>
<returns>The substring of the first argument starting at the position specified in the second argument</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Substring(System.String,System.Double,System.Double)">
<summary>Implements <see langword="substring" /> XPath function according to the W3C specification.</summary>
<param name="value">The string from which to retrieve the substring.</param>
<param name="startIndex">The starting character position of a substring in <paramref name="s" />.</param>
<param name="length">The number of characters in the substring.</param>
<returns>The substring of the first argument, starting at the position specified in the second argument, with the length specified in the third argument.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.SubstringAfter(System.String,System.String)">
<summary>Implements <see langword="substring-after" /> XPath function according to the W3C specification.</summary>
<param name="s1">The string in which to locate s2. </param>
<param name="s2">The string to locate in <paramref name="s1" />.</param>
<returns>The characters in s1 that occur after s2, or the empty string if s1 does not contain s2.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.SubstringBefore(System.String,System.String)">
<summary>Implements <see langword="substring-before" /> XPath function according to the W3C specification.</summary>
<param name="s1">The string in which to locate s2. </param>
<param name="s2">The string to locate in <paramref name="s1" />.</param>
<returns>The characters in s1 that occur before s2, or the empty string if s1 does not contain s2.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.SystemProperty(System.Xml.XmlQualifiedName)">
<summary>Implements <see langword="system-property" /> XSLT function according to the W3C specification.</summary>
<param name="name">The name of the system property.</param>
<returns>The value of the system property specified by the <paramref name="name" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltFunctions.Translate(System.String,System.String,System.String)">
<summary>Implements <see langword="translate" /> XPath function according to the W3C specification.</summary>
<param name="arg">The original string.</param>
<param name="mapString">The substring in <paramref name="arg" /> that should be replaced with <paramref name="transString" />.</param>
<param name="transString">The string to replace <paramref name="mapString" /> with.</param>
<returns>The translated value as <see cref="T:System.String" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.CheckScriptNamespace(System.String)">
<summary>Checks that the extension and script namespaces do not clash.</summary>
<param name="nsUri">The namespace URI.</param>
<returns>An integer used for internal infrastructure only.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.ElementAvailable(System.Xml.XmlQualifiedName)">
<summary>Evaluates the argument to a string that is an XML qualified name. This method implements the element-available function specified by W3C XSL Transformations (XSLT).</summary>
<param name="name">The XML qualified name.</param>
<returns>
<see langword="true" /> if the expanded name is the name of an instruction. If the <see langword="expanded name" /> has a namespace URI equal to the XSLT namespace URI, then it refers to an element defined by XSLT. Otherwise, the expanded-name refers to an extension element. If the <see langword="expanded name" /> has a null namespace URI, the element-available function will return <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.EqualityOperator(System.Double,System.Collections.Generic.IList{System.Xml.XPath.XPathItem},System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Determines equality between collections of type <see cref="T:System.Xml.XPath.XPathItem" />.</summary>
<param name="opCode">
<see cref="T:System.Double" /> that specifies the operation to be performed</param>
<param name="left">
<see cref="T:System.Collections.Generic.IList`1" /> of type <see cref="T:System.Xml.XPath.XPathItem" />.</param>
<param name="right">
<see cref="T:System.Collections.Generic.IList`1" /> of type <see cref="T:System.Xml.XPath.XPathItem" />.</param>
<returns>Returns <see langword="true" /> if the collections are equal, otherwise <see langword="false" />.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.FormatMessage(System.String,System.Collections.Generic.IList{System.String})">
<summary>Formats an exception message composed of a format string supplied by the <paramref name="res" /> parameter and arguments contained by the <paramref name="args" /> parameter.</summary>
<param name="res">A string that contains the message resource.</param>
<param name="args">A list of strings that represent arguments to the method.</param>
<returns>A string that contains the formatted exception message.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.FormatNumberDynamic(System.Double,System.String,System.Xml.XmlQualifiedName,System.String)">
<summary>Implements the format-number() XSLT function. For more information, see the number formatting section in the W3C Recommendation. </summary>
<param name="value">
<see cref="T:System.Double" /> that contains the value to format.</param>
<param name="formatPicture">String that contains the format picture.</param>
<param name="decimalFormatName">
<see cref="T:System.Xml.XmlQualifiedName" /> that contains the format name.</param>
<param name="errorMessageName">String that contains the error message name.</param>
<returns>Returns a string that indicates the number format. For more information, see the number formatting section in the W3C Recommendation.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.FormatNumberStatic(System.Double,System.Double)">
<summary>Implements the format-number() XSLT function. For more information, see the number formatting section in the W3C Recommendation. </summary>
<param name="value">
<see cref="T:System.Double" /> that contains value to format.</param>
<param name="decimalFormatterIndex">
<see cref="T:System.Double" /> that contains the formatter index.</param>
<returns>A string that indicates the format. For more information, see the number formatting section in the W3C Recommendation.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.FunctionAvailable(System.Xml.XmlQualifiedName)">
<summary>Implements the function-available() XSLT function. </summary>
<param name="name">
<see cref="T:System.Xml.XmlQualifiedName" /> name object.</param>
<returns>A Boolean value that is <see langword="true" /> if the function identified by <paramref name="name" /> is available.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.IsSameNodeSort(System.Xml.XPath.XPathNavigator,System.Xml.XPath.XPathNavigator)">
<summary>Determines whether two nodes have the same node type and, if nodes of that node type have expanded-names, the same expanded names.</summary>
<param name="nav1">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object to compare.</param>
<param name="nav2">
<see cref="T:System.Xml.XPath.XPathNavigator" /> object to compare.</param>
<returns>A Boolean value that is <see langword="true" /> if two nodes have the same node type and, if nodes of that node type have expanded names, the same expanded names.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.LangToLcid(System.String,System.Boolean)">
<summary>Converts the language identifier (as specified in the <see langword="xml:lang" /> attribute) to the culture identifier (LCID).</summary>
<param name="lang">String that indicates language.</param>
<param name="forwardCompatibility">Boolean value that is true if language is forward compatible.</param>
<returns>A string that contains the culture identifier.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.NumberFormat(System.Collections.Generic.IList{System.Xml.XPath.XPathItem},System.String,System.Double,System.String,System.String,System.Double)">
<summary>Gets a string that indicates the number format.</summary>
<param name="value">
<see cref="T:System.Collections.Generic.IList`1" /> of strings that represent arguments to the method.</param>
<param name="formatString">
<see cref="T:System.Double" /> that indicates the format string.</param>
<param name="lang">
<see cref="T:System.Double" /> that indicates the language.</param>
<param name="letterValue">String that contains the letter value.</param>
<param name="groupingSeparator">String that contains the grouping separator.</param>
<param name="groupingSize">
<see cref="T:System.Double" /> that contains the grouping size.</param>
<returns>A string that indicates the number format. Used for internal infrastructure only.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.RegisterDecimalFormat(System.Xml.XmlQualifiedName,System.String,System.String,System.String)">
<summary>Registers a decimal-format with the given expanded name. For more information, see the number formatting section in the W3C Recommendation. </summary>
<param name="name">
<see cref="T:System.Xml.XmlQualifiedName" /> object that contains name.</param>
<param name="infinitySymbol">String containing infinity symbol.</param>
<param name="nanSymbol">String containing NaN symbol.</param>
<param name="characters">String containing characters to format.</param>
<returns>In the current implementation the return value is always 0.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.RegisterDecimalFormatter(System.String,System.String,System.String,System.String)">
<summary>Registers a decimal formatter object and returns a unique index assigned to it. The decimal formatter object is used by the format-number() XSLT function. For more information, see the number formatting section in the W3C Recommendation.</summary>
<param name="formatPicture">String that contains the format picture.</param>
<param name="infinitySymbol">String that contains the infinity symbol.</param>
<param name="nanSymbol">String that contains the NaN symbol.</param>
<param name="characters">String that contains characters to format.</param>
<returns>Returns a unique index of type <see cref="T:System.Double" /> assigned to a decimal formatter object.</returns>
</member>
<member name="M:System.Xml.Xsl.Runtime.XsltLibrary.RelationalOperator(System.Double,System.Collections.Generic.IList{System.Xml.XPath.XPathItem},System.Collections.Generic.IList{System.Xml.XPath.XPathItem})">
<summary>Evaluates whether the <paramref name="left" /> expression is greater than or equal to, or less than or equal to, the <paramref name="right" /> expression based on the <paramref name="opCode" /> passed.</summary>
<param name="opCode">Specifies how to perform the evaluation of two expressions:If opCode is equal to 2, evaluates the XPath expression "left < right".If opCode is equal to 3, evaluates the XPath expression "left <= right".If opCode is equal to 4, evaluates the XPath expression "left > right".If opCode is equal to 5, evaluates the XPath expression "left >= right"</param>
<param name="left">Expression to evaluate.</param>
<param name="right">Expression to evaluate.</param>
<returns>A Boolean value that is true if the left expression is greater than or equal to the right expression.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.AncestorDocOrderIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.AncestorIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.AttributeContentIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.AttributeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.ContentIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.ContentMergeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DecimalAggregator.AverageResult">
<summary>Gets an average of the sequence of <see langword="Decimal" /> values.</summary>
<returns>The average of the sequence of <see langword="Decimal" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DecimalAggregator.IsEmpty">
<summary>Gets a value indicating whether the <see cref="T:System.Xml.Xsl.Runtime.DecimalAggregator" /> contains a result.</summary>
<returns>
<see langword="true" /> if the <see cref="T:System.Xml.Xsl.Runtime.DecimalAggregator" /> contains a result; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DecimalAggregator.MaximumResult">
<summary>Gets the largest value among the sequence of <see langword="Decimal" /> values.</summary>
<returns>The largest value among the sequence of <see langword="Decimal" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DecimalAggregator.MinimumResult">
<summary>Gets the smallest value among the sequence of <see langword="Decimal" /> values.</summary>
<returns>The smallest value among the sequence of <see langword="Decimal" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DecimalAggregator.SumResult">
<summary>Gets the sum of the sequence of <see langword="Decimal" /> values.</summary>
<returns>The sum of the sequence of <see langword="Decimal" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DescendantIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DescendantMergeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DifferenceIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DoubleAggregator.AverageResult">
<summary>Computes the average value over a sequence of <see langword="double" /> values.</summary>
<returns>The average result.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DoubleAggregator.IsEmpty">
<summary>Determines whether a sequence of <see langword="double" /> values is empty.</summary>
<returns>
<see langword="true" /> if the result is empty; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DoubleAggregator.MaximumResult">
<summary>Returns the maximum value of a sequence of <see langword="double" /> values.</summary>
<returns>The maximum result.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DoubleAggregator.MinimumResult">
<summary>Returns the minimum value of a sequence of <see langword="double" /> values.</summary>
<returns>The minimum result.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.DoubleAggregator.SumResult">
<summary>Returns the sum of a sequence of <see langword="double" /> values.</summary>
<returns>The sum of all results.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.ElementContentIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.FollowingSiblingIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.IdIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int32Aggregator.AverageResult">
<summary>Returns the average result of a sequence of Int32 values.</summary>
<returns>An <see langword="Int32" /> value that contains the average result of a sequence of <see langword="Int32" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int32Aggregator.IsEmpty">
<summary>Returns a Boolean value that indicates if the sequence is empty.</summary>
<returns>
<see langword="true" /> if the sequence is empty, otherwise returns <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int32Aggregator.MaximumResult">
<summary>Returns the largest value in a sequence of <see langword="Int32" /> values.</summary>
<returns>An <see langword="Int32" /> value that contains the maximum value in a sequence of <see langword="Int32" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int32Aggregator.MinimumResult">
<summary>Returns the smallest value in a sequence of Int32 values.</summary>
<returns>An <see langword="Int32" /> value that contains the minimum value in a sequence of <see langword="Int32" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int32Aggregator.SumResult">
<summary>Returns the sum of a sequence of Int32 values.</summary>
<returns>An <see langword="Int32" /> value that contains the sum of a sequence of <see langword="Int32" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int64Aggregator.AverageResult">
<summary>Returns an <see langword="Int64" /> value that contains the average of a sequence of <see langword="Int64" /> values.</summary>
<returns>An <see langword="Int64" /> value that contains the average of a sequence of <see langword="Int64" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int64Aggregator.IsEmpty">
<summary>Returns a Boolean value that indicates whether the sequence of <see langword="Int64" /> values is empty.</summary>
<returns>
<see langword="true" /> if the sequence of <see langword="Int64" /> values is empty; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int64Aggregator.MaximumResult">
<summary>Gets the largest <see langword="Int64" /> value.</summary>
<returns>The largest <see langword="Int64" /> value.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int64Aggregator.MinimumResult">
<summary>Gest the smallest <see langword="Int64" /> value.</summary>
<returns>The smallest <see langword="Int64" /> value.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.Int64Aggregator.SumResult">
<summary>Returns an <see langword="Int64" /> value that contains the sum of a sequence of <see langword="Int64" /> values.</summary>
<returns>An <see langword="Int64" /> value that contains the sum of a sequence of <see langword="Int64" /> values.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.IntersectIterator.Current">
<summary>Gets or sets the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.NamespaceIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.NodeKindContentIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.NodeRangeIterator.Current">
<summary>Returns the current result navigator.</summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.ParentIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.PrecedingIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.PrecedingSiblingIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.StringConcat.Delimiter">
<summary>Gets or sets the string that delimits concatenated strings.</summary>
<returns>Returns the <see cref="T:System.String" /> delimiter.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.UnionIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryContext.DefaultDataSource">
<summary>Returns the document that is queried by default if no data source is explicitly selected in the query.</summary>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryContext.DefaultNameTable">
<summary>Returns the name table used by the default data source, or null if there is no default data source.</summary>
<returns>An instance of the <see cref="T:System.Xml.XmlNameTable" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryContext.QueryNameTable">
<summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> instance.</summary>
<returns>Returns an instance of the <see cref="T:System.Xml.XmlNameTable" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.IsDocOrderDistinct">
<summary>If this property is true, the nodes in this cache are in document order with no duplicates.</summary>
<returns>
<see langword="true" /> if the nodes are distinct, otherwise return <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#ICollection{System#Xml#XPath#XPathItem}#IsReadOnly">
<summary>Specifies that items cannot be added, removed, or modified through the <see cref="T:System.Collections.Generic.ICollection`1" /> interface.</summary>
<returns>
<see langword="true" /> if the collection is read only; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryNodeSequence.System#Collections#Generic#IList{System#Xml#XPath#XPathItem}#Item(System.Int32)">
<summary>Returns the item at the specified index.</summary>
<param name="index">A value of type <see langword="Int32" />.</param>
<returns>An instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryOutput.WriteState">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<returns>A <see cref="T:System.Xml.WriteState" /> object.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryOutput.XmlLang">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<returns>A string that contains the language identifier.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryOutput.XmlSpace">
<summary>Throws <see cref="T:System.NotSupportedException" />.</summary>
<returns>The <see cref="T:System.Xml.XmlSpace" /> object.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryRuntime.ExternalContext">
<summary>Returns the object that manages external user context information, such as data sources, parameters, extension objects, and so on.</summary>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryContext" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryRuntime.NameTable">
<summary>Returns the name table used to atomize all names used by the query.</summary>
<returns>An instance of the <see cref="T:System.Xml.XmlNameTable" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryRuntime.Output">
<summary>Gets the output writer object.</summary>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQueryOutput" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQueryRuntime.XsltFunctions">
<summary>Returns the object that manages the state. The state object is required to implement various XSLT functions.</summary>
<returns>An instance of the <see cref="T:System.Xml.Xsl.Runtime.XsltLibrary" /> class.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Count">
<summary>Returns the number of items in the sequence.</summary>
<returns>A value of type <see langword="int" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.Item(System.Int32)">
<summary>Returns the item at the specified index.</summary>
<param name="index">A value of type <see langword="int" />.</param>
<returns>The item at the specified index. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
<summary>If the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> is read-only, this property returns <see langword="true" />.</summary>
<returns>Returns <see langword="true" /> if the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> is read-only; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#ICollection#IsSynchronized">
<summary>Returns <see langword="false" />. The <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> is not thread-safe.</summary>
<returns>
<see langword="false" />
</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#ICollection#SyncRoot">
<summary>Returns this instance of the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> class. This instance can be used to synchronize access.</summary>
<returns>This instance of <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#IsFixedSize">
<summary>Returns true. The items cannot be added, removed, or modified.</summary>
<returns>Returns <see langword="true" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#IsReadOnly">
<summary>If the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> is read-only, this property returns <see langword="true" />.</summary>
<returns>Returns <see langword="true" /> if the <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" /> is read-only; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlQuerySequence`1.System#Collections#IList#Item(System.Int32)">
<summary>Returns the item at the specified index.</summary>
<param name="index">The specified index.</param>
<returns>An item at the specified index.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator.Keys">
<summary>Gets an array of sort keys that was constructed by the internal <see cref="T:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator" /> class.</summary>
<returns>An array of sort keys.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XPathFollowingIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XPathPrecedingIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator.</returns>
</member>
<member name="P:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator.Current">
<summary>Returns the current result navigator. </summary>
<returns>The current result navigator. </returns>
</member>
<member name="T:System.Xml.Xsl.Runtime.AncestorDocOrderIterator">
<summary>Iterates over all ancestor nodes according to the <see cref="N:System.Xml.XPath" /> ancestor axis rules, and returns the nodes in document order without duplicates.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.AncestorIterator">
<summary>Iterates over all ancestor nodes according to the <see cref="N:System.Xml.XPath" /> ancestor axis rules, and returns the nodes in reverse document order.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.AttributeContentIterator">
<summary>Iterates over all attributes and child content nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.AttributeIterator">
<summary>Iterates over all the attributes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.ContentIterator">
<summary>Iterates over all child content nodes of the current node.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.ContentMergeIterator">
<summary>Iterates over child content nodes or following sibling nodes. Maintains the nodes in document order. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DecimalAggregator">
<summary>Computes aggregates over a sequence of <see langword="Decimal" /> values.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DescendantIterator">
<summary>Iterates over all descendant nodes according to the <see cref="N:System.Xml.XPath" /> descendant axis rules.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DescendantMergeIterator">
<summary>Iterate over all descendant content nodes according to XPath descendant axis rules. Eliminates duplicates by not querying over nodes that are contained in the subtree of the previous node.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DifferenceIterator">
<summary>Represents the position of the iterator to the next node in the difference between two sets of nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DodSequenceMerge">
<summary>Merges several doc-order-distinct sequences into a single doc-order-distinct sequence.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.DoubleAggregator">
<summary>Computes aggregates over a sequence of <see langword="double" /> values.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.ElementContentIterator">
<summary>Iterates over all child elements with a matching name.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.FollowingSiblingIterator">
<summary>Iterates over all following sibling content nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.FollowingSiblingMergeIterator">
<summary>Iterates over child nodes byfollowing the sibling nodes. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.IdIterator">
<summary>Tokenizes a string that contains IDREF values and dereferences the values in order to get a list of ID elements.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.Int32Aggregator">
<summary>Computes aggregates over a sequence of Int32 values.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.Int64Aggregator">
<summary>Computes aggregates over a sequence of <see langword="Int64" /> values.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.IntersectIterator">
<summary>Represents the position of the iterator to the next node in the intersection of two sets of nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.IteratorResult">
<summary>Iterators that use containment to control a nested iterator return one of the values in this enumeration.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.IteratorResult.NoMoreNodes">
<summary>Iteration is complete; there are no more nodes</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.IteratorResult.NeedInputNode">
<summary>The next node must be fetched from the contained iterator before iteration can continue.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.IteratorResult.HaveCurrentNode">
<summary>Iteration is complete; there are no more nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.NamespaceIterator">
<summary>Iterate over all namespace nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.NodeKindContentIterator">
<summary>Iterates over all child content nodes with a matching node kind.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.NodeRangeIterator">
<summary>Iterates over the singleton node if the starting node is the same node as the ending node. Iterates to the end of the document if the starting node is after the ending node or is in a different document.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.ParentIterator">
<summary>Iterates over the matching parent node according to the <see cref="N:System.Xml.XPath" />, parent axis rules.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.PrecedingIterator">
<summary>Iterates over all the content-typed nodes which precede the starting node in document order. Returns nodes in reverse document order.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator">
<summary>Iterates over all preceding sibling content nodes in document order.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.PrecedingSiblingIterator">
<summary>Iterates over all preceding sibling nodes according to the <see cref="N:System.Xml.XPath" /> preceding sibling axis rules and returns nodes in reverse document order.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.SetIteratorResult">
<summary>Sets iterators for combinations of elements by <see langword="Union" />, <see langword="Intersection" />, or <see langword="Difference" />, which use containment to control two nested iterators. This will return one of the enumeration values from <see cref="M:System.Xml.Xsl.Runtime.IdIterator.MoveNext" />.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.SetIteratorResult.NoMoreNodes">
<summary>Iteration is complete; there are no more nodes.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.SetIteratorResult.InitRightIterator">
<summary>Initialize right-nested iterator.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.SetIteratorResult.NeedLeftNode">
<summary>The next node needs to be fetched from the left-nested iterator.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.SetIteratorResult.NeedRightNode">
<summary>The next node needs to be fetched from the right-nested iterator.</summary>
</member>
<member name="F:System.Xml.Xsl.Runtime.SetIteratorResult.HaveCurrentNode">
<summary>This iterator's <see cref="P:System.Xml.XPath.XPathNodeIterator.Current" /> property is set to the next node in the iteration.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.StringConcat">
<summary>Concatenates strings when the number of strings is not known beforehand.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.UnionIterator">
<summary>Manages two sets of nodes that are already in document order with no duplicates, and returns the union of these sets in document order with no duplicates.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlCollation">
<summary>Constructs a collation that uses the specified culture and compare options.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlILIndex">
<summary>Manages nodes from an input document, indexed by key value(s). This class is used as a cache of nodes indexed by xsl:key instructions and allows fast access to these nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlILStorageConverter">
<summary>Represents an internal class that provides static helper methods that get a value converter from <see cref="T:System.Xml.Xsl.Runtime.XmlQueryRuntime" /> to convert among several physical common language runtime (CLR) representations for the same logical XML type.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlNavigatorFilter">
<summary>
<see langword="XmlNavigatorFilter" /> provides a flexible filtering abstraction over <see cref="T:System.Xml.XPath.XPathNavigator" />. Callers do not know what type of filtering will occur; they simply call <see cref="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToContent(System.Xml.XPath.XPathNavigator)" /> or <see cref="M:System.Xml.Xsl.Runtime.XmlNavigatorFilter.MoveToFollowingSibling(System.Xml.XPath.XPathNavigator)" />. The filter implementation invokes the appropriate operation on the <see cref="T:System.Xml.XPath.XPathNavigator" /> in order to skip over filtered nodes.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQueryContext">
<summary>The context of a query consists of all user-provided information that influences the operation of the query.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQueryItemSequence">
<summary>A sequence of XML items that dynamically expands and allows random access to items.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQueryNodeSequence">
<summary>A sequence of XML nodes that dynamically expands and allows random access to items.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQueryOutput">
<summary>Represents an <see cref="T:System.Xml.XmlWriter" /> that provides additional functionality that is required for outputting the results of XSLT transformations. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQueryRuntime">
<summary>Provides methods and properties to support the XSLT processor.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1">
<summary>A sequence of XML values that dynamically expands and allows random access to items.</summary>
<typeparam name="T">The type of this <see cref="T:System.Xml.Xsl.Runtime.XmlQuerySequence`1" />.</typeparam>
</member>
<member name="T:System.Xml.Xsl.Runtime.XmlSortKeyAccumulator">
<summary>Accumulates a list of sort keys and stores them in an array.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XPathFollowingIterator">
<summary>Iterates over all following nodes according to the XPath following-axis rules. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XPathFollowingMergeIterator">
<summary>Iterates over all following nodes according to the XPath following axis rules. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator">
<summary>Iterates over all preceding nodes according to the XPath preceding axis rules, and returns nodes in document order without duplicates.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XPathPrecedingIterator">
<summary>Iterates over all preceding nodes according to the XPath preceding axis rules, and returns nodes in reverse document order without duplicates. </summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XPathPrecedingMergeIterator">
<summary>Iterates over all preceding nodes according to the XPath preceding axis rules, except that nodes are always returned in document order. Merges multiple sets of preceding nodes in document order and removes duplicates.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XsltConvert">
<summary>Contains conversion routines used by XSLT.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XsltFunctions">
<summary>XSLT and XPath functions.</summary>
</member>
<member name="T:System.Xml.Xsl.Runtime.XsltLibrary">
<summary>Implements different <see langword="XPath" /> and <see langword="XSLT" /> functions.</summary>
</member>
</members>
</doc>
|